bpf.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2019-03-12 02:11:14 to 2019-03-18 17:19:54 UTC [more...]

[PATCH v12 00/13] arm64: untag user pointers passed to the kernel
 2019-03-18 17:17 UTC  (14+ messages)
` [PATCH v12 01/13] uaccess: add untagged_addr definition for other arches
` [PATCH v12 02/13] arm64: untag user pointers in access_ok and __uaccess_mask_ptr
` [PATCH v12 03/13] lib, arm64: untag user pointers in strn*_user
` [PATCH v12 04/13] mm, arm64: untag user pointers passed to memory syscalls
` [PATCH v12 05/13] mm, arm64: untag user pointers in mm/gup.c
` [PATCH v12 06/13] fs, arm64: untag user pointers in copy_mount_options
` [PATCH v12 07/13] fs, arm64: untag user pointers in fs/userfaultfd.c
` [PATCH v12 08/13] net, arm64: untag user pointers in tcp_zerocopy_receive
` [PATCH v12 09/13] kernel, arm64: untag user pointers in prctl_set_mm*
` [PATCH v12 10/13] tracing, arm64: untag user pointers in seq_print_user_ip
` [PATCH v12 11/13] uprobes, arm64: untag user pointers in find_active_uprobe
` [PATCH v12 12/13] bpf, arm64: untag user pointers in stack_map_get_build_id_offset
` [PATCH v12 13/13] selftests, arm64: add a selftest for passing tagged pointers to kernel

[PATCH v11 00/14] arm64: untag user pointers passed to the kernel
 2019-03-18 16:59 UTC  (28+ messages)
` [PATCH v11 01/14] uaccess: add untagged_addr definition for other arches
` [PATCH v11 02/14] arm64: untag user pointers in access_ok and __uaccess_mask_ptr
` [PATCH v11 03/14] lib, arm64: untag user pointers in strn*_user
` [PATCH v11 04/14] mm, arm64: untag user pointers passed to memory syscalls
` [PATCH v11 05/14] mm, arm64: untag user pointers in mm/gup.c
` [PATCH v11 06/14] fs, arm64: untag user pointers in copy_mount_options
` [PATCH v11 07/14] fs, arm64: untag user pointers in fs/userfaultfd.c
` [PATCH v11 08/14] net, arm64: untag user pointers in tcp_zerocopy_receive
` [PATCH v11 09/14] kernel, arm64: untag user pointers in prctl_set_mm*
` [PATCH v11 10/14] tracing, arm64: untag user pointers in seq_print_user_ip
` [PATCH v11 11/14] uprobes, arm64: untag user pointers in find_active_uprobe
` [PATCH v11 12/14] bpf, arm64: untag user pointers in stack_map_get_build_id_offset
` [PATCH v11 13/14] arm64: update Documentation/arm64/tagged-pointers.txt
` [PATCH v11 14/14] selftests, arm64: add a selftest for passing tagged pointers to kernel

[PATCH v9 perf,bpf 00/15] perf annotation of BPF programs
 2019-03-18 16:43 UTC  (40+ messages)
` [PATCH v9 perf,bpf 01/15] perf-record: replace option --bpf-event with --no-bpf-event
` [PATCH v9 perf,bpf 02/15] bpf: libbpf: introduce bpf_program__get_prog_info_linear()
` [PATCH v9 perf,bpf 03/15] bpf: bpftool: use bpf_program__get_prog_info_linear() in prog.c:do_dump()
` [PATCH v9 perf,bpf 04/15] perf, bpf: synthesize bpf events with bpf_program__get_prog_info_linear()
` [PATCH v9 perf,bpf 05/15] perf: change prototype of perf_event__synthesize_bpf_events()
` [PATCH v9 perf,bpf 06/15] perf, bpf: save bpf_prog_info in a rbtree in perf_env
` [PATCH v9 perf,bpf 07/15] perf, bpf: save bpf_prog_info information as headers to perf.data
` [PATCH v9 perf,bpf 08/15] perf, bpf: save btf in a rbtree in perf_env
` [PATCH v9 perf,bpf 09/15] perf, bpf: save btf information as headers to perf.data
` [PATCH v9 perf,bpf 10/15] perf-top: add option --no-bpf-event
` [PATCH v9 perf,bpf 11/15] perf: add -lopcodes to feature-libbfd
` [PATCH v9 perf,bpf 12/15] perf, bpf: enable annotation of bpf program
` [PATCH v9 perf,bpf 13/15] perf, bpf: process PERF_BPF_EVENT_PROG_LOAD for annotation
` [PATCH v9 perf,bpf 14/15] perf: introduce side band thread
` [PATCH v9 perf,bpf 15/15] perf, bpf: save bpf_prog_info and btf of short living bpf programs

