mbox series

pull-request: bpf-next 2019-05-06

Message ID 20190506151822.19628-1-daniel@iogearbox.net
State Accepted
Delegated to: David Miller
Headers show
Series pull-request: bpf-next 2019-05-06 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git

Message

Daniel Borkmann May 6, 2019, 3:18 p.m. UTC
Hi David,

The following pull-request contains BPF updates for your *net-next* tree.

The main changes are:

1) Two AF_XDP libbpf fixes for socket teardown; first one an invalid
   munmap and the other one an invalid skmap cleanup, both from Björn.

2) More graceful CONFIG_DEBUG_INFO_BTF handling when pahole is not
   present in the system to generate vmlinux btf info, from Andrii.

3) Fix libbpf and thus fix perf build error with uClibc on arc
   architecture, from Vineet.

4) Fix missing libbpf_util.h header install in libbpf, from William.

5) Exclude bash-completion/bpftool from .gitignore pattern, from Masahiro.

6) Fix up rlimit in test_libbpf_open kselftest test case, from Yonghong.

7) Minor misc cleanups.

Please consider pulling these changes from:

  git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git

Thanks a lot!

----------------------------------------------------------------

The following changes since commit a734d1f4c2fc962ef4daa179e216df84a8ec5f84:

  net: openvswitch: return an error instead of doing BUG_ON() (2019-05-04 01:36:36 -0400)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git 

for you to fetch changes up to d24ed99b3b270c6de8f47c25d709b5f6ef7d3807:

  libbpf: remove unnecessary cast-to-void (2019-05-06 11:35:17 +0200)

----------------------------------------------------------------
Alexei Starovoitov (1):
      Merge branch 'af_xdp-fixes'

Andrii Nakryiko (1):
      kbuild: tolerate missing pahole when generating BTF

Björn Töpel (3):
      libbpf: fix invalid munmap call
      libbpf: proper XSKMAP cleanup
      libbpf: remove unnecessary cast-to-void

Masahiro Yamada (1):
      bpftool: exclude bash-completion/bpftool from .gitignore pattern

Vineet Gupta (1):
      tools/bpf: fix perf build error with uClibc (seen on ARC)

William Tu (1):
      libbpf: add libbpf_util.h to header install.

Yonghong Song (1):
      selftests/bpf: set RLIMIT_MEMLOCK properly for test_libbpf_open.c

YueHaibing (1):
      bpf: Use PTR_ERR_OR_ZERO in bpf_fd_sk_storage_update_elem()

 net/core/bpf_sk_storage.c                      |   2 +-
 scripts/link-vmlinux.sh                        |   5 +
 tools/bpf/bpftool/.gitignore                   |   2 +-
 tools/lib/bpf/Makefile                         |   1 +
 tools/lib/bpf/bpf.c                            |   2 +
 tools/lib/bpf/xsk.c                            | 184 +++++++++++++------------
 tools/testing/selftests/bpf/test_libbpf_open.c |   2 +
 7 files changed, 106 insertions(+), 92 deletions(-)

Comments

David Miller May 7, 2019, 4:29 p.m. UTC | #1
From: Daniel Borkmann <daniel@iogearbox.net>
Date: Mon,  6 May 2019 17:18:22 +0200

> The following pull-request contains BPF updates for your *net-next* tree.
> 
> The main changes are:
> 
> 1) Two AF_XDP libbpf fixes for socket teardown; first one an invalid
>    munmap and the other one an invalid skmap cleanup, both from Björn.
> 
> 2) More graceful CONFIG_DEBUG_INFO_BTF handling when pahole is not
>    present in the system to generate vmlinux btf info, from Andrii.
> 
> 3) Fix libbpf and thus fix perf build error with uClibc on arc
>    architecture, from Vineet.
> 
> 4) Fix missing libbpf_util.h header install in libbpf, from William.
> 
> 5) Exclude bash-completion/bpftool from .gitignore pattern, from Masahiro.
> 
> 6) Fix up rlimit in test_libbpf_open kselftest test case, from Yonghong.
> 
> 7) Minor misc cleanups.
> 
> Please consider pulling these changes from:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git

Pulled, thanks.