BPF List
 help / color / mirror / Atom feed
 messages from 2023-05-02 01:12:52 to 2023-05-03 23:52:33 UTC [more...]

[PATCH v2 bpf 00/11] bpf: random unpopular userspace fixes (32 bit et al)
 2023-05-03 23:52 UTC  (9+ messages)
` [PATCH v2 bpf 02/11] bpftool: define a local bpf_perf_link to fix accessing its fields

[RFC bpf-next v3 0/6] Handle immediate reuse in bpf memory allocator
 2023-05-03 23:39 UTC  (6+ messages)
` [RFC bpf-next v3 3/6] bpf: Introduce BPF_MA_REUSE_AFTER_RCU_GP

[PATCH v7 bpf-next 00/10] bpf: Add socket destroy capability
 2023-05-03 22:53 UTC  (11+ messages)
` [PATCH v7 bpf-next 01/10] bpf: tcp: Avoid taking fast sock lock in iterator
` [PATCH v7 bpf-next 02/10] udp: seq_file: Helper function to match socket attributes
` [PATCH v7 bpf-next 03/10] bpf: udp: Encapsulate logic to get udp table
` [PATCH v7 bpf-next 04/10] udp: seq_file: Remove bpf_seq_afinfo from udp_iter_state
` [PATCH v7 bpf-next 05/10] bpf: udp: Implement batching for sockets iterator
` [PATCH v7 bpf-next 06/10] bpf: Add bpf_sock_destroy kfunc
` [PATCH v7 bpf-next 07/10] selftests/bpf: Add helper to get port using getsockname
` [PATCH v7 bpf-next 08/10] selftests/bpf: Test bpf_sock_destroy
` [PATCH v7 bpf-next 09/10] bpf: Add a kfunc filter function to 'struct btf_kfunc_id_set'
` [PATCH v7 bpf-next 10/10] selftests/bpf: Extend bpf_sock_destroy tests

[PATCH bpf-next 00/10] Centralize BPF permission checks
 2023-05-03 22:33 UTC  (14+ messages)
` [PATCH bpf-next 01/10] bpf: move unprivileged checks into map_create() and bpf_prog_load()
` [PATCH bpf-next 02/10] bpf: inline map creation logic in map_create() function
` [PATCH bpf-next 03/10] bpf: centralize permissions checks for all BPF map types
` [PATCH bpf-next 04/10] bpf: remember if bpf_map was unprivileged and use that consistently
` [PATCH bpf-next 05/10] bpf: drop unnecessary bpf_capable() check in BPF_MAP_FREEZE command
` [PATCH bpf-next 06/10] bpf: keep BPF_PROG_LOAD permission checks clear of validations
` [PATCH bpf-next 07/10] bpf: record effective capabilities at BPF prog load time
` [PATCH bpf-next 08/10] bpf: use recorded BPF prog effective caps when fetching helper protos
` [PATCH bpf-next 09/10] bpf: use recorded bpf_capable flag in JIT code
` [PATCH bpf-next 10/10] bpf: consistenly use program's recorded capabilities in BPF verifier

[PATCH v6 bpf-next 0/7] bpf: Add socket destroy capability
 2023-05-03 20:26 UTC  (12+ messages)
` [PATCH 1/7] bpf: tcp: Avoid taking fast sock lock in iterator

selftest sock_fields failed on s390x with latest llvm17
 2023-05-03 19:46 UTC  (2+ messages)

[PATCH v2 1/3] bpf: Allow NULL buffers in bpf_dynptr_slice(_rw)
 2023-05-03 18:49 UTC  (4+ messages)
` [PATCH v2 2/3] selftests/bpf: Test allowing NULL buffer in dynptr slice

[PATCH 0/3] Dynptr Verifier Adjustments
 2023-05-03 18:39 UTC  (18+ messages)
` [PATCH 1/3] bpf: verifier: Accept dynptr mem as mem in helpers
` [PATCH 2/3] bpf: Allow NULL buffers in bpf_dynptr_slice(_rw)

[PATCH bpf-next v3 0/4] bpf: Don't EFAULT for {g,s}setsockopt with wrong optlen
 2023-05-03 18:27 UTC  (5+ messages)
` [PATCH bpf-next v3 2/4] selftests/bpf: Update EFAULT {g,s}etsockopt selftests

[RFC PATCH bpf-next v3 00/37] FUSE BPF: A Stacked Filesystem Extension for FUSE
 2023-05-03 18:22 UTC  (8+ messages)
` [RFC PATCH v3 08/37] fuse: Add fuse-bpf, a stacked fs extension "
` [RFC PATCH v3 28/37] WIP: bpf: Add fuse_ops struct_op programs

[RFC/PATCH] libbpf: Store zero fd to fd_array for loader kfunc relocation
 2023-05-03 17:24 UTC 

[PATCH RFC net-next/mm V3 0/2] page_pool: new approach for leak detection and shutdown phase
 2023-05-03 15:49 UTC  (7+ messages)
` [PATCH RFC net-next/mm V3 1/2] page_pool: Remove workqueue in new shutdown scheme

[PATCH net v3] virtio_net: Fix error unwinding of XDP initialization
 2023-05-03 15:00 UTC  (3+ messages)

[PATCH v8 0/3] mm/gup: disallow GUP writing to file-backed mappings by default
 2023-05-03 14:33 UTC  (13+ messages)
` [PATCH v8 1/3] mm/mmap: separate writenotify and dirty tracking logic
` [PATCH v8 2/3] mm/gup: disallow FOLL_LONGTERM GUP-nonfast writing to file-backed mappings
` [PATCH v8 3/3] mm/gup: disallow FOLL_LONGTERM GUP-fast "

[PATCH bpf v7 00/13] bpf sockmap fixes
 2023-05-03  9:49 UTC  (15+ messages)
` [PATCH bpf v7 01/13] bpf: sockmap, pass skb ownership through read_skb
` [PATCH bpf v7 02/13] bpf: sockmap, convert schedule_work into delayed_work
` [PATCH bpf v7 03/13] bpf: sockmap, reschedule is now done through backlog
` [PATCH bpf v7 04/13] bpf: sockmap, improved check for empty queue
` [PATCH bpf v7 05/13] bpf: sockmap, handle fin correctly
` [PATCH bpf v7 06/13] bpf: sockmap, TCP data stall on recv before accept
` [PATCH bpf v7 07/13] bpf: sockmap, wake up polling after data copy
` [PATCH bpf v7 08/13] bpf: sockmap, incorrectly handling copied_seq
` [PATCH bpf v7 09/13] bpf: sockmap, pull socket helpers out of listen test for general use
` [PATCH bpf v7 10/13] bpf: sockmap, build helper to create connected socket pair
` [PATCH bpf v7 11/13] bpf: sockmap, test shutdown() correctly exits epoll and recv()=0
` [PATCH bpf v7 12/13] bpf: sockmap, test FIONREAD returns correct bytes in rx buffer
` [PATCH bpf v7 13/13] bpf: sockmap, test FIONREAD returns correct bytes in rx buffer with drops

[PATCH net 1/1] igc: read before write to SRRCTL register
 2023-05-03  8:20 UTC  (3+ messages)

[PATCH v7 0/3] mm/gup: disallow GUP writing to file-backed mappings by default
 2023-05-03  0:22 UTC  (31+ messages)
` [PATCH v7 1/3] mm/mmap: separate writenotify and dirty tracking logic
` [PATCH v7 2/3] mm/gup: disallow FOLL_LONGTERM GUP-nonfast writing to file-backed mappings
` [PATCH v7 3/3] mm/gup: disallow FOLL_LONGTERM GUP-fast "

[PATCH bpf-next] bpf: Print a warning only if writing to unprivileged_bpf_disabled
 2023-05-02 23:30 UTC  (3+ messages)

[PATCH bpf-next] bpf: Emit struct bpf_tcp_sock type in vmlinux BTF
 2023-05-02 23:20 UTC  (2+ messages)

[PATCH net v2] virtio_net: Fix error unwinding of XDP initialization
 2023-05-02 19:42 UTC  (3+ messages)

[PATCH v6 0/3] mm/gup: disallow GUP writing to file-backed mappings by default
 2023-05-02 19:23 UTC  (52+ messages)
` [PATCH v6 2/3] mm/gup: disallow FOLL_LONGTERM GUP-nonfast writing to file-backed mappings
` [PATCH v6 3/3] mm/gup: disallow FOLL_LONGTERM GUP-fast "

[PATCH] bpf: Fix mask generation for 32-bit narrow loads of 64-bit fields
 2023-05-02 16:57 UTC 

[PATCH v2 net] bonding: add xdp_features support
 2023-05-02 14:14 UTC  (5+ messages)

[PATCH v5] mm/gup: disallow GUP writing to file-backed mappings by default
 2023-05-02  8:39 UTC  (12+ messages)

[PATCH net v1 2/2] virtio_net: Close queue pairs using helper function
 2023-05-02  6:00 UTC  (5+ messages)

[ANNOUNCEMENT] libbpf v1.2 release
 2023-05-02  5:08 UTC 

[PATCH v2] libbpf: Improve version handling when attaching uprobe
 2023-05-02  4:02 UTC  (2+ messages)

[PATCH bpf-next 0/2] bpf: Fix issues caused by bpf trampoline
 2023-05-02  3:40 UTC  (5+ messages)
` [PATCH bpf-next 2/2] fork: Rename mm_init to task_mm_init
      ` pahole issue. "

[PATCH v9.1 00/11] tracing: Add fprobe/tracepoint events
 2023-05-02  2:18 UTC  (12+ messages)
` [PATCH v9.1 01/11] fprobe: Pass return address to the handlers
` [PATCH v9.1 02/11] tracing/probes: Add fprobe events for tracing function entry and exit
` [PATCH v9.1 03/11] selftests/ftrace: Add fprobe related testcases
` [PATCH v9.1 04/11] tracing/probes: Add tracepoint support on fprobe_events
` [PATCH v9.1 05/11] tracing/probes: Move event parameter fetching code to common parser
` [PATCH v9.1 06/11] tracing/probes: Support function parameters if BTF is available
` [PATCH v9.1 07/11] tracing/probes: Add $$args meta argument for all function args
` [PATCH v9.1 08/11] tracing/probes: Add BTF retval type support
` [PATCH v9.1 09/11] selftests/ftrace: Add tracepoint probe test case
` [PATCH v9.1 10/11] selftests/ftrace: Add BTF arguments test cases
` [PATCH v9.1 11/11] Documentation: tracing/probes: Add fprobe event tracing document


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox