diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2025-07-22 16:52:31 +0200 |
|---|---|---|
| committer | Aleksandr Nogikh <nogikh@google.com> | 2025-07-22 15:07:12 +0000 |
| commit | 85deaf45cc57320362fabb5ef83eb8cf413f4274 (patch) | |
| tree | f56d64698752910aa02f93306adf7871359b6bb4 /syz-cluster/pkg/api/api.go | |
| parent | 86300e20d85a546edcd2dd7b3742a4f5004572db (diff) | |
syz-cluster: prefer net-next and nf-next
Current results show that way too many series do not apply to the
non-next versions of their corresponding trees. So let's make -next the
default choice unless it the opposite was specified in the series
subject.
Diffstat (limited to 'syz-cluster/pkg/api/api.go')
| -rw-r--r-- | syz-cluster/pkg/api/api.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/syz-cluster/pkg/api/api.go b/syz-cluster/pkg/api/api.go index 2851faa2a..f52951dcc 100644 --- a/syz-cluster/pkg/api/api.go +++ b/syz-cluster/pkg/api/api.go @@ -172,7 +172,7 @@ var DefaultTrees = []*Tree{ Name: `net`, URL: `https://kernel.googlesource.com/pub/scm/linux/kernel/git/netdev/net.git`, Branch: `main`, - Priority: 1, + Priority: TreePriorityNever, EmailLists: []string{`netdev@vger.kernel.org`}, KernelConfig: `upstream-apparmor-kasan.config`, FuzzConfig: `net`, @@ -181,7 +181,7 @@ var DefaultTrees = []*Tree{ Name: `net-next`, URL: `https://kernel.googlesource.com/pub/scm/linux/kernel/git/netdev/net.git`, Branch: `main`, - Priority: TreePriorityNever, + Priority: 1, EmailLists: []string{`netdev@vger.kernel.org`}, KernelConfig: `upstream-apparmor-kasan.config`, FuzzConfig: `net`, @@ -190,7 +190,7 @@ var DefaultTrees = []*Tree{ Name: `nf`, URL: `https://kernel.googlesource.com/pub/scm/linux/kernel/git/netfilter/nf.git`, Branch: `main`, - Priority: 2, + Priority: TreePriorityNever, EmailLists: []string{`netfilter-devel@vger.kernel.org`}, KernelConfig: `upstream-apparmor-kasan.config`, FuzzConfig: `net`, @@ -199,7 +199,7 @@ var DefaultTrees = []*Tree{ Name: `nf-next`, URL: `https://kernel.googlesource.com/pub/scm/linux/kernel/git/netfilter/nf-next.git`, Branch: `main`, - Priority: TreePriorityNever, + Priority: 2, EmailLists: []string{`netfilter-devel@vger.kernel.org`}, KernelConfig: `upstream-apparmor-kasan.config`, FuzzConfig: `net`, |
