* [PATCH bpf-next v3] bpf: syscall_nrs: disable no previous prototype warnning
@ 2024-10-01 23:32 Jason Xing
2024-10-08 0:59 ` Jason Xing
2024-10-08 3:30 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 3+ messages in thread
From: Jason Xing @ 2024-10-01 23:32 UTC (permalink / raw)
To: ast, daniel, andrii, martin.lau, eddyz87, song, yonghong.song,
john.fastabend, kpsingh, sdf, haoluo, jolsa
Cc: bpf, andrii.nakryiko, Jason Xing
From: Jason Xing <kernelxing@tencent.com>
In some environments (gcc treated as error in W=1, which is default), if we
make -C samples/bpf/, it will be stopped because of
"no previous prototype" error like this:
../samples/bpf/syscall_nrs.c:7:6:
error: no previous prototype for ‘syscall_defines’ [-Werror=missing-prototypes]
void syscall_defines(void)
^~~~~~~~~~~~~~~
Actually, this file meets our expectatations because it will be converted to
a .h file. In this way, it's correct. Considering the warnning stopping us
compiling, we can remove the warnning directly.
Signed-off-by: Jason Xing <kernelxing@tencent.com>
---
v3
Link: https://lore.kernel.org/all/20241001012540.39007-1-kerneljasonxing@gmail.com/
1. remove clang check (Andrii)
2. add matching pop at the bottom of that file (Andrii)
v2
Link: https://lore.kernel.org/all/CAEf4BzaVdr_0kQo=+jPLN++PvcU6pwTjaPVEA880kgDN94TZYw@mail.gmail.com/
1. use #pragma GCC diagnostic ignored to disable warnning (Andrii Nakryiko)
---
samples/bpf/syscall_nrs.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/samples/bpf/syscall_nrs.c b/samples/bpf/syscall_nrs.c
index 88f940052450..a6e600f3d477 100644
--- a/samples/bpf/syscall_nrs.c
+++ b/samples/bpf/syscall_nrs.c
@@ -2,6 +2,9 @@
#include <uapi/linux/unistd.h>
#include <linux/kbuild.h>
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wmissing-prototypes"
+
#define SYSNR(_NR) DEFINE(SYS ## _NR, _NR)
void syscall_defines(void)
@@ -17,3 +20,5 @@ void syscall_defines(void)
#endif
}
+
+#pragma GCC diagnostic pop
--
2.37.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH bpf-next v3] bpf: syscall_nrs: disable no previous prototype warnning
2024-10-01 23:32 [PATCH bpf-next v3] bpf: syscall_nrs: disable no previous prototype warnning Jason Xing
@ 2024-10-08 0:59 ` Jason Xing
2024-10-08 3:30 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: Jason Xing @ 2024-10-08 0:59 UTC (permalink / raw)
To: ast, daniel, andrii, martin.lau, eddyz87, song, yonghong.song,
john.fastabend, kpsingh, sdf, haoluo, jolsa
Cc: bpf, andrii.nakryiko, Jason Xing
On Wed, Oct 2, 2024 at 7:32 AM Jason Xing <kerneljasonxing@gmail.com> wrote:
>
> From: Jason Xing <kernelxing@tencent.com>
>
> In some environments (gcc treated as error in W=1, which is default), if we
> make -C samples/bpf/, it will be stopped because of
> "no previous prototype" error like this:
>
> ../samples/bpf/syscall_nrs.c:7:6:
> error: no previous prototype for ‘syscall_defines’ [-Werror=missing-prototypes]
> void syscall_defines(void)
> ^~~~~~~~~~~~~~~
>
> Actually, this file meets our expectatations because it will be converted to
> a .h file. In this way, it's correct. Considering the warnning stopping us
> compiling, we can remove the warnning directly.
>
> Signed-off-by: Jason Xing <kernelxing@tencent.com>
Hello Andrii,
Could you help me review this version?
Thanks,
Jason
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH bpf-next v3] bpf: syscall_nrs: disable no previous prototype warnning
2024-10-01 23:32 [PATCH bpf-next v3] bpf: syscall_nrs: disable no previous prototype warnning Jason Xing
2024-10-08 0:59 ` Jason Xing
@ 2024-10-08 3:30 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-10-08 3:30 UTC (permalink / raw)
To: Jason Xing
Cc: ast, daniel, andrii, martin.lau, eddyz87, song, yonghong.song,
john.fastabend, kpsingh, sdf, haoluo, jolsa, bpf, andrii.nakryiko,
kernelxing
Hello:
This patch was applied to bpf/bpf-next.git (master)
by Andrii Nakryiko <andrii@kernel.org>:
On Wed, 2 Oct 2024 07:32:42 +0800 you wrote:
> From: Jason Xing <kernelxing@tencent.com>
>
> In some environments (gcc treated as error in W=1, which is default), if we
> make -C samples/bpf/, it will be stopped because of
> "no previous prototype" error like this:
>
> ../samples/bpf/syscall_nrs.c:7:6:
> error: no previous prototype for ‘syscall_defines’ [-Werror=missing-prototypes]
> void syscall_defines(void)
> ^~~~~~~~~~~~~~~
>
> [...]
Here is the summary with links:
- [bpf-next,v3] bpf: syscall_nrs: disable no previous prototype warnning
https://git.kernel.org/bpf/bpf-next/c/c50fc1cbfd71
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-10-08 3:30 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-01 23:32 [PATCH bpf-next v3] bpf: syscall_nrs: disable no previous prototype warnning Jason Xing
2024-10-08 0:59 ` Jason Xing
2024-10-08 3:30 ` patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox