bpf.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2021-03-17 03:14:38 to 2021-03-19 18:58:54 UTC [more...]

[PATCH v4 bpf-next 00/12] BPF static linking
 2021-03-19 18:58 UTC  (17+ messages)
` [PATCH v4 bpf-next 01/12] libbpf: expose btf_type_by_id() internally
` [PATCH v4 bpf-next 02/12] libbpf: generalize BTF and BTF.ext type ID and strings iteration
` [PATCH v4 bpf-next 03/12] libbpf: rename internal memory-management helpers
` [PATCH v4 bpf-next 04/12] libbpf: extract internal set-of-strings datastructure APIs
` [PATCH v4 bpf-next 05/12] libbpf: add generic BTF type shallow copy API
` [PATCH v4 bpf-next 06/12] libbpf: add BPF static linker APIs
` [PATCH v4 bpf-next 07/12] libbpf: add BPF static linker BTF and BTF.ext support
` [PATCH v4 bpf-next 08/12] bpftool: add ability to specify custom skeleton object name
` [PATCH v4 bpf-next 09/12] bpftool: add `gen object` command to perform BPF static linking
` [PATCH v4 bpf-next 10/12] selftests/bpf: re-generate vmlinux.h and BPF skeletons if bpftool changed
` [PATCH v4 bpf-next 11/12] selftests/bpf: pass all BPF .o's through BPF static linker
` [PATCH v4 bpf-next 12/12] selftests/bpf: add multi-file statically linked BPF object file test

Design for sk_lookup helper function in context of sk_lookup hook
 2021-03-19 17:05 UTC  (3+ messages)

[PATCH v2 00/17] Add support for Clang CFI
 2021-03-19 17:03 UTC  (35+ messages)
` [PATCH v2 01/17] add "
` [PATCH v2 02/17] cfi: add __cficanonical
` [PATCH v2 03/17] mm: add generic __va_function and __pa_function macros
` [PATCH v2 04/17] module: ensure __cfi_check alignment
` [PATCH v2 05/17] workqueue: use WARN_ON_FUNCTION_MISMATCH
` [PATCH v2 06/17] kthread: "
` [PATCH v2 07/17] kallsyms: strip ThinLTO hashes from static functions
` [PATCH v2 08/17] bpf: disable CFI in dispatcher functions
` [PATCH v2 09/17] lib/list_sort: fix function type mismatches
` [PATCH v2 10/17] lkdtm: use __va_function
` [PATCH v2 11/17] psci: use __pa_function for cpu_resume
` [PATCH v2 12/17] arm64: implement __va_function
` [PATCH v2 13/17] arm64: use __pa_function
` [PATCH v2 14/17] arm64: add __nocfi to functions that jump to a physical address
` [PATCH v2 15/17] arm64: add __nocfi to __apply_alternatives
` [PATCH v2 16/17] KVM: arm64: Disable CFI for nVHE
` [PATCH v2 17/17] arm64: allow CONFIG_CFI_CLANG to be selected

[PATCH -tip v3 00/11] kprobes: Fix stacktrace with kretprobes on x86
 2021-03-19 12:23 UTC  (12+ messages)
` [PATCH -tip v3 01/11] ia64: kprobes: Fix to pass correct trampoline address to the handler
` [PATCH -tip v3 02/11] kprobes: treewide: Replace arch_deref_entry_point() with dereference_function_descriptor()
` [PATCH -tip v3 03/11] kprobes: treewide: Remove trampoline_address from kretprobe_trampoline_handler()
` [PATCH -tip v3 04/11] kprobes: Add kretprobe_find_ret_addr() for searching return address
` [PATCH -tip v3 05/11] x86/kprobes: Add UNWIND_HINT_FUNC on kretprobe_trampoline code
` [PATCH -tip v3 06/11] ARC: Add instruction_pointer_set() API
` [PATCH -tip v3 07/11] ia64: "
` [PATCH -tip v3 08/11] kprobes: Setup instruction pointer in __kretprobe_trampoline_handler
` [PATCH -tip v3 09/11] x86/kprobes: Push a fake return address at kretprobe_trampoline
` [PATCH -tip v3 10/11] x86/unwind: Recover kretprobe trampoline entry
` [PATCH -tip v3 11/11] tracing: Show kretprobe unknown indicator only for kretprobe_trampoline

[PATCH bpf v2 0/2] libbpf: Fix BTF dump of pointer-to-array-of-struct
 2021-03-19 11:25 UTC  (3+ messages)
` [PATCH bpf v2 1/2] "
` [PATCH bpf v2 2/2] selftests/bpf: Add selftest for pointer-to-array-of-struct BTF dump

