* [PATCH] net/af_xdp: make the PMD compatible with libbpf >= v0.7.0
@ 2022-02-17 12:14 Ciara Loftus
2022-02-17 13:12 ` Bruce Richardson
0 siblings, 1 reply; 3+ messages in thread
From: Ciara Loftus @ 2022-02-17 12:14 UTC (permalink / raw)
To: dev; +Cc: Ciara Loftus
libbpf v0.7.0 deprecates the bpf_prog_load function. Use meson to detect
if libbpf >= v0.7.0 is linked and if so, use the recommended replacement
functions bpf_object__open_file and bpf_oject__load.
Signed-off-by: Ciara Loftus <ciara.loftus@intel.com>
---
drivers/net/af_xdp/compat.h | 39 +++++++++++++++++++++++++++++
drivers/net/af_xdp/meson.build | 5 ++++
drivers/net/af_xdp/rte_eth_af_xdp.c | 9 +++----
3 files changed, 48 insertions(+), 5 deletions(-)
diff --git a/drivers/net/af_xdp/compat.h b/drivers/net/af_xdp/compat.h
index bf40c6572e..28ea64aeaa 100644
--- a/drivers/net/af_xdp/compat.h
+++ b/drivers/net/af_xdp/compat.h
@@ -7,6 +7,7 @@
#else
#include <bpf/xsk.h>
#endif
+#include <bpf/bpf.h>
#include <linux/version.h>
#include <poll.h>
@@ -58,3 +59,41 @@ tx_syscall_needed(struct xsk_ring_prod *q __rte_unused)
return 1;
}
#endif
+
+#ifdef RTE_NET_AF_XDP_LIBBPF_OBJ_OPEN
+static int load_program(const char *prog_path, struct bpf_object **obj)
+{
+ struct bpf_program *prog;
+ int err;
+
+ *obj = bpf_object__open_file(prog_path, NULL);
+ err = libbpf_get_error(*obj);
+ if (err)
+ return -1;
+
+ err = bpf_object__load(*obj);
+ if (err)
+ goto out;
+
+ prog = bpf_object__next_program(*obj, NULL);
+ if (!prog)
+ goto out;
+
+ return bpf_program__fd(prog);
+
+out:
+ bpf_object__close(*obj);
+ return -1;
+}
+#else
+static int load_program(const char *prog_path, struct bpf_object **obj)
+{
+ int ret, prog_fd;
+
+ ret = bpf_prog_load(prog_path, BPF_PROG_TYPE_XDP, obj, &prog_fd);
+ if (ret)
+ return -1;
+
+ return prog_fd;
+}
+#endif
diff --git a/drivers/net/af_xdp/meson.build b/drivers/net/af_xdp/meson.build
index 93e895eab9..9fe4063b99 100644
--- a/drivers/net/af_xdp/meson.build
+++ b/drivers/net/af_xdp/meson.build
@@ -22,6 +22,11 @@ if cc.has_header('linux/if_xdp.h')
cflags += ['-DRTE_NET_AF_XDP_SHARED_UMEM']
ext_deps += xdp_dep
ext_deps += bpf_dep
+ bpf_ver_dep = dependency('libbpf', version : '>=0.6.0',
+ required: false, method: 'pkg-config')
+ if bpf_ver_dep.found()
+ cflags += ['-DRTE_NET_AF_XDP_LIBBPF_OBJ_OPEN']
+ endif
else
build = false
reason = 'missing dependency, libbpf'
diff --git a/drivers/net/af_xdp/rte_eth_af_xdp.c b/drivers/net/af_xdp/rte_eth_af_xdp.c
index 6ac710c6bd..bb2a609e7f 100644
--- a/drivers/net/af_xdp/rte_eth_af_xdp.c
+++ b/drivers/net/af_xdp/rte_eth_af_xdp.c
@@ -15,7 +15,6 @@
#include <linux/ethtool.h>
#include <linux/sockios.h>
#include "af_xdp_deps.h"
-#include <bpf/bpf.h>
#include <rte_ethdev.h>
#include <ethdev_driver.h>
@@ -1176,13 +1175,13 @@ xsk_umem_info *xdp_umem_configure(struct pmd_internals *internals,
static int
load_custom_xdp_prog(const char *prog_path, int if_index, struct bpf_map **map)
{
- int ret, prog_fd = -1;
+ int ret, prog_fd;
struct bpf_object *obj;
- ret = bpf_prog_load(prog_path, BPF_PROG_TYPE_XDP, &obj, &prog_fd);
- if (ret) {
+ prog_fd = load_program(prog_path, &obj);
+ if (prog_fd < 0) {
AF_XDP_LOG(ERR, "Failed to load program %s\n", prog_path);
- return ret;
+ return -1;
}
/*
--
2.17.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] net/af_xdp: make the PMD compatible with libbpf >= v0.7.0
2022-02-17 12:14 [PATCH] net/af_xdp: make the PMD compatible with libbpf >= v0.7.0 Ciara Loftus
@ 2022-02-17 13:12 ` Bruce Richardson
2022-02-17 14:26 ` Loftus, Ciara
0 siblings, 1 reply; 3+ messages in thread
From: Bruce Richardson @ 2022-02-17 13:12 UTC (permalink / raw)
To: Ciara Loftus; +Cc: dev
On Thu, Feb 17, 2022 at 12:14:30PM +0000, Ciara Loftus wrote:
> libbpf v0.7.0 deprecates the bpf_prog_load function. Use meson to detect
> if libbpf >= v0.7.0 is linked and if so, use the recommended replacement
> functions bpf_object__open_file and bpf_oject__load.
>
> Signed-off-by: Ciara Loftus <ciara.loftus@intel.com>
> ---
> drivers/net/af_xdp/compat.h | 39 +++++++++++++++++++++++++++++
> drivers/net/af_xdp/meson.build | 5 ++++
> drivers/net/af_xdp/rte_eth_af_xdp.c | 9 +++----
> 3 files changed, 48 insertions(+), 5 deletions(-)
>
<snip>
> diff --git a/drivers/net/af_xdp/meson.build b/drivers/net/af_xdp/meson.build
> index 93e895eab9..9fe4063b99 100644
> --- a/drivers/net/af_xdp/meson.build
> +++ b/drivers/net/af_xdp/meson.build
> @@ -22,6 +22,11 @@ if cc.has_header('linux/if_xdp.h')
> cflags += ['-DRTE_NET_AF_XDP_SHARED_UMEM']
> ext_deps += xdp_dep
> ext_deps += bpf_dep
> + bpf_ver_dep = dependency('libbpf', version : '>=0.6.0',
typo? Commit log refers to v0.7.
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: [PATCH] net/af_xdp: make the PMD compatible with libbpf >= v0.7.0
2022-02-17 13:12 ` Bruce Richardson
@ 2022-02-17 14:26 ` Loftus, Ciara
0 siblings, 0 replies; 3+ messages in thread
From: Loftus, Ciara @ 2022-02-17 14:26 UTC (permalink / raw)
To: Richardson, Bruce; +Cc: dev
> Subject: Re: [PATCH] net/af_xdp: make the PMD compatible with libbpf >=
> v0.7.0
>
> On Thu, Feb 17, 2022 at 12:14:30PM +0000, Ciara Loftus wrote:
> > libbpf v0.7.0 deprecates the bpf_prog_load function. Use meson to detect
> > if libbpf >= v0.7.0 is linked and if so, use the recommended replacement
> > functions bpf_object__open_file and bpf_oject__load.
> >
> > Signed-off-by: Ciara Loftus <ciara.loftus@intel.com>
> > ---
> > drivers/net/af_xdp/compat.h | 39
> +++++++++++++++++++++++++++++
> > drivers/net/af_xdp/meson.build | 5 ++++
> > drivers/net/af_xdp/rte_eth_af_xdp.c | 9 +++----
> > 3 files changed, 48 insertions(+), 5 deletions(-)
> >
> <snip>
> > diff --git a/drivers/net/af_xdp/meson.build
> b/drivers/net/af_xdp/meson.build
> > index 93e895eab9..9fe4063b99 100644
> > --- a/drivers/net/af_xdp/meson.build
> > +++ b/drivers/net/af_xdp/meson.build
> > @@ -22,6 +22,11 @@ if cc.has_header('linux/if_xdp.h')
> > cflags += ['-DRTE_NET_AF_XDP_SHARED_UMEM']
> > ext_deps += xdp_dep
> > ext_deps += bpf_dep
> > + bpf_ver_dep = dependency('libbpf', version : '>=0.6.0',
>
> typo? Commit log refers to v0.7.
Indeed. Thanks for the catch! v2 on the way.
Ciara
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-02-17 14:26 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-17 12:14 [PATCH] net/af_xdp: make the PMD compatible with libbpf >= v0.7.0 Ciara Loftus
2022-02-17 13:12 ` Bruce Richardson
2022-02-17 14:26 ` Loftus, Ciara
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).