BPF List
 help / color / mirror / Atom feed
 messages from 2020-09-02 06:57:37 to 2020-09-04 14:28:29 UTC [more...]

[PATCH bpf-next 0/6] xsk: exit NAPI loop when AF_XDP Rx ring is full
 2020-09-04 14:27 UTC  (9+ messages)
` [PATCH bpf-next 1/6] xsk: improve xdp_do_redirect() error codes
` [PATCH bpf-next 2/6] xdp: introduce xdp_do_redirect_ext() function
` [PATCH bpf-next 3/6] xsk: introduce xsk_do_redirect_rx_full() helper
` [PATCH bpf-next 4/6] i40e, xsk: finish napi loop if AF_XDP Rx queue is full
` [PATCH bpf-next 5/6] ice, "
` [PATCH bpf-next 6/6] ixgbe, "

[PATCH v2 net-next 0/9] mvneta: introduce XDP multi-buffer support
 2020-09-04 14:27 UTC  (28+ messages)
` [PATCH v2 net-next 1/9] xdp: introduce mb in xdp_buff/xdp_frame
` [PATCH v2 net-next 2/9] xdp: initialize xdp_buff mb bit to 0 in all XDP drivers
` [PATCH v2 net-next 3/9] net: mvneta: update mb bit before passing the xdp buffer to eBPF layer
` [PATCH v2 net-next 4/9] xdp: add multi-buff support to xdp_return_{buff/frame}
` [PATCH v2 net-next 5/9] net: mvneta: add multi buffer support to XDP_TX
` [PATCH v2 net-next 6/9] bpf: helpers: add bpf_xdp_adjust_mb_header helper
` [PATCH v2 net-next 7/9] bpf: helpers: add multibuffer support
` [PATCH v2 net-next 8/9] samples/bpf: add bpf program that uses xdp mb helpers
` [PATCH v2 net-next 9/9] net: mvneta: enable jumbo frames for XDP

[PATCHv8 bpf-next 0/3] xdp: add a new helper for dev map multicast support
 2020-09-04 14:26 UTC  (13+ messages)
` [PATCHv9 bpf-next 0/5] "
  ` [PATCHv9 bpf-next 1/5] bpf: add a new bpf argument type ARG_CONST_MAP_PTR_OR_NULL
  ` [PATCHv10 bpf-next 0/5] xdp: add a new helper for dev map multicast support
    ` [PATCHv10 bpf-next 1/5] bpf: add a new bpf argument type ARG_CONST_MAP_PTR_OR_NULL
    ` [PATCHv10 bpf-next 2/5] xdp: add a new helper for dev map multicast support
    ` [PATCHv10 bpf-next 3/5] sample/bpf: add xdp_redirect_map_multicast test
    ` [PATCHv10 bpf-next 4/5] selftests/bpf: add xdp_redirect_multi test
    ` [PATCHv10 bpf-next 5/5] selftests/bpf: Add verifier tests for bpf arg ARG_CONST_MAP_PTR_OR_NULL

[PATCH bpf-next 1/2] libbpf: fix another __u64 cast in printf
 2020-09-04 13:09 UTC  (3+ messages)
` [PATCH bpf-next 2/2] libbpf: fix potential multiplication overflow

[PATCH bpf-next 00/11] RFC: Make check_func_arg table driven
 2020-09-04 11:24 UTC  (12+ messages)
