bpf.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2019-12-09 17:31:57 to 2019-12-11 02:58:15 UTC [more...]

[PATCH v9 00/25] mm/gup: track dma-pinned pages: FOLL_PIN
 2019-12-11  2:53 UTC  (26+ messages)
` [PATCH v9 01/25] mm/gup: factor out duplicate code from four routines
` [PATCH v9 02/25] mm/gup: move try_get_compound_head() to top, fix minor issues
` [PATCH v9 03/25] mm: Cleanup __put_devmap_managed_page() vs ->page_free()
` [PATCH v9 04/25] mm: devmap: refactor 1-based refcounting for ZONE_DEVICE pages
` [PATCH v9 05/25] goldish_pipe: rename local pin_user_pages() routine
` [PATCH v9 06/25] mm: fix get_user_pages_remote()'s handling of FOLL_LONGTERM
` [PATCH v9 07/25] vfio: fix FOLL_LONGTERM use, simplify get_user_pages_remote() call
` [PATCH v9 08/25] mm/gup: allow FOLL_FORCE for get_user_pages_fast()
` [PATCH v9 09/25] IB/umem: use get_user_pages_fast() to pin DMA pages
` [PATCH v9 10/25] mm/gup: introduce pin_user_pages*() and FOLL_PIN
` [PATCH v9 11/25] goldish_pipe: convert to pin_user_pages() and put_user_page()
` [PATCH v9 12/25] IB/{core,hw,umem}: set FOLL_PIN via pin_user_pages*(), fix up ODP
` [PATCH v9 13/25] mm/process_vm_access: set FOLL_PIN via pin_user_pages_remote()
` [PATCH v9 14/25] drm/via: set FOLL_PIN via pin_user_pages_fast()
` [PATCH v9 15/25] fs/io_uring: set FOLL_PIN via pin_user_pages()
` [PATCH v9 16/25] net/xdp: "
` [PATCH v9 17/25] media/v4l2-core: set pages dirty upon releasing DMA buffers
` [PATCH v9 18/25] media/v4l2-core: pin_user_pages (FOLL_PIN) and put_user_page() conversion
` [PATCH v9 19/25] vfio, mm: "
` [PATCH v9 20/25] powerpc: book3s64: convert to pin_user_pages() and put_user_page()
` [PATCH v9 21/25] mm/gup_benchmark: use proper FOLL_WRITE flags instead of hard-coding "1"
` [PATCH v9 22/25] mm, tree-wide: rename put_user_page*() to unpin_user_page*()
` [PATCH v9 23/25] mm/gup: track FOLL_PIN pages
` [PATCH v9 24/25] mm/gup_benchmark: support pin_user_pages() and related calls
` [PATCH v9 25/25] selftests/vm: run_vmtests: invoke gup_benchmark with basic FOLL_PIN coverage

[PATCH bpf-next 0/5] bpf: Support replacing cgroup-bpf program in MULTI mode
 2019-12-11  2:33 UTC  (6+ messages)
` [PATCH bpf-next 1/5] bpf: Simplify __cgroup_bpf_attach
` [PATCH bpf-next 2/5] bpf: Remove unused new_flags in hierarchy_allows_attach()
` [PATCH bpf-next 3/5] bpf: Support replacing cgroup-bpf program in MULTI mode
` [PATCH bpf-next 4/5] libbpf: Introduce bpf_prog_attach_xattr
` [PATCH bpf-next 5/5] selftests/bpf: Cover BPF_F_REPLACE in test_cgroup_attach

[RFC v1 PATCH 0/7] bpf: Make RT friendly
 2019-12-11  1:28 UTC  (2+ messages)

[PATCH v8 00/26] mm/gup: track dma-pinned pages: FOLL_PIN
 2019-12-11  0:49 UTC  (38+ messages)
