bpf.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2019-11-12 21:25:28 to 2019-11-15 05:56:49 UTC [more...]

[PATCH v5 00/24] mm/gup: track dma-pinned pages: FOLL_PIN
 2019-11-15  5:53 UTC  (17+ messages)
` [PATCH v5 05/24] mm: devmap: refactor 1-based refcounting for ZONE_DEVICE pages
` [PATCH v5 07/24] IB/umem: use get_user_pages_fast() to pin DMA pages
` [PATCH v5 09/24] vfio, mm: fix get_user_pages_remote() and FOLL_LONGTERM
` [PATCH v5 11/24] goldish_pipe: convert to pin_user_pages() and put_user_page()
` [PATCH v5 12/24] IB/{core,hw,umem}: set FOLL_PIN via pin_user_pages*(), fix up ODP
` [PATCH v5 14/24] drm/via: set FOLL_PIN via pin_user_pages_fast()
` [PATCH v5 15/24] fs/io_uring: set FOLL_PIN via pin_user_pages()
` [PATCH v5 16/24] net/xdp: "
` [PATCH v5 17/24] mm/gup: track FOLL_PIN pages
` [PATCH v5 18/24] media/v4l2-core: pin_user_pages (FOLL_PIN) and put_user_page() conversion
` [PATCH v5 19/24] vfio, mm: "
` [PATCH v5 20/24] powerpc: book3s64: convert to pin_user_pages() and put_user_page()
` [PATCH v5 21/24] mm/gup_benchmark: use proper FOLL_WRITE flags instead of hard-coding "1"
` [PATCH v5 22/24] mm/gup_benchmark: support pin_user_pages() and related calls
` [PATCH v5 23/24] selftests/vm: run_vmtests: invoke gup_benchmark with basic FOLL_PIN coverage
` [PATCH v5 24/24] mm, tree-wide: rename put_user_page*() to unpin_user_page*()

[PATCH v4 bpf-next 0/4] Add support for memory-mapping BPF array maps
 2019-11-15  5:43 UTC  (9+ messages)
` [PATCH v4 bpf-next 1/4] bpf: switch bpf_map ref counter to 64bit so bpf_map_inc never fails
` [PATCH v4 bpf-next 2/4] bpf: add mmap() support for BPF_MAP_TYPE_ARRAY
` [PATCH v4 bpf-next 3/4] libbpf: make global data internal arrays mmap()-able, if possible
` [PATCH v4 bpf-next 4/4] selftests/bpf: add BPF_TYPE_MAP_ARRAY mmap() tests

[PATCH rfc bpf-next 0/8] Optimize BPF tail calls for direct jumps
 2019-11-15  4:29 UTC  (11+ messages)
` [PATCH rfc bpf-next 1/8] bpf, x86: generalize and extend bpf_arch_text_poke "
` [PATCH rfc bpf-next 2/8] bpf: add bpf_prog_under_eviction helper
` [PATCH rfc bpf-next 3/8] bpf: move bpf_free_used_maps into sleepable section
` [PATCH rfc bpf-next 4/8] bpf: move owner type,jited info into array auxillary data
` [PATCH rfc bpf-next 5/8] bpf: add jit poke descriptor mock-up for jit images
` [PATCH rfc bpf-next 6/8] bpf: add poke dependency tracking for prog array maps
` [PATCH rfc bpf-next 7/8] bpf, x86: emit patchable direct jump as tail call
` [PATCH rfc bpf-next 8/8] bpf: constant map key tracking for prog array pokes