[PATCH 00/16] fix some perf issues detected by ASan
 2019-03-18 16:16 UTC  (21+ messages)
` [PATCH 01/16] perf: add doc for how to build perf with Asan and UBSan
` [PATCH 02/16] perf: list: fix memory leak in function is_event_supported
` [PATCH 03/16] perf: fix errors under optimization level '-Og'
` [PATCH 04/16] perf: fix an error in config template
` [PATCH 05/16] perf: fix a memory leak in collect_config
` [PATCH 06/16] perf: fix memory leak in print_sdt_events()
` [PATCH 07/16] perf: top: fix heap-use-after-free issue
` [PATCH 08/16] perf: top: fix error handing in cmd_top()
` [PATCH 09/16] perf: missed a map__put() in error case
` [PATCH 10/16] perf: remove map from names tree in __maps__remove
` [PATCH 11/16] perf: purge all maps from the names tree
` [PATCH 12/16] perf: top: fix global-buffer-overflow issue
` [PATCH 13/16] perf: free all counts in perf_evsel__exit
` [PATCH 14/16] perf: fix a memory leak of cpu_map object
` [PATCH 15/16] perf: fix memory leak by expr__find_other
` [PATCH 16/16] perf: fix a memory leak in test__perf_evsel__tp_sched_test

[PATCH v3 bpf] bpf: Try harder when allocating memory for large maps
 2019-03-18 15:52 UTC  (3+ messages)

pull-request: bpf 2019-03-16
 2019-03-16 19:40 UTC  (2+ messages)

[PATCH 0/2] bpf: context casting for tail call and gtrace prog type
 2019-03-16  1:49 UTC  (12+ messages)

[PATCH bpf] xsk: fix umem memory leak on cleanup
 2019-03-16  0:31 UTC  (2+ messages)

[PATCH] powerpc: bpf: Fix generation of load/store DW instructions
 2019-03-16  0:30 UTC  (2+ messages)

[PATCH net-next] selftests: bpf: modify urandom_read and link it non-statically
 2019-03-15 22:05 UTC  (6+ messages)

[PATCH bpf] bpf: make bpf_skb_ecn_set_ce callable from BPF_PROG_TYPE_SCHED_ACT
 2019-03-15 20:42 UTC  (4+ messages)

[PATCH v2 0/8] Allow checking SYN cookies from XDP and tc cls act
 2019-03-15 20:42 UTC  (10+ messages)
  ` [PATCH v2 1/8] bpf: track references based on is_acquire_func
  ` [PATCH v2 2/8] bpf: allow helpers to return PTR_TO_SOCK_COMMON
  ` [PATCH v2 3/8] bpf: add skc_lookup_tcp helper
  ` [PATCH v2 4/8] bpf: add helper to check for a valid SYN cookie
  ` [PATCH v2 5/8] tools: update include/uapi/linux/bpf.h
  ` [PATCH v2 6/8] selftests/bpf: allow specifying helper for BPF_SK_LOOKUP
  ` [PATCH v2 7/8] selftests/bpf: test references to sock_common
  ` [PATCH v2 8/8] selftests/bpf: add tests for bpf_tcp_check_syncookie and bpf_skc_lookup_tcp

[PATCH 1/1] bpftool: Allow referring to maps by its name
 2019-03-15 20:25 UTC  (7+ messages)

[PATCH bpf-next] kbuild: add ability to generate BTF type info for vmlinux
 2019-03-15 20:17 UTC 

bpf jit PPC64 (BE) test_verifier PTR_TO_STACK store/load failure
 2019-03-15 13:16 UTC  (4+ messages)

[PATCH rfc v3 bpf-next 0/9] BPF support for global data
 2019-03-14 22:14 UTC  (13+ messages)
` [PATCH rfc v3 bpf-next 1/9] bpf: implement lookup-free direct value access for maps
` [PATCH rfc v3 bpf-next 2/9] bpf: add program side {rd,wr}only support "
` [PATCH rfc v3 bpf-next 4/9] bpf, obj: allow . char as part of the name
` [PATCH rfc v3 bpf-next 6/9] bpf, libbpf: refactor relocation handling
` [PATCH rfc v3 bpf-next 7/9] bpf, libbpf: support global data/bss/rodata sections

[PATCH bpf 0/3] fixes and additions for BPF helpers doc
 2019-03-14 21:08 UTC  (5+ messages)
` [PATCH bpf 1/3] bpf: fix documentation for eBPF helpers
` [PATCH bpf 2/3] bpf: add documentation for helpers bpf_spin_lock(), bpf_spin_unlock()
` [PATCH bpf 3/3] tools: bpf: synchronise BPF UAPI header with tools

[PATCH bpf-next 0/2] Add fwd enum resolution for btf_dedup()
 2019-03-14 21:01 UTC  (7+ messages)
` [PATCH bpf-next 1/2] btf: resolve enum fwds in btf_dedup

[PATCH perf,bpf 0/2] show bpf program info from perf.data header
 2019-03-14 18:29 UTC  (4+ messages)
` [PATCH perf,bpf 1/2] perf, bpf: refactor perf_event__synthesize_one_bpf_prog()
` [PATCH perf,bpf 2/2] perf, bpf: show BPF program name in print_bpf_prog_info()

[PATCH perf,bpf 2/2] perf, bpf: show more BPF program info in print_bpf_prog_info()
 2019-03-14 18:27 UTC 

[PATCH v2] proc/sysctl: Fix NULL pointer dereference in put_links
 2019-03-14 13:34 UTC  (2+ messages)

[PATCH] proc/sysctl: Fix NULL pointer dereference in put_links
 2019-03-14  5:48 UTC  (6+ messages)

[PATCH pahole] loaders: strip away volatile/const/restrict when fixing bitfields
 2019-03-13 21:21 UTC  (2+ messages)

[PATCH AUTOSEL 4.20 24/60] bpf/test_run: fix unkillable BPF_PROG_TEST_RUN
 2019-03-13 19:10 UTC  (8+ messages)
` [PATCH AUTOSEL 4.20 41/60] i40e: fix potential RX buffer starvation for AF_XDP
` [PATCH AUTOSEL 4.20 42/60] ixgbe: "
` [PATCH AUTOSEL 4.20 46/60] i40e: fix XDP_REDIRECT/XDP xmit ring cleanup race
` [PATCH AUTOSEL 4.20 47/60] ixgbe: don't do any AF_XDP zero-copy transmit if netif is not OK
` [PATCH AUTOSEL 4.20 51/60] bpf, lpm: fix lookup bug in map_delete_elem
` [PATCH AUTOSEL 4.20 54/60] nfp: bpf: fix code-gen bug on BPF_ALU | BPF_XOR | BPF_K
` [PATCH AUTOSEL 4.20 55/60] nfp: bpf: fix ALU32 high bits clearance bug

[PATCH AUTOSEL 4.19 06/48] bpf: only adjust gso_size on bytestream protocols
 2019-03-13 19:12 UTC  (5+ messages)
` [PATCH AUTOSEL 4.19 07/48] bpf: fix lockdep false positive in stackmap
` [PATCH AUTOSEL 4.19 39/48] bpf, lpm: fix lookup bug in map_delete_elem
` [PATCH AUTOSEL 4.19 42/48] nfp: bpf: fix code-gen bug on BPF_ALU | BPF_XOR | BPF_K
` [PATCH AUTOSEL 4.19 43/48] nfp: bpf: fix ALU32 high bits clearance bug

[PATCH AUTOSEL 4.14 30/33] nfp: bpf: fix code-gen bug on BPF_ALU | BPF_XOR | BPF_K
 2019-03-13 19:15 UTC  (2+ messages)
` [PATCH AUTOSEL 4.14 31/33] nfp: bpf: fix ALU32 high bits clearance bug

[PATCH AUTOSEL 4.9 21/24] nfp: bpf: fix code-gen bug on BPF_ALU | BPF_XOR | BPF_K
 2019-03-13 19:16 UTC  (2+ messages)
` [PATCH AUTOSEL 4.9 22/24] nfp: bpf: fix ALU32 high bits clearance bug

[PATCH v2 1/3] MIPS: uasm: Add div, mul and sel instructions for mipsr6
 2019-03-12 22:48 UTC  (3+ messages)
` [PATCH v2 2/3] MIPS: eBPF: Provide eBPF support for MIPS64R6
` [PATCH v2 3/3] MIPS: eBPF: Initial eBPF support for MIPS32 architecture

[RFC][PATCH] Export supported trace features in debugfs
 2019-03-12 16:19 UTC  (4+ messages)

[LSF/MM ATTEND] BPF track
 2019-03-12 16:01 UTC 

[PATCH v7 perf,bpf 00/15] perf annotation of BPF programs
 2019-03-12 11:20 UTC  (6+ messages)
` [PATCH v7 perf,bpf 02/15] bpf: libbpf: introduce bpf_program__get_prog_info_linear()

[PATCH] bpf: Try harder when allocating memory for large maps
 2019-03-12  5:49 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).