Skip to content

Commit b0fb656

Browse files
matttbekuba-moo
authored andcommitted
tree_match: handle bpf-next/net
For a few months now [1], BPF patches that are "Networking related" should have the "bpf-next/net" prefix. With the previous order, the PW poller was considering this prefix as "for net", leading to these results on Patchwork [2]: Context | Check | Description ----------------------|---------|------------------------------ netdev/tree_selection | success | Clearly marked for net netdev/apply | fail | Patch does not apply to net-0 By changing the order of the list, such patches with "[bpf-next/net]" will be marked for "bpf-next", and they will not be applied locally like it was the case before with "bpf-next" patches. Link: https://lore.kernel.org/netdev/CAADnVQJgwGh+Jf=DUFuX28R2bpWVezigQYObNoKJT8UbqekOHA@mail.gmail.com/ [1] Link: https://patchwork.kernel.org/project/netdevbpf/patch/c02fda3177b34f9e74a044833fda9761627f4d07.1730338692.git.tanggeliang@kylinos.cn/ [2] Signed-off-by: Matthieu Baerts (NGI0) <[email protected]>
1 parent c5eb5d6 commit b0fb656

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

netdev/tree_match.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
def series_tree_name_direct(series):
13-
for t in ['net-next', 'net', 'bpf-next', 'bpf']:
13+
for t in ['net-next', 'bpf-next', 'net', 'bpf']:
1414
if re.match(r'\[.*{pfx}.*\]'.format(pfx=t), series.subject):
1515
return t
1616

0 commit comments

Comments
 (0)