` [PATCH bpf-next 01/11] btf: Fix BTF_SET_START_GLOBAL macro
` [PATCH bpf-next 02/11] btf: add a global set of valid BTF socket ids
` [PATCH bpf-next 03/11] btf: make btf_set_contains take a const pointer
` [PATCH bpf-next 04/11] bpf: check scalar or invalid register in check_helper_mem_access
` [PATCH bpf-next 05/11] bpf: allow specifying a set of BTF IDs for helper arguments
` [PATCH bpf-next 06/11] bpf: make reference tracking in check_func_arg generic
` [PATCH bpf-next 07/11] bpf: always check access to PTR_TO_CTX regardless of arg_type
` [PATCH bpf-next 08/11] bpf: set meta->raw_mode for pointers to memory closer to it's use
` [PATCH bpf-next 09/11] bpf: check ARG_PTR_TO_SPINLOCK register type in check_func_arg
` [PATCH bpf-next 10/11] bpf: hoist type checking for nullable arg types
` [PATCH bpf-next 11/11] bpf: use a table to drive helper arg type checks

[PATCH bpf-next v3 0/6] Sockmap iterator
 2020-09-04  9:59 UTC  (7+ messages)
` [PATCH bpf-next v3 1/6] bpf: Allow passing BTF pointers as PTR_TO_SOCKET
` [PATCH bpf-next v3 2/6] net: sockmap: Remove unnecessary sk_fullsock checks
` [PATCH bpf-next v3 3/6] net: Allow iterating sockmap and sockhash
` [PATCH bpf-next v3 4/6] selftests: bpf: Ensure that BTF sockets cannot be released
` [PATCH bpf-next v3 5/6] selftests: bpf: Add helper to compare socket cookies
` [PATCH bpf-next v3 6/6] selftests: bpf: Test copying a sockmap via bpf_iter

[PATCH bpf-next] bpf: don't check against device MTU in __bpf_skb_max_len
 2020-09-04  9:30 UTC 

[PATCH v3 bpf-next 00/14] Add libbpf full support for BPF-to-BPF calls
 2020-09-04  7:53 UTC  (17+ messages)
` [PATCH v3 bpf-next 01/14] libbpf: ensure ELF symbols table is found before further ELF processing
` [PATCH v3 bpf-next 02/14] libbpf: parse multi-function sections into multiple BPF programs
` [PATCH v3 bpf-next 03/14] libbpf: support CO-RE relocations for multi-prog sections
` [PATCH v3 bpf-next 04/14] libbpf: make RELO_CALL work for multi-prog sections and sub-program calls
` [PATCH v3 bpf-next 05/14] libbpf: implement generalized .BTF.ext func/line info adjustment
` [PATCH v3 bpf-next 06/14] libbpf: add multi-prog section support for struct_ops
` [PATCH v3 bpf-next 07/14] selftests/bpf: add selftest for multi-prog sections and bpf-to-bpf calls
` [PATCH v3 bpf-next 08/14] tools/bpftool: replace bpf_program__title() with bpf_program__section_name()
` [PATCH v3 bpf-next 09/14] selftests/bpf: don't use deprecated libbpf APIs
` [PATCH v3 bpf-next 10/14] libbpf: deprecate notion of BPF program "title" in favor of "section name"
` [PATCH v3 bpf-next 11/14] selftests/bpf: turn fexit_bpf2bpf into test with subtests
` [PATCH v3 bpf-next 12/14] selftests/bpf: add subprogs to pyperf, strobemeta, and l4lb_noinline tests
` [PATCH v3 bpf-next 13/14] selftests/bpf: modernize xdp_noinline test w/ skeleton and __noinline
` [PATCH v3 bpf-next 14/14] selftests/bpf: add __noinline variant of cls_redirect selftest

[PATCH bpf-next v2 0/4] Sockmap iterator
 2020-09-04  7:46 UTC  (12+ messages)
` [PATCH bpf-next v2 2/4] net: Allow iterating sockmap and sockhash
` [PATCH bpf-next v2 4/4] selftests: bpf: Test copying a sockmap via bpf_iter

[PATCH bpf-next 1/2] samples: bpf: Replace bpf_program__title() with bpf_program__section_name()
 2020-09-04  6:34 UTC  (2+ messages)
` [PATCH bpf-next 2/2] samples: bpf: add xsk_fwd test file to .gitignore

[PATCH 1/2] samples: bpf: Replace bpf_program__title() with bpf_program__section_name()
 2020-09-04  6:33 UTC  (2+ messages)
` [PATCH 2/2] samples: bpf: add xsk_fwd test file to .gitignore

[PATCH v2 0/5] Fixes for setting event freq/periods
 2020-09-04  5:43 UTC  (16+ messages)
` [PATCH v2 1/5] perf record: Set PERF_RECORD_PERIOD if attr->freq is set
` [PATCH v2 2/5] perf record: Prevent override of attr->sample_period for libpfm4 events
` [PATCH v2 4/5] perf record: Don't clear event's period if set by a term

[PATCH bpf-next 0/2] fix a verifier failure with xor
 2020-09-04  5:29 UTC  (11+ messages)
` [PATCH bpf-next 1/2] bpf: "

[PATCH bpf-next v3 0/8] Allow storage of flexible metadata information for eBPF programs
 2020-09-04  1:29 UTC  (15+ messages)
` [PATCH bpf-next v3 2/8] bpf: Add BPF_PROG_BIND_MAP syscall
` [PATCH bpf-next v3 3/8] libbpf: Add BPF_PROG_BIND_MAP syscall and use it on .metadata section
` [PATCH bpf-next v3 4/8] libbpf: implement bpf_prog_find_metadata
` [PATCH bpf-next v3 5/8] bpftool: support dumping metadata

[PATCH bpf 0/2] bpf: do not use bucket_lock for hashmap iterator
 2020-09-04  0:44 UTC  (7+ messages)
` [PATCH bpf 1/2] "
` [PATCH bpf 2/2] selftests/bpf: add bpf_{update,delete}_map_elem in hashmap iter program

[PATCH] selftests/bpf: Fix check in global_data_init
 2020-09-04  0:34 UTC  (3+ messages)

[PATCH bpf-next v2 0/6] bpf: BTF support for ksyms
 2020-09-03 22:33 UTC  (7+ messages)
` [PATCH bpf-next v2 1/6] bpf: Introduce pseudo_btf_id
` [PATCH bpf-next v2 2/6] bpf/libbpf: BTF support for typed ksyms
` [PATCH bpf-next v2 3/6] bpf/selftests: ksyms_btf to test "
` [PATCH bpf-next v2 4/6] bpf: Introduce bpf_per_cpu_ptr()
` [PATCH bpf-next v2 5/6] bpf: Introduce bpf_this_cpu_ptr()
` [PATCH bpf-next v2 6/6] bpf/selftests: Test for bpf_per_cpu_ptr() and bpf_this_cpu_ptr()

[PATCH v7 bpf-next 0/7] bpf: tailcalls in BPF subprograms
 2020-09-03 19:51 UTC  (10+ messages)
` [PATCH v7 bpf-next 1/7] bpf, x64: use %rcx instead of %rax for tail call retpolines
` [PATCH v7 bpf-next 2/7] bpf: propagate poke descriptors to subprograms
` [PATCH v7 bpf-next 3/7] bpf: rename poke descriptor's 'ip' member to 'tailcall_target'
` [PATCH v7 bpf-next 4/7] bpf, x64: rework pro/epilogue and tailcall handling in JIT
` [PATCH v7 bpf-next 5/7] bpf: limit caller's stack depth 256 for subprogs with tailcalls
` [PATCH v7 bpf-next 6/7] bpf: allow for tailcalls in BPF subprograms for x64 JIT
` [PATCH v7 bpf-next 7/7] selftests: bpf: add dummy prog for bpf2bpf with tailcall