[PATCH bpf] libbpf: Fix BTF dump of pointer-to-array-of-struct
 2021-03-19 10:22 UTC  (3+ messages)

[PATCH net] net: sched: fix packet stuck problem for lockless qdisc
 2021-03-19  9:25 UTC  (2+ messages)
` [Linuxarm] "

[PATCH bpf-next 00/15] Support calling kernel function
 2021-03-19  5:40 UTC  (31+ messages)
` [PATCH bpf-next 02/15] bpf: btf: Support parsing extern func
` [PATCH bpf-next 03/15] bpf: Refactor btf_check_func_arg_match
` [PATCH bpf-next 04/15] bpf: Support bpf program calling kernel function
` [PATCH bpf-next 07/15] bpf: tcp: White list some tcp cong functions to be called by bpf-tcp-cc
` [PATCH bpf-next 08/15] libbpf: Refactor bpf_object__resolve_ksyms_btf_id
` [PATCH bpf-next 09/15] libbpf: Refactor codes for finding btf id of a kernel symbol
` [PATCH bpf-next 10/15] libbpf: Rename RELO_EXTERN to RELO_EXTERN_VAR
` [PATCH bpf-next 11/15] libbpf: Record extern sym relocation first
` [PATCH bpf-next 12/15] libbpf: Support extern kernel function
` [PATCH bpf-next 13/15] bpf: selftests: Rename bictcp to bpf_cubic
` [PATCH bpf-next 14/15] bpf: selftest: bpf_cubic and bpf_dctcp calling kernel functions
` [PATCH bpf-next 15/15] bpf: selftest: Add kfunc_call test

[RFC][PATCH] libbpf: support kprobe/kretprobe events in legacy environments
 2021-03-19  4:51 UTC  (6+ messages)
` [PATCH] libbpf: allow bpf object kern_version to be overridden

[BPF CO-RE clarification] Use CO-RE on older kernel versions
 2021-03-19  4:42 UTC  (11+ messages)

CLANG LTO compatibility issue with DEBUG_INFO_BTF
 2021-03-19  3:56 UTC  (2+ messages)

[PATCH bpf-next v2 0/2] bpf: fix NULL pointer dereference in
 2021-03-19  3:12 UTC  (3+ messages)
` [PATCH bpf-next v2 1/2] bpf: fix NULL pointer dereference in bpf_get_local_storage() helper
` [PATCH bpf-next v2 2/2] bpf: fix bpf_cgroup_storage_set() usage in test_run

[PATCH bpf-next 0/2] bpf: fix NULL pointer dereference in
 2021-03-19  2:40 UTC  (6+ messages)
` [PATCH bpf-next 1/2] bpf: fix NULL pointer dereference in bpf_get_local_storage() helper
` [PATCH bpf-next 2/2] bpf: fix bpf_cgroup_storage_set() usage in test_run

[PATCH bpf-next v2] bpf: Simplify expression for identify bpf mem type
 2021-03-19  1:58 UTC  (3+ messages)

test_ima passing only first time
 2021-03-18 23:37 UTC  (4+ messages)

[PATCH 8/9] bpf: Fix typo "accesible"
 2021-03-18 20:22 UTC 

deadlock bug related to bpf,audit subsystems
 2021-03-18 18:19 UTC  (5+ messages)

[Patch bpf-next v5 00/11] sockmap: introduce BPF_SK_SKB_VERDICT and support UDP
 2021-03-18 16:40 UTC  (4+ messages)
` [Patch bpf-next v5 06/11] sock: introduce sk->sk_prot->psock_update_sk_prot()

[PATCH] selftests/bpf: fix warning comparing pointer to 0
 2021-03-18 16:23 UTC  (2+ messages)

[PATCH bpf] selftest/bpf: Add a test to check trampoline freeing logic
 2021-03-18 16:20 UTC  (2+ messages)

[syzbot] BUG: unable to handle kernel access to user memory in sock_ioctl
 2021-03-18 15:54 UTC  (10+ messages)

[PATCH v3 bpf-next] bpf: devmap: move drop error path to devmap for XDP_REDIRECT
 2021-03-18 15:50 UTC  (3+ messages)

[PATCHv2 bpf-next 0/4] xdp: extend xdp_redirect_map with broadcast support
 2021-03-18 14:19 UTC  (6+ messages)
` [PATCHv2 bpf-next 2/4] "

[PATCH] virtio_net: replace if (cond) BUG() with BUG_ON()
 2021-03-18  8:18 UTC  (2+ messages)

[PATCH v3 bpf-next 00/12] BPF static linking
 2021-03-18  6:31 UTC  (13+ messages)
` [PATCH v3 bpf-next 01/12] libbpf: expose btf_type_by_id() internally
` [PATCH v3 bpf-next 02/12] libbpf: generalize BTF and BTF.ext type ID and strings iteration
` [PATCH v3 bpf-next 03/12] libbpf: rename internal memory-management helpers
` [PATCH v3 bpf-next 04/12] libbpf: extract internal set-of-strings datastructure APIs
` [PATCH v3 bpf-next 05/12] libbpf: add generic BTF type shallow copy API
` [PATCH v3 bpf-next 06/12] libbpf: add BPF static linker APIs
` [PATCH v3 bpf-next 07/12] libbpf: add BPF static linker BTF and BTF.ext support
` [PATCH v3 bpf-next 08/12] bpftool: add ability to specify custom skeleton object name
` [PATCH v3 bpf-next 09/12] bpftool: add `gen object` command to perform BPF static linking
` [PATCH v3 bpf-next 10/12] selftests/bpf: re-generate vmlinux.h and BPF skeletons if bpftool changed
` [PATCH v3 bpf-next 11/12] selftests/bpf: pass all BPF .o's through BPF static linker
` [PATCH v3 bpf-next 12/12] selftests/bpf: add multi-file statically linked BPF object file test

[PATCH bpf-next v3] bpf: net: emit anonymous enum with BPF_TCP_CLOSE value explicitly
 2021-03-18  3:29 UTC  (2+ messages)

[PATCH v3 bpf-next 0/2] Provide NULL and KERNEL_VERSION macros in bpf_helpers.h
 2021-03-18  3:28 UTC  (4+ messages)
` [PATCH v3 bpf-next 1/2] libbpf: provide "
` [PATCH v3 bpf-next 2/2] selftests/bpf: drop custom NULL #define in skb_pkt_end selftest

[PATCH bpf-next] bpf: Remove insn_buf[] declaration in inner block
 2021-03-18  2:48 UTC 

[PATCH v2] MIPS/bpf: Enable bpf_probe_read{, str}() on MIPS again
 2021-03-18  2:29 UTC 

pull-request: bpf 2021-03-18
 2021-03-18  0:36 UTC 

[PATCH bpf-next v2] libbpf: use SOCK_CLOEXEC when opening the netlink socket
 2021-03-18  0:00 UTC  (3+ messages)

[PATCH] libbpf: Fix error path in bpf_object__elf_init()
 2021-03-17 23:50 UTC  (2+ messages)

[PATCH bpf] bpf: Fix fexit trampoline
 2021-03-17 23:30 UTC  (2+ messages)

[PATCH] MIPS/bpf: Enable bpf_probe_read{, str}() on MIPS again
 2021-03-17 23:08 UTC  (4+ messages)

[PATCH v2 bpf-next 00/11] BPF static linking
 2021-03-17 22:10 UTC  (9+ messages)
` [PATCH v2 bpf-next 07/11] libbpf: add BPF static linker BTF and BTF.ext support
` [PATCH v2 bpf-next 10/11] selftests/bpf: pass all BPF .o's through BPF static linker

[PATCH bpf-next] bpf: Simplify expression for identify bpf mem type
 2021-03-17 19:51 UTC  (2+ messages)

bpf timer design
 2021-03-17 18:20 UTC  (6+ messages)

[PATCH v2 bpf-next 0/4] Generate NULL in vmlinux.h
 2021-03-17 18:15 UTC  (5+ messages)
` [PATCH v2 bpf-next 1/4] bpftool: generate NULL definition "
` [PATCH v2 bpf-next 2/4] selftests/bpf: drop custom NULL #define in skb_pkt_end selftest

[PATCH bpf-next v2] bpf: net: emit anonymous enum with BPF_TCP_CLOSE value explicitly
 2021-03-17 16:59 UTC  (6+ messages)

[PATCH 00/17] Add support for Clang CFI
 2021-03-17 16:05 UTC  (4+ messages)
` [PATCH 06/17] kthread: cfi: disable callback pointer check with modules

[PATCH] libbpf: use SOCK_CLOEXEC when opening the netlink socket
 2021-03-17 11:07 UTC  (2+ messages)

[PATCH v3 net-next 0/6] skbuff: micro-optimize flow dissection
 2021-03-17 11:02 UTC  (6+ messages)
` [PATCH v3 net-next 4/6] linux/etherdevice.h: misc trailing whitespace cleanup

[PATCH bpf-next 0/5] Add a snprintf eBPF helper
 2021-03-17 10:32 UTC  (8+ messages)
` [PATCH bpf-next 1/5] bpf: Add a ARG_PTR_TO_CONST_STR argument type


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