On Thu, 2025-11-06 at 05:14 +0900, Hoyeon Lee wrote:
The netif_receive_skb BPF program used in snprintf_btf test still uses a custom __strncmp. This is unnecessary as the bpf_strncmp helper is available and provides the same functionality.
This commit refactors the test to use the bpf_strncmp helper, removing the redundant custom implementation.
Signed-off-by: Hoyeon Lee hoyeon.lee@suse.com
Acked-by: Eduard Zingerman eddyz87@gmail.com
[...]