[PATCH] selftests/bpf: Fix check in global_data_init
 2020-09-03 19:31 UTC  (3+ messages)

[PATCH] tools build feature: cleanup feature files on make clean
 2020-09-03 19:26 UTC  (4+ messages)

[PATCH RFC] bpf: update current instruction on patching
 2020-09-03 18:12 UTC  (5+ messages)

[PATCH] libbpf: Remove arch-specific include path in Makefile
 2020-09-03 13:51 UTC  (5+ messages)

[RFC PATCH] libbpf: Support setting map max_entries at runtime
 2020-09-03  5:28 UTC  (2+ messages)

[PATCH bpf-next 0/5] Allow storage of flexible metadata information for eBPF programs
 2020-09-03  5:18 UTC  (5+ messages)
` [PATCH bpf-next 4/5] bpftool: support dumping metadata

EF_BPF_GNU_XBPF
 2020-09-02 23:40 UTC  (12+ messages)

[PATCH bpf-next] xsk: fix use-after-free in failed shared_umem bind
 2020-09-02 21:43 UTC  (2+ messages)

[PATCH v6 bpf-next 0/6] bpf: tailcalls in BPF subprograms
 2020-09-02 20:01 UTC  (10+ messages)

[PATCH v2 bpf-next 00/14] Add libbpf full support for BPF-to-BPF calls
 2020-09-02 19:58 UTC  (13+ messages)
` [PATCH v2 bpf-next 04/14] libbpf: make RELO_CALL work for multi-prog sections and sub-program calls
` [PATCH v2 bpf-next 07/14] selftests/bpf: add selftest for multi-prog sections and bpf-to-bpf calls
` [PATCH v2 bpf-next 12/14] selftests/bpf: convert pyperf, strobemeta, and l4lb_noinline to __noinline
` [PATCH v2 bpf-next 14/14] selftests/bpf: convert cls_redirect selftest to use __noinline

[PATCH][next] xsk: Fix null check on error return path
 2020-09-02 19:17 UTC  (5+ messages)

[PATCH] xsk: Free variable on error path
 2020-09-02 18:36 UTC  (2+ messages)

[PATCH][next] xsk: fix incorrect memory allocation failure check on dma_map->dma_pages
 2020-09-02 18:35 UTC  (2+ messages)

[PATCH bpf-next] bpf: add bpf_get_xdp_hash helper function
 2020-09-02 15:56 UTC  (3+ messages)

[PATCH bpf-next] xsk: fix possible segfault at xskmap entry insertion
 2020-09-02 14:58 UTC  (2+ messages)

[PATCH bpf-next] xsk: fix possible segfault in xsk umem diagnostics
 2020-09-02 14:57 UTC  (2+ messages)

[PATCH bpf-next v4 0/2] bpf: avoid iterating duplicated files for task_file iterator
 2020-09-02 14:56 UTC  (2+ messages)

[PATCH bpf v1] libbpf: fix build failure from uninitialized variable warning
 2020-09-02  7:39 UTC  (3+ messages)

[RFC PATCH 0/4] block/bpf: add eBPF based block layer IO filtering
 2020-09-02  7:36 UTC  (5+ messages)
` [RFC PATCH 1/4] bpf: add new prog_type BPF_PROG_TYPE_IO_FILTER

general protection fault in xsk_diag_dump (2)
 2020-09-02  7:27 UTC 

general protection fault in xsk_is_setup_for_bpf_map
 2020-09-02  7:27 UTC 

KASAN: use-after-free Write in xp_put_pool
 2020-09-02  7:07 UTC  (4+ messages)


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