[PATCH bpf-next v3 1/5] bpf: Support chain calling multiple BPF programs after each other
 2019-11-15  2:13 UTC  (21+ messages)
              ` static and dynamic linking. Was: [PATCH bpf-next v3 1/5] bpf: Support chain calling multiple BPF

[RFC PATCH bpf-next 0/4] Introduce xdp_call.h and the BPF dispatcher
 2019-11-15  0:30 UTC  (18+ messages)
` [RFC PATCH bpf-next 1/4] bpf: teach bpf_arch_text_poke() jumps
` [RFC PATCH bpf-next 2/4] bpf: introduce BPF dispatcher
` [RFC PATCH bpf-next 3/4] xdp: introduce xdp_call
` [RFC PATCH bpf-next 4/4] i40e: start using xdp_call.h

[PATCH v4 bpf-next 00/20] Introduce BPF trampoline
 2019-11-14 23:39 UTC  (27+ messages)
` [PATCH v4 bpf-next 01/20] x86/alternatives: Teach text_poke_bp() to emulate instructions
` [PATCH v4 bpf-next 02/20] bpf: refactor x86 JIT into helpers
` [PATCH v4 bpf-next 03/20] bpf: Add bpf_arch_text_poke() helper
` [PATCH v4 bpf-next 04/20] bpf: Introduce BPF trampoline
` [PATCH v4 bpf-next 05/20] libbpf: Introduce btf__find_by_name_kind()
` [PATCH v4 bpf-next 06/20] libbpf: Add support to attach to fentry/fexit tracing progs
` [PATCH v4 bpf-next 07/20] selftest/bpf: Simple test for fentry/fexit
` [PATCH v4 bpf-next 08/20] bpf: Add kernel test functions for fentry testing
` [PATCH v4 bpf-next 09/20] selftests/bpf: Add test for BPF trampoline
` [PATCH v4 bpf-next 10/20] selftests/bpf: Add fexit tests "
` [PATCH v4 bpf-next 11/20] selftests/bpf: Add combined fentry/fexit test
` [PATCH v4 bpf-next 12/20] selftests/bpf: Add stress test for maximum number of progs
` [PATCH v4 bpf-next 13/20] bpf: Reserve space for BPF trampoline in BPF programs
` [PATCH v4 bpf-next 14/20] bpf: Fix race in btf_resolve_helper_id()
` [PATCH v4 bpf-next 15/20] bpf: Annotate context types
` [PATCH v4 bpf-next 16/20] bpf: Compare BTF types of functions arguments with actual types
` [PATCH v4 bpf-next 17/20] bpf: Support attaching tracing BPF program to other BPF programs
` [PATCH v4 bpf-next 18/20] libbpf: Add support for attaching BPF programs "
` [PATCH v4 bpf-next 19/20] selftests/bpf: Extend test_pkt_access test
` [PATCH v4 bpf-next 20/20] selftests/bpf: Add a test for attaching BPF prog to another BPF prog and subprog

[PATCH bpf-next] bpf: make bpf_jit_binary_alloc support alignment > 4
 2019-11-14 18:37 UTC  (5+ messages)

[PATCH bpf-next 1/2] samples/bpf: Remove duplicate option from xdpsock
 2019-11-14 16:28 UTC  (2+ messages)
` [PATCH bpf-next 2/2] samples/bpf: Add missing option to xdpsock usage

[RFC PATCH v2 bpf-next 00/15] xdp_flow: Flow offload to XDP
 2019-11-14 17:09 UTC  (22+ messages)

[PATCH bpf-next] s390/bpf: make sure JIT passes do not increase code size
 2019-11-14 15:18 UTC 

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

[PATCH net] bpf: doc: change right arguments for JIT example code
 2019-11-14  3:43 UTC 

[RFC bpf-next 0/3] bpf: adding map batch processing support
 2019-11-13 22:26 UTC  (3+ messages)

[PATCH v3 bpf-next 0/3] Add support for memory-mapping BPF array maps
 2019-11-13 21:14 UTC  (11+ messages)
` [PATCH v3 bpf-next 1/3] bpf: add mmap() support for BPF_MAP_TYPE_ARRAY
` [PATCH v3 bpf-next 2/3] libbpf: make global data internal arrays mmap()-able, if possible
` [PATCH v3 bpf-next 3/3] selftests/bpf: add BPF_TYPE_MAP_ARRAY mmap() tests

[PATCH v3 00/23] mm/gup: track dma-pinned pages: FOLL_PIN, FOLL_LONGTERM
 2019-11-13 20:28 UTC  (22+ messages)
` [PATCH v3 08/23] vfio, mm: fix get_user_pages_remote() and FOLL_LONGTERM

general protection fault in tcp_cleanup_ulp
 2019-11-13 16:50 UTC  (2+ messages)

[PATCH v2 bpf-next 0/3] Add support for memory-mapping BPF array maps
 2019-11-13  3:19 UTC  (8+ messages)
` [PATCH v2 bpf-next 1/3] bpf: add mmap() support for BPF_MAP_TYPE_ARRAY

[PATCH AUTOSEL 4.19 068/209] ixgbe: Fix ixgbe TX hangs with XDP_TX beyond queue limit
 2019-11-13  1:49 UTC  (5+ messages)
` [PATCH AUTOSEL 4.19 124/209] tc-testing: fix build of eBPF programs
` [PATCH AUTOSEL 4.19 135/209] xsk: proper AF_XDP socket teardown ordering
` [PATCH AUTOSEL 4.19 177/209] bpf: btf: Fix a missing check bug
` [PATCH AUTOSEL 4.19 178/209] net: fix generic XDP to handle if eth header was mangled

[PATCH AUTOSEL 4.14 042/115] ixgbe: Fix ixgbe TX hangs with XDP_TX beyond queue limit
 2019-11-13  1:55 UTC 

xdpsock poll with 5.2.21rt kernel
 2019-11-12 22:42 UTC 


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