bpf.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2019-11-11 13:39:59 to 2019-11-14 10:11:45 UTC [more...]

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

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

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

[PATCH bpf-next] bpf: make bpf_jit_binary_alloc support alignment > 4
 2019-11-13 17:00 UTC 

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  (14+ messages)
` [PATCH v2 bpf-next 1/3] bpf: add mmap() support for BPF_MAP_TYPE_ARRAY
` [PATCH v2 bpf-next 2/3] libbpf: make global data internal arrays mmap()-able, if possible

[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 

[PATCH v2 net-next] sfc: trace_xdp_exception on XDP failure
 2019-11-12 20:24 UTC  (3+ messages)

[PATCH net-next] sfc: trace_xdp_exception on XDP failure
 2019-11-12 19:37 UTC  (6+ messages)

KMSAN: uninit-value in __skb_flow_dissect (2)
 2019-11-12 15:54 UTC 

[PATCH v15 0/5] BPF: New helper to obtain namespace data from current task
 2019-11-12 15:18 UTC  (6+ messages)
` [PATCH v15 1/5] fs/nsfs.c: added ns_match
      ` [Review Request] "

KMSAN: uninit-value in __flow_hash_from_keys (2)
 2019-11-12 12:14 UTC 

[PATCH] samples: bpf: fix outdated README build command
 2019-11-12 11:48 UTC  (7+ messages)

[PATCH v5 08/10] perf tools: if pmu configuration fails free terms
 2019-11-12 11:17 UTC  (2+ messages)
` [tip: perf/core] perf parse: If "

[PATCH v5 05/10] perf tools: ensure config and str in terms are unique
 2019-11-12 11:17 UTC  (2+ messages)
` [tip: perf/core] perf parse: Ensure "

[PATCH v5 07/10] perf tools: before yyabort-ing free components
 2019-11-12 11:17 UTC  (2+ messages)
` [tip: perf/core] perf parse: Before "

[PATCH v5 01/10] perf tools: add parse events handle error
 2019-11-12 11:17 UTC  (2+ messages)
` [tip: perf/core] perf parse: Add "

[PATCH v4 4/9] perf tools: splice events onto evlist even on error
 2019-11-12 11:18 UTC  (2+ messages)
` [tip: perf/core] perf tools: Splice "

[PATCH v2 4/9] perf tools: move ALLOC_LIST into a function
 2019-11-12 11:18 UTC  (2+ messages)
` [tip: perf/core] perf tools: Move "

[PATCH v5 06/10] perf tools: add destructors for parse event terms
 2019-11-12 11:17 UTC  (2+ messages)
` [tip: perf/core] perf parse: Add "

[PATCH v2 5/9] perf tools: avoid a malloc for array events
 2019-11-12 11:18 UTC  (2+ messages)
` [tip: perf/core] perf tools: Avoid a malloc() "

[PATCH v5 09/10] perf tools: add a deep delete for parse event terms
 2019-11-12 11:17 UTC  (2+ messages)
` [tip: perf/core] perf parse: Add "

[PATCH v3 bpf-next 00/18] Introduce BPF trampoline
 2019-11-12  4:47 UTC  (9+ messages)
` [PATCH v3 bpf-next 15/18] bpf: Support attaching tracing BPF program to other BPF programs
` [PATCH v3 bpf-next 18/18] selftests/bpf: Add a test for attaching BPF prog to another BPF prog and subprog

[PATCH v2 00/18] mm/gup: track dma-pinned pages: FOLL_PIN, FOLL_LONGTERM
 2019-11-11 21:46 UTC  (4+ messages)
` [PATCH v2 04/18] media/v4l2-core: set pages dirty upon releasing DMA buffers

[PATCH] selftests: bpf: add missing object file to TEST_FILES
 2019-11-11 21:36 UTC  (2+ messages)

[PATCH -v5 00/17] Rewrite x86/ftrace to use text_poke (and more)
 2019-11-11 20:56 UTC  (4+ messages)

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

[PATCH v3 bpf-next 02/18] bpf: Add bpf_arch_text_poke() helper
 2019-11-11 16:10 UTC  (6+ messages)

[net-next PATCH] samples/bpf: adjust Makefile and README.rst
 2019-11-11 14:30 UTC  (3+ messages)

[PATCH bpf-next 1/2] selftests: bpf: test_lwt_ip_encap: add missing object file to TEST_FILES
 2019-11-11 14:22 UTC  (5+ messages)
` [PATCH bpf-next 2/2] selftests: bpf: test_tc_edt: "

net --> net-next merge
 2019-11-11 13:39 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).