bpf.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2020-06-18 23:31:52 to 2020-06-22 23:03:30 UTC [more...]

[PATCH bpf-next 1/2] bpf: switch most helper return values from 32-bit int to 64-bit long
 2020-06-22 23:03 UTC  (17+ messages)

[PATCH v2 bpf-next 0/5] bpf: Support access to bpf map fields
 2020-06-22 22:11 UTC  (15+ messages)
` [PATCH v2 bpf-next 1/5] bpf: Switch btf_parse_vmlinux to btf_find_by_name_kind
` [PATCH v2 bpf-next 2/5] bpf: Rename bpf_htab to bpf_shtab in sock_map
` [PATCH v2 bpf-next 3/5] bpf: Support access to bpf map fields
` [PATCH v2 bpf-next 4/5] bpf: Set map_btf_{name,id} for all map types
` [PATCH v2 bpf-next 5/5] selftests/bpf: Test access to bpf map pointer

Accessing mm_rss_stat fields with btf/BPF_CORE_READ_INTO
 2020-06-22 22:09 UTC  (9+ messages)

[PATCH bpf-next v2 00/15] implement bpf iterator for tcp and udp sockets
 2020-06-22 22:05 UTC  (24+ messages)
` [PATCH bpf-next v2 01/15] bpf: add bpf_seq_afinfo in tcp_iter_state
` [PATCH bpf-next v2 02/15] net: bpf: implement bpf iterator for tcp
` [PATCH bpf-next v2 03/15] bpf: support 'X' in bpf_seq_printf() helper
` [PATCH bpf-next v2 04/15] bpf: allow tracing programs to use bpf_jiffies64() helper
` [PATCH bpf-next v2 05/15] bpf: add bpf_skc_to_tcp6_sock() helper
` [PATCH bpf-next v2 06/15] bpf: add bpf_skc_to_{tcp,tcp_timewait,tcp_request}_sock() helpers
` [PATCH bpf-next v2 07/15] bpf: add bpf_seq_afinfo in udp_iter_state
` [PATCH bpf-next v2 08/15] net: bpf: implement bpf iterator for udp
  ` [Potential Spoof] "
` [PATCH bpf-next v2 09/15] bpf: add bpf_skc_to_udp6_sock() helper
` [PATCH bpf-next v2 10/15] bpf/selftests: move newer bpf_iter_* type redefining to a new header file
` [PATCH bpf-next v2 11/15] tools/bpf: refactor some net macros to libbpf bpf_tracing_net.h
` [PATCH bpf-next v2 12/15] tools/libbpf: add more common macros to bpf_tracing_net.h
` [PATCH bpf-next v2 13/15] tools/bpf: selftests: implement sample tcp/tcp6 bpf_iter programs
` [PATCH bpf-next v2 14/15] tools/bpf: add udp4/udp6 bpf iterator
` [PATCH bpf-next v2 15/15] bpf/selftests: add tcp/udp iterator programs to selftests

[PATCH bpf-next] libbpf: add a bunch of attribute getters/setters for map definitions
 2020-06-22 22:04 UTC  (3+ messages)

[PATCH bpf] libbpf: forward-declare bpf_stats_type for systems with outdated UAPI headers
 2020-06-22 21:27 UTC  (3+ messages)

[PATCH] restore behaviour of CAP_SYS_ADMIN allowing the loading of net bpf program
 2020-06-22 19:44 UTC  (3+ messages)
` [PATCH bpf v2] restore behaviour of CAP_SYS_ADMIN allowing the loading of networking bpf programs

[PATCHv3 0/9] bpf: Add d_path helper
 2020-06-22 19:18 UTC  (44+ messages)
` [PATCH 01/11] bpf: Add btfid tool to resolve BTF IDs in ELF object
` [PATCH 02/11] bpf: Compile btfid tool at kernel compilation start
` [PATCH 03/11] bpf: Add btf_ids object
` [PATCH 05/11] bpf: Remove btf_id helpers resolving
` [PATCH 06/11] bpf: Do not pass enum bpf_access_type to btf_struct_access
` [PATCH 08/11] bpf: Add BTF whitelist support
` [PATCH 09/11] bpf: Add d_path helper
` [PATCH 10/11] selftests/bpf: Add verifier test for "
` [PATCH 11/11] selftests/bpf: Add "

Fw: [Bug 208275] New: kernel hang occasionally while running the sample of xdpsock
 2020-06-22 17:49 UTC  (3+ messages)

Checkpoint/Restore of BPF Map Data
 2020-06-22 17:15 UTC  (3+ messages)

[PATCH bpf-next 0/3] bpf, netns: Prepare for multi-prog attachment
 2020-06-22 16:03 UTC  (4+ messages)
` [PATCH bpf-next 1/3] flow_dissector: Pull BPF program assignment up to bpf-netns
` [PATCH bpf-next 2/3] bpf, netns: Keep attached programs in bpf_prog_array
` [PATCH bpf-next 3/3] bpf, netns: Keep a list of attached bpf_link's

[PATCH bpf-next 0/2] tools, bpftool: Define name arrays only once
 2020-06-22 15:17 UTC  (6+ messages)
` [PATCH bpf-next 1/2] tools, bpftool: Define prog_type_name array "
` [PATCH bpf-next 2/2] tools, bpftool: Define attach_type_name "

[PATCH v2 bpf-next 0/8] introduce support for XDP programs in CPUMAP
 2020-06-22 11:50 UTC  (15+ messages)
` [PATCH v2 bpf-next 1/8] net: Refactor xdp_convert_buff_to_frame
` [PATCH v2 bpf-next 2/8] samples/bpf: xdp_redirect_cpu_user: do not update bpf maps in option loop
` [PATCH v2 bpf-next 3/8] cpumap: formalize map value as a named struct
` [PATCH v2 bpf-next 4/8] bpf: cpumap: add the possibility to attach an eBPF program to cpumap
` [PATCH v2 bpf-next 5/8] bpf: cpumap: implement XDP_REDIRECT for eBPF programs attached to map entries
` [PATCH v2 bpf-next 6/8] libbpf: add SEC name for xdp programs attached to CPUMAP
` [PATCH v2 bpf-next 7/8] samples/bpf: xdp_redirect_cpu: load a eBPF program on cpumap
` [PATCH v2 bpf-next 8/8] selftest: add tests for XDP programs in CPUMAP entries

[PATCH bpf-next v2 0/4] Generalizing bpf_local_storage
 2020-06-22  9:40 UTC  (6+ messages)
` [PATCH bpf-next v2 1/4] bpf: Generalize bpf_sk_storage
` [PATCH bpf-next v2 2/4] bpf: Implement bpf_local_storage for inodes

[PATCH] security: Fix hook iteration and default value for inode_copy_up_xattr
 2020-06-21 22:21 UTC 

[PATCH bpf] security: Fix hook iteration for secid_to_secctx
 2020-06-21 21:54 UTC  (5+ messages)

[PATCH] fix libbpf hashmap with size_t shorter than long long
 2020-06-21 14:25 UTC 

[PATCH v9 bpf-next 0/3] bpf: sharing bpf runtime stats with
 2020-06-21  3:07 UTC  (5+ messages)
` [PATCH v9 bpf-next 2/3] libbpf: add support for command BPF_ENABLE_STATS

[PATCH bpf-next v5 1/3] sock: move sock_valbool_flag to header
 2020-06-20 15:30 UTC  (3+ messages)
` [PATCH bpf-next v5 2/3] tcp: expose tcp_sock_set_keepidle_locked
` [PATCH bpf-next v5 3/3] bpf: add SO_KEEPALIVE and related options to bpf_setsockopt

[PATCH bpf] libbpf: fix CO-RE relocs against .text section
 2020-06-20  7:04 UTC  (2+ messages)

capable_bpf_net_admin()
 2020-06-20  1:59 UTC  (6+ messages)

[PATCH v3 bpf-next 0/9] libbpf ksym support and bpftool show PIDs
 2020-06-20  1:47 UTC  (14+ messages)
` [PATCH v3 bpf-next 1/9] libbpf: generalize libbpf externs support
` [PATCH v3 bpf-next 2/9] libbpf: add support for extracting kernel symbol addresses
` [PATCH v3 bpf-next 3/9] selftests/bpf: add __ksym extern selftest
` [PATCH v3 bpf-next 4/9] tools/bpftool: move map/prog parsing logic into common
` [PATCH v3 bpf-next 5/9] tools/bpftool: minimize bootstrap bpftool
` [PATCH v3 bpf-next 6/9] tools/bpftool: generalize BPF skeleton support and generate vmlinux.h
` [PATCH v3 bpf-next 7/9] libbpf: wrap source argument of BPF_CORE_READ macro in parentheses
` [PATCH v3 bpf-next 8/9] tools/bpftool: show info for processes holding BPF map/prog/link/btf FDs
` [PATCH v3 bpf-next 9/9] tools/bpftool: add documentation and sample output for process info

[PATCH bpf-next 0/2] bpf: avoid verifier failure for 32bit pointer arithmetic
 2020-06-19 23:45 UTC  (6+ messages)
` [PATCH bpf-next 1/2] "
` [PATCH bpf-next 2/2] tools/bpf: add verifier tests for 32bit pointer/scalar arithmetic

[PATCH bpf-next] tools/bpftool: relicense bpftool's BPF profiler prog as dual-license GPL/BSD
 2020-06-19 22:28 UTC  (2+ messages)

[PATCH v2 bpf-next 0/9] libbpf ksym support and bpftool show PIDs
 2020-06-19 22:12 UTC  (12+ messages)
` [PATCH v2 bpf-next 1/9] libbpf: generalize libbpf externs support
` [PATCH v2 bpf-next 2/9] libbpf: add support for extracting kernel symbol addresses
` [PATCH v2 bpf-next 3/9] selftests/bpf: add __ksym extern selftest
` [PATCH v2 bpf-next 4/9] tools/bpftool: move map/prog parsing logic into common
` [PATCH v2 bpf-next 5/9] tools/bpftool: minimize bootstrap bpftool
` [PATCH v2 bpf-next 6/9] tools/bpftool: generalize BPF skeleton support and generate vmlinux.h
` [PATCH v2 bpf-next 7/9] libbpf: wrap source argument of BPF_CORE_READ macro in parentheses
` [PATCH v2 bpf-next 8/9] tools/bpftool: show info for processes holding BPF map/prog/link/btf FDs
` [PATCH v2 bpf-next 9/9] tools/bpftool: add documentation and sample output for process info

[PATCH 1/1] net: ethernet: neterion: vxge: fix spelling mistake
 2020-06-19 20:09 UTC  (2+ messages)

[PATCH] bpf: Allow small structs to be type of function argument
 2020-06-19 18:56 UTC  (12+ messages)

[bug report] seccomp: Add find_notification helper
 2020-06-19  7:37 UTC  (3+ messages)

[PATCH bpf-next 0/6] bpf: Support access to bpf map fields
 2020-06-19  4:45 UTC  (11+ messages)
` [PATCH bpf-next 1/6] bpf: Switch btf_parse_vmlinux to btf_find_by_name_kind
` [PATCH bpf-next 4/6] bpf: Support access to bpf map fields
  ` [Potential Spoof] "

[PATCH bpf 1/2] bpf: bpf_probe_read_kernel_str() has to return amount of data read on success
 2020-06-19  0:09 UTC  (6+ messages)
` [PATCH bpf 2/2] selftests/bpf: add variable-length data concatenation pattern test

[PATCH net-next 1/3] net/sched: Introduce action hash
 2020-06-18 23:42 UTC 

[PATCH bpf-next 00/13] implement bpf iterator for tcp and udp sockets
 2020-06-18 23:31 UTC  (4+ messages)
` [PATCH bpf-next 05/13] bpf: add bpf_skc_to_tcp6_sock() helper


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).