diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2023-04-25 12:12:01 +0200 |
|---|---|---|
| committer | Aleksandr Nogikh <wp32pw@gmail.com> | 2023-04-27 11:42:09 +0200 |
| commit | 6dd2fc4a0eac29f09e6045477e5417b49401f9fa (patch) | |
| tree | 6d32a65a1592a9678c6b926fb2ec38824e321096 | |
| parent | 6629581912466a5fbaa4c0f9d74040aed2f786f8 (diff) | |
docs: describe bug labels
| -rw-r--r-- | docs/syzbot.md | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/docs/syzbot.md b/docs/syzbot.md index c0c30077b..f4e554376 100644 --- a/docs/syzbot.md +++ b/docs/syzbot.md @@ -149,6 +149,68 @@ You can also manually override the automatic guess by replying to the `syzbot` e Names of subsystems must be taken from the subsystem list page on the syzbot web dashboard. +<div id="labels"/> + +## Bug labels + +It is possible to assign labels to syzkaller-reported bugs. These labels +are displayed near bug titles on the bug lists and on individual bug pages. + +To assign a label, send a `#syz set` command as a reply to the bug report. + +``` +#syz set label: value +``` + +As of now, the following labels are supported. + +**A)** Bug priority + +``` +#syz set prio: low +#syz set prio: normal +#syz set prio: high + +``` + +**B)** Exclude the bug from monthly reports. + +``` +#syz set no-reminders +``` + +**C)** Set a subsystem (see also the section above). + +``` +#syz set subsystems: net +``` + +To **remove** a label, send a `#syz unset` command: + +``` +#syz unset prio +``` + +It is also possible to set and unset labels for individual bugs from a monthly +subsystem report. Let's consider an example. + +``` +Some of the still happening issues: + +Ref Crashes Repro Title +<1> 10 No WARNING in __brelse (2) + https://syzkaller.appspot.com/bug?id=cd9cb7a620dcfbf46a5eaf201031acaf3aeda28e +<2> 3 No WARNING in kernfs_get (4) + https://syzkaller.appspot.com/bug?id=b4278401038872458a20f08210e46f3ab519b786 +``` + +One can send the following email: + +``` +#syz set <1> no-reminders +#syz set <2> subsystems: kernfs +``` + <div id="amend"/> <div id="linux-next"/> |
