mbox series

pull-request: bpf 2019-02-23

Message ID 20190223003625.32021-1-daniel@iogearbox.net
State Accepted
Delegated to: David Miller
Headers show
Series pull-request: bpf 2019-02-23 | expand

Pull-request

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

Message

Daniel Borkmann Feb. 23, 2019, 12:36 a.m. UTC
Hi David,

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

The main changes are:

1) Fix a bug in BPF's LPM deletion logic to match correct prefix
   length, from Alban.

2) Fix AF_XDP teardown by not destroying umem prematurely as it
   is still needed till all outstanding skbs are freed, from Björn.

3) Fix unkillable BPF_PROG_TEST_RUN under preempt kernel by checking
   signal_pending() outside need_resched() condition which is never
   triggered there, from Stanislav.

4) Fix two nfp JIT bugs, one in code emission for K-based xor, and
   another one to explicitly clear upper bits in alu32, from Jiong.

5) Add bpf list address to maintainers file, from Daniel.

Please consider pulling these changes from:

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

Thanks a lot!

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

The following changes since commit 21d2cb491b9e10bfdf10424673b43cd9eddc2da1:

  net/mlx4_en: fix spelling mistake: "quiting" -> "quitting" (2019-02-18 12:06:42 -0800)

are available in the git repository at:

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

for you to fetch changes up to b4b8bb69c104a9345c528692cde5aa520d885360:

  bpf, doc: add bpf list as secondary entry to maintainers file (2019-02-23 01:22:32 +0100)

----------------------------------------------------------------
Alban Crequy (1):
      bpf, lpm: fix lookup bug in map_delete_elem

Björn Töpel (1):
      Revert "xsk: simplify AF_XDP socket teardown"

Daniel Borkmann (2):
      Merge branch 'bpf-nfp-codegen-fixes'
      bpf, doc: add bpf list as secondary entry to maintainers file

Jiong Wang (2):
      nfp: bpf: fix code-gen bug on BPF_ALU | BPF_XOR | BPF_K
      nfp: bpf: fix ALU32 high bits clearance bug

Stanislav Fomichev (1):
      bpf/test_run: fix unkillable BPF_PROG_TEST_RUN

 MAINTAINERS                                  | 14 ++++++++-
 drivers/net/ethernet/netronome/nfp/bpf/jit.c | 17 ++++-------
 kernel/bpf/lpm_trie.c                        |  1 +
 net/bpf/test_run.c                           | 45 +++++++++++++++-------------
 net/xdp/xsk.c                                | 16 +++++++++-
 tools/testing/selftests/bpf/test_lpm_map.c   | 10 +++++++
 6 files changed, 69 insertions(+), 34 deletions(-)

Comments

David Miller Feb. 23, 2019, 4:45 a.m. UTC | #1
From: Daniel Borkmann <daniel@iogearbox.net>
Date: Sat, 23 Feb 2019 01:36:25 +0100

> Please consider pulling these changes from:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git

Pulled, thanks Daniel.