Re: [PATCH net-next] selftests/bpf: eliminate warning of get_cgroup_id_from_path()

2024-04-08 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to bpf/bpf-next.git (master) by Martin KaFai Lau : On Sat, 6 Apr 2024 22:46:13 +0800 you wrote: > From: Jason Xing > > The output goes like this if I make samples/bpf: > ...warning: no previous prototype for ‘get_cgroup_id_from_path’... > > Make this function sta

Re: [PATCH net-next] selftests/bpf: eliminate warning of get_cgroup_id_from_path()

2024-04-08 Thread Yonghong Song
On 4/6/24 7:46 AM, Jason Xing wrote: From: Jason Xing The output goes like this if I make samples/bpf: ...warning: no previous prototype for ‘get_cgroup_id_from_path’... The CI does not build samples/bpf... Make this function static could solve the warning problem since no one outside of

[PATCH net-next] selftests/bpf: eliminate warning of get_cgroup_id_from_path()

2024-04-06 Thread Jason Xing
From: Jason Xing The output goes like this if I make samples/bpf: ...warning: no previous prototype for ‘get_cgroup_id_from_path’... Make this function static could solve the warning problem since no one outside of the file calls it. Signed-off-by: Jason Xing --- tools/testing/selftests/bpf/c