` [PATCH v8 01/26] mm/gup: factor out duplicate code from four routines
` [PATCH v8 02/26] mm/gup: move try_get_compound_head() to top, fix minor issues
` [PATCH v8 03/26] mm: Cleanup __put_devmap_managed_page() vs ->page_free()
` [PATCH v8 04/26] mm: devmap: refactor 1-based refcounting for ZONE_DEVICE pages
` [PATCH v8 05/26] goldish_pipe: rename local pin_user_pages() routine
` [PATCH v8 06/26] mm: fix get_user_pages_remote()'s handling of FOLL_LONGTERM
` [PATCH v8 07/26] vfio: fix FOLL_LONGTERM use, simplify get_user_pages_remote() call
` [PATCH v8 08/26] mm/gup: allow FOLL_FORCE for get_user_pages_fast()
` [PATCH v8 09/26] IB/umem: use get_user_pages_fast() to pin DMA pages
` [PATCH v8 10/26] mm/gup: introduce pin_user_pages*() and FOLL_PIN
` [PATCH v8 11/26] goldish_pipe: convert to pin_user_pages() and put_user_page()
` [PATCH v8 12/26] IB/{core,hw,umem}: set FOLL_PIN via pin_user_pages*(), fix up ODP
` [PATCH v8 13/26] mm/process_vm_access: set FOLL_PIN via pin_user_pages_remote()
` [PATCH v8 14/26] drm/via: set FOLL_PIN via pin_user_pages_fast()
` [PATCH v8 15/26] fs/io_uring: set FOLL_PIN via pin_user_pages()
` [PATCH v8 16/26] net/xdp: "
` [PATCH v8 17/26] media/v4l2-core: set pages dirty upon releasing DMA buffers
` [PATCH v8 18/26] media/v4l2-core: pin_user_pages (FOLL_PIN) and put_user_page() conversion
` [PATCH v8 19/26] vfio, mm: "
` [PATCH v8 20/26] powerpc: book3s64: convert to pin_user_pages() and put_user_page()
` [PATCH v8 21/26] mm/gup_benchmark: use proper FOLL_WRITE flags instead of hard-coding "1"
` [PATCH v8 22/26] mm, tree-wide: rename put_user_page*() to unpin_user_page*()
` [PATCH v8 23/26] mm/gup: pass flags arg to __gup_device_* functions
` [PATCH v8 24/26] mm/gup: track FOLL_PIN pages
` [PATCH v8 25/26] mm/gup_benchmark: support pin_user_pages() and related calls
` [PATCH v8 26/26] selftests/vm: run_vmtests: invoke gup_benchmark with basic FOLL_PIN coverage

[PATCH bpf 0/3] bpf: Make BPF trampoline friendly to ftrace
 2019-12-10 23:49 UTC  (7+ messages)
` [PATCH bpf 1/3] ftrace: Fix function_graph tracer interaction with BPF trampoline

[PATCH] bpf: Fix build in minimal configurations, again
 2019-12-10 23:34 UTC  (2+ messages)

[PATCH bpf 0/2] Limit tail calls to 33 in all JIT compilers
 2019-12-10 23:23 UTC  (8+ messages)
` [PATCH bpf 1/2] bpf, riscv: limit to 33 tail calls
` [PATCH bpf 2/2] bpf, mips: "

[PATCH bpf-next 00/15] Add code-generated BPF object skeleton support
 2019-12-10 22:59 UTC  (27+ messages)
` [PATCH bpf-next 01/15] libbpf: don't require root for bpf_object__open()
` [PATCH bpf-next 02/15] libbpf: add generic bpf_program__attach()
` [PATCH bpf-next 03/15] libbpf: move non-public APIs from libbpf.h to libbpf_internal.h
` [PATCH bpf-next 04/15] libbpf: add BPF_EMBED_OBJ macro for embedding BPF .o files
` [PATCH bpf-next 05/15] libbpf: expose field/var declaration emitting API internally
` [PATCH bpf-next 06/15] libbpf: expose BPF program's function name
` [PATCH bpf-next 07/15] libbpf: refactor global data map initialization
` [PATCH bpf-next 08/15] libbpf: postpone BTF ID finding for TRACING programs to load phase
` [PATCH bpf-next 09/15] libbpf: reduce log level of supported section names dump
` [PATCH bpf-next 10/15] libbpf: add experimental BPF object skeleton support
` [PATCH bpf-next 11/15] bpftool: add skeleton codegen command
` [PATCH bpf-next 12/15] selftests/bpf: add BPF skeletons selftests and convert attach_probe.c
` [PATCH bpf-next 13/15] selftests/bpf: convert few more selftest to skeletons
` [PATCH bpf-next 14/15] selftests/bpf: add test validating data section to struct convertion layout
` [PATCH bpf-next 15/15] bpftool: add `gen skeleton` BASH completions

[PATCH bpf v2] bpftool: Don't crash on missing jited insns or ksyms
 2019-12-10 22:53 UTC  (8+ messages)

[PATCHv3] bpf: Emit audit messages upon successful prog load and unload
 2019-12-10 22:45 UTC  (7+ messages)

[PATCH] libbpf: fix readelf output parsing on powerpc with recent binutils
 2019-12-10 22:25 UTC  (5+ messages)

[PATCH AUTOSEL 4.14 022/130] selftests/bpf: Correct path to include msg + path
 2019-12-10 22:02 UTC  (2+ messages)
` [PATCH AUTOSEL 4.14 091/130] perf parse: If pmu configuration fails free terms

[PATCH AUTOSEL 5.4 056/350] selftests/bpf: Correct path to include msg + path
 2019-12-10 21:28 UTC  (20+ messages)
` [PATCH AUTOSEL 5.4 079/350] selftests/bpf: Fix btf_dump padding test case
` [PATCH AUTOSEL 5.4 080/350] libbpf: Fix struct end padding in btf_dump
` [PATCH AUTOSEL 5.4 081/350] libbpf: Fix passing uninitialized bytes to setsockopt
` [PATCH AUTOSEL 5.4 123/350] bpf/stackmap: Fix deadlock with rq_lock in bpf_get_stack()
` [PATCH AUTOSEL 5.4 132/350] selftests/bpf: Make a copy of subtest name
` [PATCH AUTOSEL 5.4 193/350] libbpf: Fix error handling in bpf_map__reuse_fd()
` [PATCH AUTOSEL 5.4 229/350] perf tools: Splice events onto evlist even on error
` [PATCH AUTOSEL 5.4 235/350] perf parse: If pmu configuration fails free terms
` [PATCH AUTOSEL 5.4 242/350] libbpf: Fix negative FD close() in xsk_setup_xdp_prog()
` [PATCH AUTOSEL 5.4 243/350] s390/bpf: Use kvcalloc for addrs array
` [PATCH AUTOSEL 5.4 267/350] bpf, testing: Workaround a verifier failure for test_progs
` [PATCH AUTOSEL 5.4 306/350] selftests, bpf: Fix test_tc_tunnel hanging
` [PATCH AUTOSEL 5.4 307/350] selftests, bpf: Workaround an alu32 sub-register spilling issue
` [PATCH AUTOSEL 5.4 313/350] net-af_xdp: Use correct number of channels from ethtool
` [PATCH AUTOSEL 5.4 326/350] bpf: Switch bpf_map ref counter to atomic64_t so bpf_map_inc() never fails
  ` [oss-drivers] "
` [PATCH AUTOSEL 5.4 327/350] libbpf: Fix call relocation offset calculation bug
` [PATCH AUTOSEL 5.4 343/350] tools, bpf: Fix build for 'make -s tools/bpf O=<dir>'
` [PATCH AUTOSEL 5.4 346/350] bpf: Provide better register bounds after jmp32 instructions

[PATCH AUTOSEL 4.19 026/177] selftests/bpf: Correct path to include msg + path
 2019-12-10 21:31 UTC  (5+ messages)
` [PATCH AUTOSEL 4.19 065/177] bpf/stackmap: Fix deadlock with rq_lock in bpf_get_stack()
` [PATCH AUTOSEL 4.19 096/177] libbpf: Fix error handling in bpf_map__reuse_fd()
` [PATCH AUTOSEL 4.19 117/177] perf tools: Splice events onto evlist even on error
` [PATCH AUTOSEL 4.19 121/177] perf parse: If pmu configuration fails free terms

[PATCH bpf-next 0/3] bpftool: match programs and maps by names
 2019-12-10 21:04 UTC  (9+ messages)
` [PATCH bpf-next 1/3] bpftool: match several programs with same tag
` [PATCH bpf-next 2/3] bpftool: match programs by name
` [PATCH bpf-next 3/3] bpftool: match maps "

[PATCH bpf-next v3 0/6] Introduce the BPF dispatcher
 2019-12-10 20:04 UTC  (15+ messages)
` [PATCH bpf-next v3 2/6] bpf: introduce "
` [PATCH bpf-next v3 5/6] selftests: bpf: add xdp_perf test

[PATCH bpf-next] bpf: switch to offsetofend in BPF_PROG_TEST_RUN
 2019-12-10 19:34 UTC  (2+ messages)

[PATCH bpf] bpftool: Don't crash on missing jited insns or ksyms
 2019-12-10 18:11 UTC  (3+ messages)

[PATCH bpf 0/4] Fix concurrency issues between XSK wakeup and control path using RCU
 2019-12-10 14:26 UTC  (4+ messages)
` [PATCH bpf 3/4] net/i40e: Fix concurrency issues between config flow and XSK

Establishing /usr/lib/bpf as a convention for eBPF bytecode files?
 2019-12-10 10:26 UTC  (4+ messages)

[PATCH bpf-next 00/12] xsk: clean up ring access functions
 2019-12-10  9:04 UTC  (5+ messages)
` [PATCH bpf-next 02/12] xsk: consolidate to one single cached producer pointer

[PATCH bpf-next 0/8] riscv: BPF JIT fix, optimizations and far jumps support
 2019-12-10  7:02 UTC  (14+ messages)
` [PATCH bpf-next 2/8] riscv, bpf: add support for far branching
` [PATCH bpf-next 3/8] riscv, bpf: add support for far jumps and exits
` [PATCH bpf-next 4/8] riscv, bpf: optimize BPF tail calls
` [PATCH bpf-next 5/8] riscv, bpf: provide RISC-V specific JIT image alloc/free
` [PATCH bpf-next 6/8] riscv, bpf: optimize calls
` [PATCH bpf-next 7/8] riscv, bpf: add missing uapi header for BPF_PROG_TYPE_PERF_EVENT programs
` [PATCH bpf-next 8/8] riscv, perf: add arch specific perf_arch_bpf_user_pt_regs

[PATCH bpf] libbpf: Bump libpf current version to v0.0.7
 2019-12-09 22:45 UTC  (2+ messages)
` [Potential Spoof] "


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