bpf.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2020-11-28 17:56:17 to 2020-12-02 00:23:48 UTC [more...]

[PATCH bpf-next 0/3] bpf: expose bpf_{s,g}etsockopt helpers to bind{4,6} hooks
 2020-12-02  0:22 UTC  (11+ messages)
` [PATCH bpf-next 2/3] bpf: allow bpf_{s,g}etsockopt from cgroup "
` [PATCH bpf-next 3/3] selftests/bpf: extend bind{4,6} programs with a call to bpf_setsockopt

[Patch net] lwt: disable BH too in run_lwt_bpf()
 2020-12-02  0:17 UTC  (3+ messages)

[PATCH v3 bpf-next 0/7] libbpf: add support for kernel module BTF CO-RE relocations
 2020-12-01 22:22 UTC  (11+ messages)
` [PATCH v3 bpf-next 1/7] bpf: fix bpf_put_raw_tracepoint()'s use of __module_address()
` [PATCH v3 bpf-next 2/7] libbpf: add internal helper to load BTF data by FD
` [PATCH v3 bpf-next 3/7] libbpf: refactor CO-RE relocs to not assume a single BTF object
` [PATCH v3 bpf-next 4/7] libbpf: add kernel module BTF support for CO-RE relocations
` [PATCH v3 bpf-next 5/7] selftests/bpf: add bpf_testmod kernel module for testing
` [PATCH v3 bpf-next 6/7] selftests/bpf: add support for marking sub-tests as skipped
` [PATCH v3 bpf-next 7/7] selftests/bpf: add CO-RE relocs selftest relying on kernel module BTF

[PATCH bpf-next v9 00/34] bpf: switch to memcg-based memory accounting
 2020-12-01 21:59 UTC  (35+ messages)
` [PATCH bpf-next v9 01/34] mm: memcontrol: use helpers to read page's memcg data
` [PATCH bpf-next v9 02/34] mm: memcontrol/slab: use helpers to access slab page's memcg_data
` [PATCH bpf-next v9 03/34] mm: introduce page memcg flags
` [PATCH bpf-next v9 04/34] mm: convert page kmemcg type to a page memcg flag
` [PATCH bpf-next v9 05/34] bpf: memcg-based memory accounting for bpf progs
` [PATCH bpf-next v9 06/34] bpf: prepare for memcg-based memory accounting for bpf maps
` [PATCH bpf-next v9 07/34] bpf: "
` [PATCH bpf-next v9 08/34] bpf: refine memcg-based memory accounting for arraymap maps
` [PATCH bpf-next v9 09/34] bpf: refine memcg-based memory accounting for cpumap maps
` [PATCH bpf-next v9 10/34] bpf: memcg-based memory accounting for cgroup storage maps
` [PATCH bpf-next v9 11/34] bpf: refine memcg-based memory accounting for devmap maps
` [PATCH bpf-next v9 12/34] bpf: refine memcg-based memory accounting for hashtab maps
` [PATCH bpf-next v9 13/34] bpf: memcg-based memory accounting for lpm_trie maps
` [PATCH bpf-next v9 14/34] bpf: memcg-based memory accounting for bpf ringbuffer
` [PATCH bpf-next v9 15/34] bpf: memcg-based memory accounting for bpf local storage maps
` [PATCH bpf-next v9 16/34] bpf: refine memcg-based memory accounting for sockmap and sockhash maps
` [PATCH bpf-next v9 17/34] bpf: refine memcg-based memory accounting for xskmap maps
` [PATCH bpf-next v9 18/34] bpf: eliminate rlimit-based memory accounting for arraymap maps
` [PATCH bpf-next v9 19/34] bpf: eliminate rlimit-based memory accounting for bpf_struct_ops maps
` [PATCH bpf-next v9 20/34] bpf: eliminate rlimit-based memory accounting for cpumap maps
` [PATCH bpf-next v9 21/34] bpf: eliminate rlimit-based memory accounting for cgroup storage maps
` [PATCH bpf-next v9 22/34] bpf: eliminate rlimit-based memory accounting for devmap maps
` [PATCH bpf-next v9 23/34] bpf: eliminate rlimit-based memory accounting for hashtab maps
` [PATCH bpf-next v9 24/34] bpf: eliminate rlimit-based memory accounting for lpm_trie maps
` [PATCH bpf-next v9 25/34] bpf: eliminate rlimit-based memory accounting for queue_stack_maps maps
` [PATCH bpf-next v9 26/34] bpf: eliminate rlimit-based memory accounting for reuseport_array maps
` [PATCH bpf-next v9 27/34] bpf: eliminate rlimit-based memory accounting for bpf ringbuffer
` [PATCH bpf-next v9 28/34] bpf: eliminate rlimit-based memory accounting for sockmap and sockhash maps
` [PATCH bpf-next v9 29/34] bpf: eliminate rlimit-based memory accounting for stackmap maps
` [PATCH bpf-next v9 30/34] bpf: eliminate rlimit-based memory accounting for xskmap maps
` [PATCH bpf-next v9 31/34] bpf: eliminate rlimit-based memory accounting for bpf local storage maps
` [PATCH bpf-next v9 32/34] bpf: eliminate rlimit-based memory accounting infra for bpf maps
` [PATCH bpf-next v9 33/34] bpf: eliminate rlimit-based memory accounting for bpf progs
` [PATCH bpf-next v9 34/34] bpf: samples: do not touch RLIMIT_MEMLOCK

[PATCH v2 bpf-next 0/8] Support BTF-powered BPF tracing programs for kernel modules
 2020-12-01 21:50 UTC  (11+ messages)
` [PATCH v2 bpf-next 1/8] bpf: keep module's btf_data_size intact after load
` [PATCH v2 bpf-next 2/8] bpf: remove hard-coded btf_vmlinux assumption from BPF verifier
` [PATCH v2 bpf-next 3/8] bpf: allow to specify kernel module BTFs when attaching BPF programs
` [PATCH v2 bpf-next 4/8] libbpf: factor out low-level BPF program loading helper
` [PATCH v2 bpf-next 5/8] libbpf: support attachment of BPF tracing programs to kernel modules
` [PATCH v2 bpf-next 6/8] selftests/bpf: add tp_btf CO-RE reloc test for modules
` [PATCH v2 bpf-next 7/8] selftests/bpf: make bpf_testmod's traceable function global
` [PATCH v2 bpf-next 8/8] selftests/bpf: add fentry/fexit/fmod_ret selftest for kernel module

[PATCH bpf-next] kbuild: Restore ability to build out-of-tree modules
 2020-12-01 21:44 UTC  (4+ messages)

[PATCH bpf-next] bpf, xdp: add bpf_redirect{,_map}() leaf node detection and optimization
 2020-12-01 21:42 UTC  (2+ messages)

[PATCH bpf-next 1/2] bpf: Add a bpf_kallsyms_lookup helper
 2020-12-01 20:25 UTC  (5+ messages)

[PATCH bpf-next 0/2] Add support to set window_clamp from bpf setsockops
 2020-12-01 20:22 UTC  (5+ messages)
` [PATCH bpf-next 1/2] bpf: Adds support for setting window clamp
` [PATCH bpf-next 2/2] selftests/bpf: Add Userspace tests for TCP_WINDOW_CLAMP

[PATCH bpf-next 1/2] selftests/bpf: Update ima test helper's losetup commands
 2020-12-01 19:15 UTC  (3+ messages)
` [PATCH bpf-next 2/2] selftests/bpf: Update ima test helper's mount uuid logic

powerpc32: BUG: KASAN: use-after-free in test_bpf_init+0x6f8/0xde8 [test_bpf]
 2020-12-01 17:43 UTC  (2+ messages)

[PATCH v1 bpf-next 00/11] Socket migration for SO_REUSEPORT
 2020-12-01 17:42 UTC  (17+ messages)
` [PATCH v1 bpf-next 01/11] tcp: Keep TCP_CLOSE sockets in the reuseport group
` [PATCH v1 bpf-next 02/11] bpf: Define migration types for SO_REUSEPORT
` [PATCH v1 bpf-next 03/11] tcp: Migrate TCP_ESTABLISHED/TCP_SYN_RECV sockets in accept queues
` [PATCH v1 bpf-next 04/11] tcp: Migrate TFO requests causing RST during TCP_SYN_RECV
` [PATCH v1 bpf-next 05/11] tcp: Migrate TCP_NEW_SYN_RECV requests
` [PATCH v1 bpf-next 06/11] bpf: Introduce two attach types for BPF_PROG_TYPE_SK_REUSEPORT
` [PATCH v1 bpf-next 07/11] libbpf: Set expected_attach_type "
` [PATCH v1 bpf-next 08/11] bpf: Add migration to sk_reuseport_(kern|md)
` [PATCH v1 bpf-next 09/11] bpf: Support bpf_get_socket_cookie_sock() for BPF_PROG_TYPE_SK_REUSEPORT
` [PATCH v1 bpf-next 10/11] bpf: Call bpf_run_sk_reuseport() for socket migration
` [PATCH v1 bpf-next 11/11] bpf: Test BPF_SK_REUSEPORT_SELECT_OR_MIGRATE

[PATCH v2 bpf-next 00/13] Atomics for eBPF
 2020-12-01 17:24 UTC  (35+ messages)
` [PATCH v2 bpf-next 01/13] bpf: x86: Factor out emission of ModR/M for *(reg + off)
` [PATCH v2 bpf-next 02/13] bpf: x86: Factor out emission of REX byte
` [PATCH v2 bpf-next 05/13] bpf: Rename BPF_XADD and prepare to encode other atomics in .imm
` [PATCH v2 bpf-next 07/13] bpf: Add BPF_FETCH field / create atomic_fetch_add instruction
` [PATCH v2 bpf-next 08/13] bpf: Add instructions for atomic_[cmp]xchg
` [PATCH v2 bpf-next 10/13] bpf: Add instructions for atomic[64]_[fetch_]sub
` [PATCH v2 bpf-next 11/13] bpf: Add bitwise atomic instructions
` [PATCH v2 bpf-next 12/13] bpf: Add tests for new BPF atomic operations

[PATCH v2 bpf-next 0/2] Add support to set window_clamp from bpf setsockops
 2020-12-01 16:43 UTC  (3+ messages)
` [PATCH bpf-next 1/2] bpf: Adds support for setting window clamp
` [PATCH bpf-next 2/2] selftests/bpf: Add Userspace tests for TCP_WINDOW_CLAMP

[PATCH] net: xdp: Give compiler __always_inline hint for xdp_rxq_info_init()
 2020-12-01 16:09 UTC  (2+ messages)

[PATCH iproute2-next 0/5] iproute2: add libbpf support
 2020-12-01 14:22 UTC  (8+ messages)

[PATCH bpf V3 0/2] xsk: fix for xsk_poll writeable
 2020-12-01 13:56 UTC  (3+ messages)
  ` [PATCH bpf V3 1/2] xsk: replace datagram_poll by sock_poll_wait
  ` [PATCH bpf V3 2/2] xsk: change the tx writeable condition

How to orchestrate multiple XDP programs
 2020-12-01 12:08 UTC 

[PATCH bpf-next 0/1] libbpf: fail early when loading programs with unspecified type
 2020-12-01  4:41 UTC  (2+ messages)
` [PATCH bpf-next 1/1] "

[PATCH] tools/bpf: Return the appropriate error value
 2020-12-01  3:02 UTC 

HELP: bpf_probe_user_write for registers
 2020-12-01  2:27 UTC  (4+ messages)

[PATCH bpf-next 0/7] Add kernel modules support for tracing BPF program attachments
 2020-12-01  1:18 UTC  (9+ messages)
` [PATCH bpf-next 1/7] bpf: remove hard-coded btf_vmlinux assumption from BPF verifier
` [PATCH bpf-next 5/7] selftests/bpf: add tp_btf CO-RE reloc test for modules

[PATCH v2 bpf-next 0/7] libbpf: add support for kernel module BTF CO-RE relocations
 2020-12-01  0:31 UTC  (8+ messages)
` [PATCH v2 bpf-next 1/7] bpf: fix bpf_put_raw_tracepoint()'s use of __module_address()
` [PATCH v2 bpf-next 2/7] libbpf: add internal helper to load BTF data by FD
` [PATCH v2 bpf-next 3/7] libbpf: refactor CO-RE relocs to not assume a single BTF object
` [PATCH v2 bpf-next 4/7] libbpf: add kernel module BTF support for CO-RE relocations
` [PATCH v2 bpf-next 5/7] selftests/bpf: add bpf_testmod kernel module for testing
` [PATCH v2 bpf-next 6/7] selftests/bpf: add support for marking sub-tests as skipped
` [PATCH v2 bpf-next 7/7] selftests/bpf: add CO-RE relocs selftest relying on kernel module BTF

[PATCH bpf] libbpf: reset errno after probing kernel features
 2020-12-01  0:18 UTC  (4+ messages)

[PATCH bpf-next v4 00/10] Introduce preferred busy-polling
 2020-11-30 23:30 UTC  (12+ messages)
` [PATCH bpf-next v4 01/10] net: introduce "
` [PATCH bpf-next v4 02/10] net: add SO_BUSY_POLL_BUDGET socket option
` [PATCH bpf-next v4 03/10] xsk: add support for recvmsg()
` [PATCH bpf-next v4 04/10] xsk: check need wakeup flag in sendmsg()
` [PATCH bpf-next v4 05/10] xsk: add busy-poll support for {recv,send}msg()
` [PATCH bpf-next v4 06/10] xsk: propagate napi_id to XDP socket Rx path
` [PATCH bpf-next v4 07/10] samples/bpf: use recvfrom() in xdpsock/rxdrop
` [PATCH bpf-next v4 08/10] samples/bpf: use recvfrom() in xdpsock/l2fwd
` [PATCH bpf-next v4 09/10] samples/bpf: add busy-poll support to xdpsock
` [PATCH bpf-next v4 10/10] samples/bpf: add option to set the busy-poll budget

[PATCH bpf 1/2] libbpf: fix ring_buffer__poll() to return number of consumed samples
 2020-11-30 22:33 UTC  (2+ messages)
` [PATCH bpf 2/2] selftests/bpf: drain ringbuf samples at the end of test

