[PATCH] bpf: fix implicit declaration of bpf_prog_add

Subsystems: bpf [core], bpf [general] (safe dynamic programs and tools), the rest

STALE3669d

3 messages, 3 authors, 2016-07-20 · open the first message on its own page

[PATCH] bpf: fix implicit declaration of bpf_prog_add

From: Brenden Blanco <hidden>
Date: 2016-07-20 14:56:28

For the ifndef case of CONFIG_BPF_SYSCALL, an inline version of
bpf_prog_add needs to exist otherwise the build breaks on some configs.

 drivers/net/ethernet/mellanox/mlx4/en_netdev.c:2544:10: error: implicit declaration of function 'bpf_prog_add'
       prog = bpf_prog_add(prog, priv->rx_ring_num - 1);

The function is introduced in
59d3656d5bf50 ("bpf: add bpf_prog_add api for bulk prog refcnt")
and first used in
47f1afdba2b87 ("net/mlx4_en: add support for fast rx drop bpf program").

Fixes: 47f1afdba2b87 ("net/mlx4_en: add support for fast rx drop bpf program")
Reported-by: kbuild test robot <redacted>
Reported-by: Tariq Toukan <redacted>
Signed-off-by: Brenden Blanco <redacted>
---
 include/linux/bpf.h | 4 ++++
 1 file changed, 4 insertions(+)
diff --git a/include/linux/bpf.h b/include/linux/bpf.h
index 75a5ae6..36da074 100644
--- a/include/linux/bpf.h
+++ b/include/linux/bpf.h
@@ -289,6 +289,10 @@ static inline struct bpf_prog *bpf_prog_get_type(u32 ufd,
 {
 	return ERR_PTR(-EOPNOTSUPP);
 }
+static inline struct bpf_prog *bpf_prog_add(struct bpf_prog *prog, int i)
+{
+	return ERR_PTR(-EOPNOTSUPP);
+}
 
 static inline void bpf_prog_put(struct bpf_prog *prog)
 {
-- 
2.8.2

Re: [PATCH] bpf: fix implicit declaration of bpf_prog_add

From: Alexei Starovoitov <hidden>
Date: 2016-07-20 16:06:27

On Wed, Jul 20, 2016 at 07:55:52AM -0700, Brenden Blanco wrote:
For the ifndef case of CONFIG_BPF_SYSCALL, an inline version of
bpf_prog_add needs to exist otherwise the build breaks on some configs.

 drivers/net/ethernet/mellanox/mlx4/en_netdev.c:2544:10: error: implicit declaration of function 'bpf_prog_add'
       prog = bpf_prog_add(prog, priv->rx_ring_num - 1);

The function is introduced in
59d3656d5bf50 ("bpf: add bpf_prog_add api for bulk prog refcnt")
and first used in
47f1afdba2b87 ("net/mlx4_en: add support for fast rx drop bpf program").

Fixes: 47f1afdba2b87 ("net/mlx4_en: add support for fast rx drop bpf program")
Reported-by: kbuild test robot <redacted>
Reported-by: Tariq Toukan <redacted>
Signed-off-by: Brenden Blanco <redacted>
Acked-by: Alexei Starovoitov <ast@kernel.org>

Re: [PATCH] bpf: fix implicit declaration of bpf_prog_add

From: David Miller <davem@davemloft.net>
Date: 2016-07-20 18:59:35

From: Brenden Blanco <redacted>
Date: Wed, 20 Jul 2016 07:55:52 -0700
For the ifndef case of CONFIG_BPF_SYSCALL, an inline version of
bpf_prog_add needs to exist otherwise the build breaks on some configs.

 drivers/net/ethernet/mellanox/mlx4/en_netdev.c:2544:10: error: implicit declaration of function 'bpf_prog_add'
       prog = bpf_prog_add(prog, priv->rx_ring_num - 1);

The function is introduced in
59d3656d5bf50 ("bpf: add bpf_prog_add api for bulk prog refcnt")
and first used in
47f1afdba2b87 ("net/mlx4_en: add support for fast rx drop bpf program").

Fixes: 47f1afdba2b87 ("net/mlx4_en: add support for fast rx drop bpf program")
Reported-by: kbuild test robot <redacted>
Reported-by: Tariq Toukan <redacted>
Signed-off-by: Brenden Blanco <redacted>
Applied.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help