mbox series

[bpf,0/2] libbpf: minor packaging fixes

Message ID 20190327135114.17026-1-bjorn.topel@gmail.com
Headers show
Series libbpf: minor packaging fixes | expand

Message

Björn Töpel March 27, 2019, 1:51 p.m. UTC
The DPDK project is moving forward with its AF_XDP PMD, and during
that process some libbpf issues surfaced [1].

This series address two, minor, packaging issues for libbpf. The
header file xsk.h was missing from the instal_headers target and
libelf was not included in the libbpf.so (shared library) build.


Thanks,
Björn

[1] https://patches.dpdk.org/patch/50704/#93571

Björn Töpel (2):
  libbpf: add xsk.h to install_headers target
  libbpf: add libelf dependency to shared library build

 tools/lib/bpf/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Daniel Borkmann March 28, 2019, 3:39 p.m. UTC | #1
On 03/27/2019 02:51 PM, Björn Töpel wrote:
> The DPDK project is moving forward with its AF_XDP PMD, and during
> that process some libbpf issues surfaced [1].

Great to hear!

> This series address two, minor, packaging issues for libbpf. The
> header file xsk.h was missing from the instal_headers target and
> libelf was not included in the libbpf.so (shared library) build.
> 
> 
> Thanks,
> Björn
> 
> [1] https://patches.dpdk.org/patch/50704/#93571
> 
> Björn Töpel (2):
>   libbpf: add xsk.h to install_headers target
>   libbpf: add libelf dependency to shared library build
> 
>  tools/lib/bpf/Makefile | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 

Looks good, applied, thanks (also fixed up various typos in the commit
message while applying).
Björn Töpel March 28, 2019, 3:59 p.m. UTC | #2
On Thu, 28 Mar 2019 at 16:39, Daniel Borkmann <daniel@iogearbox.net> wrote:
>
> On 03/27/2019 02:51 PM, Björn Töpel wrote:
> > The DPDK project is moving forward with its AF_XDP PMD, and during
> > that process some libbpf issues surfaced [1].
>
> Great to hear!
>
> > This series address two, minor, packaging issues for libbpf. The
> > header file xsk.h was missing from the instal_headers target and
> > libelf was not included in the libbpf.so (shared library) build.
> >
> >
> > Thanks,
> > Björn
> >
> > [1] https://patches.dpdk.org/patch/50704/#93571
> >
> > Björn Töpel (2):
> >   libbpf: add xsk.h to install_headers target
> >   libbpf: add libelf dependency to shared library build
> >
> >  tools/lib/bpf/Makefile | 3 ++-
> >  1 file changed, 2 insertions(+), 1 deletion(-)
> >
>
> Looks good, applied, thanks (also fixed up various typos in the commit
> message while applying).

Thank you for fixing the typos!