> Add three kfuncs for BPF linked list queries: > - bpf_list_node_is_edge(head, node, is_first): true if node is the first > (when is_first is true) or the last (when is_first is false) in the list. > - bpf_list_empty(head): true if the list has no entries.
The commit message says "three kfuncs" but the description lists two and the patch adds two (bpf_list_node_is_edge and bpf_list_empty). It looks like this is a leftover from v5 where there were three separate functions (bpf_list_is_first, bpf_list_is_last, bpf_list_empty) before they were consolidated into two. Should this say "two kfuncs"? --- AI reviewed your patch. Please fix the bug or email reply why it's not a bug. See: https://github.com/kernel-patches/vmtest/blob/master/ci/claude/README.md CI run summary: https://github.com/kernel-patches/bpf/actions/runs/22674350640

