bpf.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2021-02-08 18:46:42 to 2021-02-10 11:18:27 UTC [more...]

[PATCH bpf-next v7 1/5] bpf: Be less specific about socket cookies guarantees
 2021-02-10 11:14 UTC  (3+ messages)
` [PATCH bpf-next v7 4/5] selftests/bpf: Use vmlinux.h in socket_cookie_prog.c
` [PATCH bpf-next v7 5/5] selftests/bpf: Add a selftest for the tracing bpf_get_socket_cookie

[PATCH bpf-next v6 1/5] bpf: Be less specific about socket cookies guarantees
 2021-02-10 11:10 UTC  (7+ messages)
` [PATCH bpf-next v6 2/5] bpf: Expose bpf_get_socket_cookie to tracing programs

[PATCH v2 bpf 0/5] New netdev feature flags for XDP
 2021-02-10 10:53 UTC  (20+ messages)
` [PATCH v2 bpf 1/5] net: ethtool: add xdp properties flag set

[PATCH v5 bpf-next 0/4] introduce bpf_iter for task_vma
 2021-02-10  8:00 UTC  (11+ messages)
` [PATCH v5 bpf-next 1/4] bpf: introduce task_vma bpf_iter
` [PATCH v5 bpf-next 2/4] bpf: allow bpf_d_path in sleepable bpf_iter program
` [PATCH v5 bpf-next 3/4] libbpf: introduce section "iter.s/" for "
` [PATCH v5 bpf-next 4/4] selftests/bpf: add test for bpf_iter_task_vma

[PATCH/v2] bpf: add bpf_skb_adjust_room flag BPF_F_ADJ_ROOM_ENCAP_L2_ETH
 2021-02-10  6:59 UTC 

[PATCH] bpf_lru_list: Read double-checked variable once without lock
 2021-02-10  5:59 UTC  (2+ messages)

What should BPF_CMPXCHG do when the values match?
 2021-02-10  4:14 UTC  (2+ messages)

[PATCH v4] checkpatch: do not apply "initialise globals to 0" check to BPF progs
 2021-02-10  4:12 UTC  (4+ messages)

[PATCH v4 bpf-next 0/9] bpf: Misc improvements
 2021-02-10  3:36 UTC  (10+ messages)
` [PATCH v4 bpf-next 1/9] bpf: Optimize program stats
` [PATCH v4 bpf-next 2/9] bpf: Run sleepable programs with migration disabled
` [PATCH v4 bpf-next 3/9] bpf: Compute program stats for sleepable programs
` [PATCH v4 bpf-next 4/9] bpf: Add per-program recursion prevention mechanism
` [PATCH v4 bpf-next 5/9] selftest/bpf: Add a recursion test
` [PATCH v4 bpf-next 6/9] bpf: Count the number of times recursion was prevented
` [PATCH v4 bpf-next 7/9] selftests/bpf: Improve recursion selftest
` [PATCH v4 bpf-next 8/9] bpf: Allows per-cpu maps and map-in-map in sleepable programs
` [PATCH v4 bpf-next 9/9] selftests/bpf: Add a test for map-in-map and per-cpu maps in sleepable progs

[PATCH RFC 0/6] Add BTF_KIND_FLOAT support
 2021-02-10  3:03 UTC  (7+ messages)
` [PATCH RFC 1/6] bpf: Add BTF_KIND_FLOAT to uapi
` [PATCH RFC 2/6] libbpf: Add BTF_KIND_FLOAT support
` [PATCH RFC 3/6] tools/bpftool: "
` [PATCH RFC 4/6] bpf: "
` [PATCH RFC 5/6] selftest/bpf: Add BTF_KIND_FLOAT tests
` [PATCH RFC 6/6] bpf: Document BTF_KIND_FLOAT in btf.rst

[Patch bpf-next v2 0/5] sock_map: clean up and refactor code for BPF_SK_SKB_VERDICT
 2021-02-10  2:21 UTC  (6+ messages)
` [Patch bpf-next v2 1/5] bpf: clean up sockmap related Kconfigs
` [Patch bpf-next v2 2/5] skmsg: get rid of struct sk_psock_parser
` [Patch bpf-next v2 3/5] bpf: compute data_end dynamically with JIT code
` [Patch bpf-next v2 4/5] skmsg: use skb ext instead of TCP_SKB_CB
` [Patch bpf-next v2 5/5] sock_map: rename skb_parser and skb_verdict

[PATCH bpf-next] selftests/bpf: Fix endianness issues in atomic tests
 2021-02-10  2:07 UTC 

pull-request: bpf 2021-02-10
 2021-02-10  0:52 UTC 

FAILED unresolved symbol vfs_truncate on arm64 with LLVM
 2021-02-10  0:49 UTC  (25+ messages)

[PATCH] selftests/seccomp: Accept any valid fd in user_notification_addfd
 2021-02-10  0:35 UTC  (4+ messages)

[PATCH v3] checkpatch: do not apply "initialise globals to 0" check to BPF progs
 2021-02-09 21:19 UTC  (5+ messages)

[PATCH v3 bpf-next 0/8] bpf: Misc improvements
 2021-02-09 23:22 UTC  (18+ messages)
` [PATCH v3 bpf-next 1/8] bpf: Optimize program stats
` [PATCH v3 bpf-next 2/8] bpf: Compute program stats for sleepable programs
` [PATCH v3 bpf-next 3/8] bpf: Add per-program recursion prevention mechanism
` [PATCH v3 bpf-next 4/8] selftest/bpf: Add a recursion test
` [PATCH v3 bpf-next 5/8] bpf: Count the number of times recursion was prevented
` [PATCH v3 bpf-next 6/8] selftests/bpf: Improve recursion selftest
` [PATCH v3 bpf-next 7/8] bpf: Allows per-cpu maps and map-in-map in sleepable programs
` [PATCH v3 bpf-next 8/8] selftests/bpf: Add a test for map-in-map and per-cpu maps in sleepable progs

[PATCH bpf-next] libbpf: use AF_LOCAL instead of AF_INET in xsk.c
 2021-02-09 22:18 UTC 

[PATCH bpf 1/2] libbpf: Ignore non function pointer member in struct_ops
 2021-02-09 19:31 UTC  (2+ messages)
` [PATCH bpf 2/2] bpf: selftests: Add non function pointer test to struct_ops

[PATCH v2 bpf-next 0/7] bpf: Misc improvements
 2021-02-09 19:15 UTC  (22+ messages)
` [PATCH v2 bpf-next 1/7] bpf: Optimize program stats
` [PATCH v2 bpf-next 2/7] bpf: Compute program stats for sleepable programs
` [PATCH v2 bpf-next 3/7] bpf: Add per-program recursion prevention mechanism
` [PATCH v2 bpf-next 4/7] selftest/bpf: Add a recursion test
` [PATCH v2 bpf-next 5/7] bpf: Count the number of times recursion was prevented
` [PATCH v2 bpf-next 6/7] bpf: Allows per-cpu maps and map-in-map in sleepable programs
` [PATCH v2 bpf-next 7/7] selftests/bpf: Add a test for map-in-map and per-cpu maps in sleepable progs

[PATCH v2] checkpatch: do not apply "initialise globals to 0" check to BPF progs
 2021-02-09 18:24 UTC  (3+ messages)

[PATCH bpf-next 0/8] bpf: add bpf_for_each_map_elem() helper
 2021-02-09 17:38 UTC  (20+ messages)
` [PATCH bpf-next 2/8] "
` [PATCH bpf-next 5/8] libbpf: support local function pointer relocation
` [PATCH bpf-next 6/8] bpftool: print local function pointer properly
` [PATCH bpf-next 7/8] selftests/bpf: add hashmap test for bpf_for_each_map_elem() helper
` [PATCH bpf-next 8/8] selftests/bpf: add arraymap "

[PATCH] checkpatch: do not apply "initialise globals to 0" check to BPF progs
 2021-02-09 16:47 UTC  (4+ messages)

KMSAN: uninit-value in bpf_iter_prog_supported
 2021-02-09 16:23 UTC  (2+ messages)

[PATCH dwarves v2 0/4] BTF ELF writing changes
 2021-02-09 15:05 UTC  (16+ messages)
` [PATCH dwarves v3 0/5] "
  ` [PATCH dwarves v3 1/5] btf_encoder: Funnel ELF error reporting through a macro
  ` [PATCH dwarves v3 2/5] btf_encoder: Do not use both structs and pointers for the same data
  ` [PATCH dwarves v3 3/5] btf_encoder: Traverse sections using a for-loop
  ` [PATCH dwarves v3 4/5] btf_encoder: Add .BTF section using libelf
  ` [PATCH dwarves v3 5/5] btf_encoder: Align .BTF section to 8 bytes

[PATCH] bpf: in bpf_skb_adjust_room correct inner protocol for vxlan
 2021-02-09 13:48 UTC  (4+ messages)

[PATCH bpf-next V16 0/7] bpf: New approach for BPF MTU handling
 2021-02-09 13:38 UTC  (8+ messages)
` [PATCH bpf-next V16 1/7] bpf: Remove MTU check in __bpf_skb_max_len
` [PATCH bpf-next V16 2/7] bpf: fix bpf_fib_lookup helper MTU check for SKB ctx
` [PATCH bpf-next V16 3/7] bpf: bpf_fib_lookup return MTU value as output when looked up
` [PATCH bpf-next V16 4/7] bpf: add BPF-helper for MTU checking
` [PATCH bpf-next V16 5/7] bpf: drop MTU check when doing TC-BPF redirect to ingress
` [PATCH bpf-next V16 6/7] selftests/bpf: use bpf_check_mtu in selftest test_cls_redirect
` [PATCH bpf-next V16 7/7] selftests/bpf: tests using bpf_check_mtu BPF-helper

[PATCH v2] perf script: Simplify bool conversion
 2021-02-09 12:47 UTC  (2+ messages)

libbpf: pinning multiple progs from the same section
 2021-02-09 11:03 UTC  (14+ messages)

[ovs-dev] [PATCH] netdev-afxdp: Add start qid support
 2021-02-09 10:22 UTC  (3+ messages)

[PATCHv2 bpf-next 0/4] kbuild/resolve_btfids: Invoke resolve_btfids clean in root Makefile
 2021-02-09  9:30 UTC  (3+ messages)

[PATCH bpf-next] selftests/bpf: Simplify the calculation of variables
 2021-02-09  8:46 UTC 

[PATCH] selftests/bpf: Simplify the calculation of variables
 2021-02-09  8:39 UTC 

[PATCH bpf] devmap: Use GFP_KERNEL for xdp bulk queue allocation
 2021-02-09  8:24 UTC 

[PATCH bpf v3] selftests/bpf: convert test_xdp_redirect.sh to bash
 2021-02-09  7:45 UTC 

[PATCH bpf v2] selftests/bpf: remove bash feature in test_xdp_redirect.sh
 2021-02-09  6:54 UTC  (4+ messages)

[Patch bpf-next 00/19] sock_map: add non-TCP and cross-protocol support
 2021-02-09  6:48 UTC  (20+ messages)
` [Patch bpf-next 01/19] bpf: rename BPF_STREAM_PARSER to BPF_SOCK_MAP
` [Patch bpf-next 02/19] skmsg: get rid of struct sk_psock_parser
` [Patch bpf-next 03/19] skmsg: use skb ext instead of TCP_SKB_CB
` [Patch bpf-next 08/19] udp: implement ->read_sock() for sockmap
` [Patch bpf-next 18/19] selftests/bpf: add test cases for unix and udp sockmap

[PATCH v2 bpf-next 0/4] Add support of pointer to struct in global functions
 2021-02-09  6:44 UTC  (5+ messages)
` [PATCH v2 bpf-next 1/4] bpf: Rename bpf_reg_state variables
` [PATCH v2 bpf-next 2/4] bpf: Extract nullable reg type conversion into a helper function
` [PATCH v2 bpf-next 3/4] bpf: Support pointers in global func args
` [PATCH v2 bpf-next 4/4] selftests/bpf: Add unit tests for pointers in global functions

[PATCH bpf-next] bpf: add lookup_and_delete_elem support to hashtab
 2021-02-09  5:44 UTC  (2+ messages)

[PATCH] selftests/bpf: Simplify the calculation of variables
 2021-02-09  5:20 UTC  (2+ messages)

[PATCH] selftests: bpf: remove unneeded semicolon
 2021-02-09  2:05 UTC  (2+ messages)

[PATCH] bpf: Simplify bool comparison
 2021-02-09  2:00 UTC  (2+ messages)

[PATCH v2 bpf-next] selftests/bpf: Add missing cleanup in atomic_bounds test
 2021-02-09  2:00 UTC  (2+ messages)

[PATCH bpf-next v3 0/4] allow variable-offset stack acces
 2021-02-08 22:03 UTC  (3+ messages)
` [PATCH bpf-next v3 4/4] selftest/bpf: add test for var-offset stack access

[PATCH] bpf/benchs/bench_ringbufs: remove unneeded semicolon
 2021-02-08 21:50 UTC  (2+ messages)

[PATCH dwarves v2] btf_encoder: sanitize non-regular int base type
 2021-02-08 21:24 UTC  (12+ messages)


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