forked from Freescale/linux-fslc
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Daniel Borkmann says: ==================== pull-request: bpf 2020-11-28 1) Do not reference the skb for xsk's generic TX side since when looped back into RX it might crash in generic XDP, from Björn Töpel. 2) Fix umem cleanup on a partially set up xsk socket when being destroyed, from Magnus Karlsson. 3) Fix an incorrect netdev reference count when failing xsk_bind() operation, from Marek Majtyka. 4) Fix bpftool to set an error code on failed calloc() in build_btf_type_table(), from Zhen Lei. * https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf: bpf: Add MAINTAINERS entry for BPF LSM bpftool: Fix error return value in build_btf_type_table net, xsk: Avoid taking multiple skbuff references xsk: Fix incorrect netdev reference count xsk: Fix umem cleanup bug at socket destruct MAINTAINERS: Update XDP and AF_XDP entries ==================== Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jakub Kicinski <[email protected]>
- Loading branch information
Showing
9 changed files
with
61 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3355,6 +3355,17 @@ S: Supported | |
F: arch/x86/net/ | ||
X: arch/x86/net/bpf_jit_comp32.c | ||
|
||
BPF LSM (Security Audit and Enforcement using BPF) | ||
M: KP Singh <[email protected]> | ||
R: Florent Revest <[email protected]> | ||
R: Brendan Jackman <[email protected]> | ||
L: [email protected] | ||
S: Maintained | ||
F: Documentation/bpf/bpf_lsm.rst | ||
F: include/linux/bpf_lsm.h | ||
F: kernel/bpf/bpf_lsm.c | ||
F: security/bpf/ | ||
|
||
BROADCOM B44 10/100 ETHERNET DRIVER | ||
M: Michael Chan <[email protected]> | ||
L: [email protected] | ||
|
@@ -19112,12 +19123,17 @@ L: [email protected] | |
L: [email protected] | ||
S: Supported | ||
F: include/net/xdp.h | ||
F: include/net/xdp_priv.h | ||
F: include/trace/events/xdp.h | ||
F: kernel/bpf/cpumap.c | ||
F: kernel/bpf/devmap.c | ||
F: net/core/xdp.c | ||
N: xdp | ||
K: xdp | ||
F: samples/bpf/xdp* | ||
F: tools/testing/selftests/bpf/*xdp* | ||
F: tools/testing/selftests/bpf/*/*xdp* | ||
F: drivers/net/ethernet/*/*/*/*/*xdp* | ||
F: drivers/net/ethernet/*/*/*xdp* | ||
K: (?:\b|_)xdp(?:\b|_) | ||
|
||
XDP SOCKETS (AF_XDP) | ||
M: Björn Töpel <[email protected]> | ||
|
@@ -19126,9 +19142,12 @@ R: Jonathan Lemon <[email protected]> | |
L: [email protected] | ||
L: [email protected] | ||
S: Maintained | ||
F: Documentation/networking/af_xdp.rst | ||
F: include/net/xdp_sock* | ||
F: include/net/xsk_buff_pool.h | ||
F: include/uapi/linux/if_xdp.h | ||
F: include/uapi/linux/xdp_diag.h | ||
F: include/net/netns/xdp.h | ||
F: net/xdp/ | ||
F: samples/bpf/xdpsock* | ||
F: tools/lib/bpf/xsk* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters