bpf.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2020-05-08 13:09:18 to 2020-05-11 18:52:58 UTC [more...]

[PATCH bpf-next v2 00/17] Run a BPF program on socket lookup
 2020-05-11 18:52 UTC  (10+ messages)
` [PATCH bpf-next v2 01/17] flow_dissector: Extract attach/detach/query helpers
` [PATCH bpf-next v2 04/17] inet: Extract helper for selecting socket from reuseport group
` [PATCH bpf-next v2 07/17] inet6: Run SK_LOOKUP BPF program on socket lookup
` [PATCH bpf-next v2 09/17] udp: Extract helper for selecting socket from reuseport group
` [PATCH bpf-next v2 10/17] udp: Run SK_LOOKUP BPF program on socket lookup
` [PATCH bpf-next v2 13/17] bpf: Sync linux/bpf.h to tools/
` [PATCH bpf-next v2 15/17] selftests/bpf: Add verifier tests for bpf_sk_lookup context access
` [PATCH bpf-next v2 16/17] selftests/bpf: Rename test_sk_lookup_kern.c to test_ref_track_kern.c
` [PATCH bpf-next v2 17/17] selftests/bpf: Tests for BPF_SK_LOOKUP attach point

WARNING in cgroup_finalize_control
 2020-05-11 18:31 UTC  (2+ messages)

[PATCH bpf-next v2 0/4] bpf: clean up bpftool, bpftool doc, bpf-helpers doc
 2020-05-11 16:15 UTC  (5+ messages)
` [PATCH bpf-next v2 1/4] tools: bpftool: poison and replace kernel integer typedefs
` [PATCH bpf-next v2 2/4] tools: bpftool: minor fixes for documentation
` [PATCH bpf-next v2 3/4] bpf: minor fixes to BPF helpers documentation
` [PATCH bpf-next v2 4/4] tools: bpf: synchronise BPF UAPI header with tools

[PATCH bpf-next 0/4] bpf: clean up bpftool, bpftool doc, bpf-helpers doc
 2020-05-11 16:05 UTC  (7+ messages)
` [PATCH bpf-next 1/4] tools: bpftool: poison and replace kernel integer typedefs
` [PATCH bpf-next 2/4] tools: bpftool: minor fixes for documentation
` [PATCH bpf-next 3/4] bpf: minor fixes to BPF helpers documentation
` [PATCH bpf-next 4/4] tools: bpf: synchronise BPF UAPI header with tools

bpf_iter build breakage ([bpf-next:master] BUILD REGRESSION b4563facdcae55c83039d5efcc3b45a63da14d2f)
 2020-05-11 15:30 UTC  (2+ messages)

[PATCH] libbpf: Replace zero-length array with flexible-array
 2020-05-11 15:26 UTC  (3+ messages)

[RFC PATCH bpf-next 0/1] bpf, x64: optimize JIT prologue/epilogue generation
 2020-05-11 14:39 UTC  (2+ messages)
` [RFC PATCH bpf-next 1/1] "

[PATCH bpf-next v2 0/3] arm64 BPF JIT Optimizations
 2020-05-11 12:55 UTC  (5+ messages)
` [PATCH bpf-next v2 1/3] arm64: insn: Fix two bugs in encoding 32-bit logical immediates
` [PATCH bpf-next v2 2/3] bpf, arm64: Optimize AND,OR,XOR,JSET BPF_K using arm64 "
` [PATCH bpf-next v2 3/3] bpf, arm64: Optimize ADD,SUB,JMP BPF_K using arm64 add/sub immediates

[PATCH bpf-next v3] libbpf: fix probe code to return EPERM if encountered
 2020-05-11 12:40 UTC 

Mailing list for CI results
 2020-05-11 12:38 UTC 

[PATCH bpf] samples: bpf: fix build error
 2020-05-11 11:32 UTC 

Checksum behaviour of bpf_redirected packets
 2020-05-11  9:31 UTC  (9+ messages)

[PATCH bpf-next 00/17] Run a BPF program on socket lookup
 2020-05-11  9:08 UTC  (11+ messages)
` [PATCH bpf-next 02/17] bpf: Introduce SK_LOOKUP program type with a dedicated attach point
` [PATCH bpf-next 14/17] libbpf: Add support for SK_LOOKUP program type

clean up and streamline probe_kernel_* and friends
 2020-05-11  5:34 UTC  (6+ messages)
` [PATCH 11/15] maccess: remove strncpy_from_unsafe
` [PATCH 12/15] maccess: always use strict semantics for probe_kernel_read

[PATCH bpf-next v4 00/21] bpf: implement bpf iterator for kernel data
 2020-05-10 17:05 UTC  (39+ messages)
` [PATCH bpf-next v4 01/21] bpf: implement an interface to register bpf_iter targets
` [PATCH bpf-next v4 02/21] bpf: allow loading of a bpf_iter program
` [PATCH bpf-next v4 03/21] bpf: support bpf tracing/iter programs for BPF_LINK_CREATE
` [PATCH bpf-next v4 04/21] bpf: support bpf tracing/iter programs for BPF_LINK_UPDATE
` [PATCH bpf-next v4 05/21] bpf: implement bpf_seq_read() for bpf iterator
` [PATCH bpf-next v4 06/21] bpf: create anonymous "
` [PATCH bpf-next v4 07/21] bpf: create file "
` [PATCH bpf-next v4 08/21] bpf: implement common macros/helpers for target iterators
` [PATCH bpf-next v4 09/21] bpf: add bpf_map iterator
` [PATCH bpf-next v4 10/21] net: bpf: add netlink and ipv6_route bpf_iter targets
` [PATCH bpf-next v4 11/21] bpf: add task and task/file iterator targets
` [PATCH bpf-next v4 12/21] bpf: add PTR_TO_BTF_ID_OR_NULL support
` [PATCH bpf-next v4 13/21] bpf: add bpf_seq_printf and bpf_seq_write helpers
` [PATCH bpf-next v4 14/21] bpf: handle spilled PTR_TO_BTF_ID properly when checking stack_boundary
` [PATCH bpf-next v4 15/21] bpf: support variable length array in tracing programs
` [PATCH bpf-next v4 16/21] tools/libbpf: add bpf_iter support
` [PATCH bpf-next v4 17/21] tools/libpf: add offsetof/container_of macro in bpf_helpers.h
` [PATCH bpf-next v4 18/21] tools/bpftool: add bpf_iter support for bptool
` [PATCH bpf-next v4 19/21] tools/bpf: selftests: add iterator programs for ipv6_route and netlink
` [PATCH bpf-next v4 20/21] tools/bpf: selftests: add iter progs for bpf_map/task/task_file
` [PATCH bpf-next v4 21/21] tools/bpf: selftests: add bpf_iter selftests

[PATCH net-next v3 00/33] XDP extend with knowledge of frame size
 2020-05-10  6:31 UTC  (9+ messages)
` [PATCH net-next v3 07/33] xdp: xdp_frame add member frame_sz and handle in convert_to_xdp_frame
` [PATCH net-next v3 21/33] virtio_net: add XDP frame size in two code paths
` [PATCH net-next v3 24/33] ixgbevf: add XDP frame size to VF driver
` [PATCH net-next v3 28/33] mlx5: rx queue setup time determine frame_sz for XDP

[PATCH] bpfilter: check if $(CC) can static link in Kconfig
 2020-05-10  1:04 UTC  (2+ messages)

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

[PATCH v2 bpf-next 0/3] Add benchmark runner and few benchmarks
 2020-05-09 17:43 UTC  (7+ messages)
` [PATCH v2 bpf-next 1/3] selftests/bpf: add benchmark runner infrastructure
` [PATCH v2 bpf-next 2/3] selftest/bpf: fmod_ret prog and implement test_overhead as part of bench
` [PATCH v2 bpf-next 3/3] selftest/bpf: add BPF triggering benchmark

[bpf-next PATCH 00/10] bpf: selftests, test_sockmap improvements
 2020-05-09 14:55 UTC  (3+ messages)

bprm_count and stack_mprotect error when testing BPF LSM on v5.7-rc3
 2020-05-09 13:28 UTC  (7+ messages)

[PATCH] bpfilter: document build requirements for bpfilter_umh
 2020-05-09  7:51 UTC  (2+ messages)

[PATCH 0/2] libbpf: fix powerpc check_kabi rule
 2020-05-09  6:17 UTC  (7+ messages)
` [PATCH 1/2] Revert "libbpf: Fix readelf output parsing on powerpc with recent binutils"
` [PATCH 2/2] libbpf: use .so dynamic symbols for abi check

[PATCH bpf-next v3 00/21] bpf: implement bpf iterator for kernel data
 2020-05-09  6:04 UTC  (34+ messages)
` [PATCH bpf-next v3 01/21] bpf: implement an interface to register bpf_iter targets
` [PATCH bpf-next v3 02/21] bpf: allow loading of a bpf_iter program
` [PATCH bpf-next v3 03/21] bpf: support bpf tracing/iter programs for BPF_LINK_CREATE
` [PATCH bpf-next v3 05/21] bpf: implement bpf_seq_read() for bpf iterator
` [PATCH bpf-next v3 06/21] bpf: create anonymous "
` [PATCH bpf-next v3 08/21] bpf: implement common macros/helpers for target iterators
` [PATCH bpf-next v3 10/21] net: bpf: add netlink and ipv6_route bpf_iter targets
` [PATCH bpf-next v3 11/21] bpf: add task and task/file iterator targets
` [PATCH bpf-next v3 13/21] bpf: add bpf_seq_printf and bpf_seq_write helpers
` [PATCH bpf-next v3 16/21] tools/libbpf: add bpf_iter support
` [PATCH bpf-next v3 17/21] tools/libpf: add offsetof/container_of macro in bpf_helpers.h
` [PATCH bpf-next v3 18/21] tools/bpftool: add bpf_iter support for bptool
` [PATCH bpf-next v3 21/21] tools/bpf: selftests: add bpf_iter selftests

linux-next 20200506 - build failure with net/bpfilter/bpfilter_umh
 2020-05-09  4:39 UTC  (3+ messages)

[RFC PATCH v3 00/14] Share events between metrics
 2020-05-09  2:40 UTC  (13+ messages)
` [RFC PATCH v3 01/14] perf parse-events: expand add PMU error/verbose messages
` [RFC PATCH v3 06/14] perf evsel: fix 2 memory leaks
` [RFC PATCH v3 12/14] perf metricgroup: order event groups by size
` [RFC PATCH v3 13/14] perf metricgroup: remove duped metric group events

[PATCH] umh: fix memory leak on execve failure
 2020-05-09  2:10 UTC  (2+ messages)

pull-request: bpf 2020-05-09
 2020-05-09  2:02 UTC  (2+ messages)

[PATCH bpf-next v5 0/4] bpf: allow any port in bpf_bind helper
 2020-05-08 23:41 UTC  (6+ messages)
` [PATCH bpf-next v5 1/4] selftests/bpf: generalize helpers to control background listener
` [PATCH bpf-next v5 2/4] selftests/bpf: move existing common networking parts into network_helpers
` [PATCH bpf-next v5 3/4] net: refactor arguments of inet{,6}_bind
` [PATCH bpf-next v5 4/4] bpf: allow any port in bpf_bind helper

[PATCH v5 bpf-next 0/3] Introduce CAP_BPF
 2020-05-08 23:00 UTC  (6+ messages)
` [PATCH v5 bpf-next 1/3] bpf, capability: "
` [PATCH v5 bpf-next 2/3] bpf: implement CAP_BPF
` [PATCH v5 bpf-next 3/3] selftests/bpf: use CAP_BPF and CAP_PERFMON in tests

[PATCH] bpf: Tweak BPF jump table optimizations for objtool compatibility
 2020-05-08 22:18 UTC  (11+ messages)

Add a __anon_inode_getfd helper
 2020-05-08 19:52 UTC  (16+ messages)
` [PATCH 01/12] fd: add a new "
` [PATCH 02/12] kvm: use __anon_inode_getfd
` [PATCH 03/12] pidfd: "
` [PATCH 04/12] bpf: "
` [PATCH 05/12] io_uring: "
` [PATCH 06/12] eventpoll: "
` [PATCH 07/12] eventfd: "
` [PATCH 08/12] vfio: "
` [PATCH 09/12] rdma: "
` [PATCH 10/12] drm_syncobj: "
` [PATCH 11/12] gpiolib: "
` [PATCH 12/12] vtpm_proxy: "

Collaboration
 2020-05-08 19:19 UTC 

[PATCH bpf-next v2 00/20] bpf: implement bpf iterator for kernel data
 2020-05-08 18:17 UTC  (9+ messages)
` [PATCH bpf-next v2 13/20] bpf: add bpf_seq_printf and bpf_seq_write helpers
` [PATCH bpf-next v2 18/20] tools/bpf: selftests: add iterator programs for ipv6_route and netlink

[RFC PATCH bpf-next 0/3] arm64 BPF JIT Optimizations
 2020-05-08 18:12 UTC  (7+ messages)
` [RFC PATCH bpf-next 1/3] arm64: insn: Fix two bugs in encoding 32-bit logical immediates

[PATCH] libbpf hashmap: fix undefined behavior in hash_bits
 2020-05-08 18:04 UTC  (4+ messages)

[PATCH bpf-next 0/3] Add benchmark runner and few benchmarks
 2020-05-08 18:01 UTC  (11+ messages)
` [PATCH bpf-next 1/3] selftests/bpf: add benchmark runner infrastructure
` [PATCH bpf-next 2/3] selftest/bpf: fmod_ret prog and implement test_overhead as part of bench
` [PATCH bpf-next 3/3] selftest/bpf: add BPF triggring benchmark

[PATCH bpf-next 00/14] Introduce AF_XDP buffer allocation API
 2020-05-08 17:57 UTC  (9+ messages)
` [PATCH bpf-next 10/14] mlx5, xsk: migrate to new MEM_TYPE_XSK_BUFF_POOL

spelling fix for bpf_perf_prog_read_value optval doc
 2020-05-08 15:06 UTC  (3+ messages)

[RFC PATCH bpf-next 0/2] xdp: add dev map multicast support
 2020-05-08 14:58 UTC  (8+ messages)
` [RFC PATCHv2 "
  ` [RFC PATCHv2 bpf-next 1/2] xdp: add a new helper for "

[RFC PATCH v2 0/3] kprobes: Support nested kprobes
 2020-05-08 14:25 UTC  (4+ messages)
` [RFC PATCH v2 1/3] x86/kprobes: "
` [RFC PATCH v2 2/3] arm64: kprobes: "
` [RFC PATCH v2 3/3] arm: "

XDP bpf_tail_call_redirect(): yea or nay?
 2020-05-08 14:18 UTC  (7+ messages)

[PATCH v12 1/4] perf doc: pass ASCIIDOC_EXTRA as an argument
 2020-05-08 13:04 UTC  (2+ messages)
` [tip: perf/core] perf doc: Pass "


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