[PATCH bpf] xdp: Handle MEM_TYPE_XSK_BUFF_POOL correctly in xdp_return_buff()
 2020-11-30 22:10 UTC  (3+ messages)

[PATCH bpf-next] selftests/bpf: Fix flavored variants of test_ima
 2020-11-30 22:00 UTC  (2+ messages)

[PATCH bpf] libbpf: sanitise map names before pinning
 2020-11-30 16:17 UTC 

[PATCH bpf-next] samples/bpf: add xdp_redirect_map with xdp_prog support
 2020-11-30 16:07 UTC  (8+ messages)
` [PATCHv2 bpf-next] samples/bpf: add xdp program on egress for xdp_redirect_map

[PATCH 0/8] Rid W=1 warnings in Net
 2020-11-29 18:34 UTC  (3+ messages)
` [PATCH 2/8] net: xen-netback: xenbus: Demote nonconformant kernel-doc headers

[PATCH] bpf: remove trailing semicolon in macro definition
 2020-11-29 17:28 UTC  (3+ messages)

[PATCH 0/2] Improve error handling of verifier tests
 2020-11-28 19:25 UTC  (3+ messages)
` [PATCH 1/2] selftests/bpf: Avoid errno clobbering
` [PATCH 2/2] selftests/bpf: Print reason when a tester could not run a program

pull-request: bpf 2020-11-28
 2020-11-28 21:08 UTC  (2+ 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).