BPF List
 help / color / mirror / Atom feed
 messages from 2023-07-10 21:58:31 to 2023-07-12 08:50:50 UTC [more...]

[PATCH bpf-next v9 0/3] bpf, x86: allow function arguments up to 12 for TRACING
 2023-07-12  8:47 UTC  (4+ messages)
` [PATCH bpf-next v9 1/3] bpf, x86: save/restore regs with BPF_DW size
` [PATCH bpf-next v9 2/3] bpf, x86: allow function arguments up to 12 for TRACING
` [PATCH bpf-next v9 3/3] selftests/bpf: add testcase for TRACING with 6+ arguments

[PATCH bpf-next] libbpf: only reset sec_def handler when necessary
 2023-07-12  8:40 UTC  (2+ messages)

[PATCH vhost v11 00/10] virtio core prepares for AF_XDP
 2023-07-12  8:38 UTC  (20+ messages)
` [PATCH vhost v11 03/10] virtio_ring: introduce virtqueue_set_premapped()
` [PATCH vhost v11 04/10] virtio_ring: support add premapped buf
` [PATCH vhost v11 05/10] virtio_ring: introduce virtqueue_dma_dev()
` [PATCH vhost v11 10/10] virtio_net: merge dma operation for one page

[PATCH net-next V1 0/4] virtio_net: add per queue interrupt coalescing support
 2023-07-12  8:34 UTC  (5+ messages)

W sprawie samochodu
 2023-07-12  8:06 UTC 

[PATCH] libbpf: Support POSIX regular expressions for multi kprobe
 2023-07-12  5:41 UTC  (2+ messages)

[RFC bpf-next v3 00/14] bpf: Netdev TX metadata
 2023-07-12  5:36 UTC  (14+ messages)
` [RFC bpf-next v3 09/14] net/mlx5e: Implement devtx kfuncs

[PATCH v2 00/13] parse-events clean up
 2023-07-12  5:01 UTC  (6+ messages)
` [PATCH v2 13/13] perf parse-events: Remove ABORT_ON

[PATCH RESEND bpf-next v8 0/3] bpf, x86: allow function arguments up to 12 for TRACING
 2023-07-12  4:47 UTC  (5+ messages)
` [PATCH RESEND bpf-next v8 3/3] selftests/bpf: add testcase for TRACING with 6+ arguments

[PATCH net] docs: netdev: update the URL of the status page
 2023-07-12  3:30 UTC  (3+ messages)

[PATCH v7 bpf-next 00/11] bpf: Support ->fill_link_info for kprobe_multi and perf_event links
 2023-07-12  3:20 UTC  (2+ messages)

[PATCH bpf] xdp: use trusted arguments in XDP hints kfuncs
 2023-07-12  3:06 UTC  (4+ messages)

[PATCH bpf] bpf: cpumap: Fix memory leak in cpu_map_update_elem
 2023-07-12  3:04 UTC  (4+ messages)

[PATCH net 0/3] net: fec: fix some issues of ndo_xdp_xmit()
 2023-07-12  1:16 UTC  (7+ messages)
` [PATCH net 3/3] net: fec: increase the size of tx ring and update thresholds of tx ring

[PATCH bpf-next 1/2] bpf: teach verifier actual bounds of bpf_get_smp_processor_id() result
 2023-07-11 23:24 UTC  (2+ messages)
` [PATCH bpf-next 2/2] selftests/bpf: extend existing map resize tests for per-cpu use case

[PATCH RESEND v3 bpf-next 00/14] BPF token
 2023-07-11 22:06 UTC  (15+ messages)
` [PATCH RESEND v3 bpf-next 01/14] bpf: introduce BPF token object

[PATCHSET v4] sched: Implement BPF extensible scheduler class
 2023-07-11 21:45 UTC  (37+ messages)
` [PATCH 01/34] cgroup: Implement cgroup_show_cftypes()
` [PATCH 02/34] sched: Restructure sched_class order sanity checks in sched_init()
` [PATCH 03/34] sched: Allow sched_cgroup_fork() to fail and introduce sched_cancel_fork()
` [PATCH 04/34] sched: Add sched_class->reweight_task()
` [PATCH 05/34] sched: Add sched_class->switching_to() and expose check_class_changing/changed()
` [PATCH 06/34] sched: Factor out cgroup weight conversion functions
` [PATCH 07/34] sched: Expose css_tg() and __setscheduler_prio()
` [PATCH 08/34] sched: Enumerate CPU cgroup file types
` [PATCH 09/34] sched: Add @reason to sched_class->rq_{on|off}line()
` [PATCH 10/34] sched: Add normal_policy()
` [PATCH 11/34] sched_ext: Add boilerplate for extensible scheduler class
` [PATCH 12/34] sched_ext: Implement BPF "
` [PATCH 13/34] sched_ext: Add scx_simple and scx_example_qmap example schedulers
` [PATCH 14/34] sched_ext: Add sysrq-S which disables the BPF scheduler
` [PATCH 15/34] sched_ext: Implement runnable task stall watchdog
` [PATCH 16/34] sched_ext: Allow BPF schedulers to disallow specific tasks from joining SCHED_EXT
` [PATCH 17/34] sched_ext: Allow BPF schedulers to switch all eligible tasks into sched_ext
` [PATCH 18/34] sched_ext: Implement scx_bpf_kick_cpu() and task preemption support
` [PATCH 19/34] sched_ext: Add a central scheduler which makes all scheduling decisions on one CPU
` [PATCH 20/34] sched_ext: Make watchdog handle ops.dispatch() looping stall
` [PATCH 21/34] sched_ext: Add task state tracking operations
` [PATCH 22/34] sched_ext: Implement tickless support
` [PATCH 23/34] sched_ext: Track tasks that are subjects of the in-flight SCX operation
` [PATCH 24/34] sched_ext: Add cgroup support
` [PATCH 25/34] sched_ext: Add a cgroup-based core-scheduling scheduler
` [PATCH 26/34] sched_ext: Add a cgroup scheduler which uses flattened hierarchy
` [PATCH 27/34] sched_ext: Implement SCX_KICK_WAIT
` [PATCH 28/34] sched_ext: Implement sched_ext_ops.cpu_acquire/release()
` [PATCH 29/34] sched_ext: Implement sched_ext_ops.cpu_online/offline()
` [PATCH 30/34] sched_ext: Implement core-sched support
` [PATCH 31/34] sched_ext: Add vtime-ordered priority queue to dispatch_q's
` [PATCH 32/34] sched_ext: Documentation: scheduler: Document extensible scheduler class
` [PATCH 33/34] sched_ext: Add a basic, userland vruntime scheduler
` [PATCH 34/34] sched_ext: Add a rust userspace hybrid example scheduler

[PATCH bpf-next 0/6] BPF Refcount followups 2: owner field
 2023-07-11 20:51 UTC  (8+ messages)
` [PATCH bpf-next 1/6] [DONOTAPPLY] Revert "bpf: Disable bpf_refcount_acquire kfunc calls until race conditions are fixed"
` [PATCH bpf-next 2/6] bpf: Introduce internal definitions for UAPI-opaque bpf_{rb,list}_node
` [PATCH bpf-next 3/6] bpf: Add 'owner' field to bpf_{list,rb}_node
` [PATCH bpf-next 4/6] selftests/bpf: Add rbtree test exercising race which 'owner' field prevents
` [PATCH bpf-next 5/6] selftests/bpf: Disable newly-added 'owner' field test until refcount re-enabled
` [PATCH bpf-next 6/6] [DONOTAPPLY] Revert "selftests/bpf: Disable newly-added 'owner' field test until refcount re-enabled"

[PATCH bpf-next] bpf, vmtest: Build test_progs and friends as statically linked
 2023-07-11 20:15 UTC  (4+ messages)

[PATCH bpf] riscv, bpf: Fix inconsistent JIT image generation
 2023-07-11 20:07 UTC  (4+ messages)

[PATCH 0/1] Specify twos complement format for signed integers
 2023-07-11 19:56 UTC  (19+ messages)
` [PATCH 1/1] bpf, docs: Specify twos complement as "
  ` [Bpf] "

[PATCH bpf-next v4 0/8] BPF link support for tc BPF programs
 2023-07-11 18:51 UTC  (17+ messages)
` [PATCH bpf-next v4 1/8] bpf: Add generic attach/detach/query API for multi-progs
` [PATCH bpf-next v4 3/8] libbpf: Add opts-based attach/detach/query API for tcx
` [PATCH bpf-next v4 4/8] libbpf: Add link-based "
` [PATCH bpf-next v4 5/8] libbpf: Add helper macro to clear opts structs
` [PATCH bpf-next v4 6/8] bpftool: Extend net dump with tcx progs

[PATCH bpf-next v5 0/7] Add SO_REUSEPORT support for TC bpf_sk_assign
 2023-07-11 18:16 UTC  (4+ messages)
` [PATCH bpf-next v5 6/7] bpf, net: Support SO_REUSEPORT sockets with bpf_sk_assign

[PATCH] btf, scripts: rust: drop is_rust_module.sh
 2023-07-11 17:22 UTC  (3+ messages)

[PATCH bpf-next] samples/bpf: syscall_tp: aarch64 no open syscall
 2023-07-11 17:10 UTC  (2+ messages)

[PATCHv3 bpf-next 00/26] bpf: Add multi uprobe link
 2023-07-11 17:02 UTC  (53+ messages)
` [PATCHv3 bpf-next 02/26] "
` [PATCHv3 bpf-next 05/26] bpf: Add bpf_get_func_ip helper support for "
` [PATCHv3 bpf-next 07/26] libbpf: Move elf_find_func_offset* functions to elf object
` [PATCHv3 bpf-next 08/26] libbpf: Add elf_open/elf_close functions
` [PATCHv3 bpf-next 09/26] libbpf: Add elf symbol iterator
` [PATCHv3 bpf-next 10/26] libbpf: Add elf_resolve_syms_offsets function
` [PATCHv3 bpf-next 11/26] libbpf: Add elf_resolve_pattern_offsets function
` [PATCHv3 bpf-next 13/26] libbpf: Add bpf_program__attach_uprobe_multi function
` [PATCHv3 bpf-next 15/26] libbpf: Add uprobe multi link detection
` [PATCHv3 bpf-next 16/26] libbpf: Add uprobe multi link support to bpf_program__attach_usdt
` [PATCHv3 bpf-next 18/26] selftests/bpf: Add uprobe_multi api test
` [PATCHv3 bpf-next 19/26] selftests/bpf: Add uprobe_multi link test
` [PATCHv3 bpf-next 21/26] selftests/bpf: Add uprobe_multi bench test
` [PATCHv3 bpf-next 23/26] selftests/bpf: Add usdt_multi "

[PATCH v3] libbpf: remove HASHMAP_INIT static initialization helper
 2023-07-11 16:50 UTC  (2+ messages)

[PATCH bpf-next] bpf, sockops: Enhance the return capability of sockops
 2023-07-11 16:39 UTC  (2+ messages)

bpf_core_type_id_kernel is not consistent with bpf_core_type_id_local
 2023-07-11 16:38 UTC  (5+ messages)

[PATCH bpf-next 0/3] bpf: Introduce union trusted
 2023-07-11 14:22 UTC  (9+ messages)
` [PATCH bpf-next 1/3] bpf: Introduce BTF_TYPE_SAFE_TRUSTED_UNION
` [PATCH bpf-next 3/3] bpf: Fix an error in verifying a field in a union

[PATCH v2] samples/bpf: Add more instructions to build dependencies and, configuration in README.rst
 2023-07-11 12:53 UTC  (9+ messages)

[PATCH iwl-next v2 0/4] igb: Add support for AF_XDP zero-copy
 2023-07-11 11:47 UTC  (5+ messages)
` [PATCH iwl-next v2 1/4] igb: prepare for AF_XDP zero-copy support
` [PATCH iwl-next v2 2/4] igb: Introduce XSK data structures and helpers
` [PATCH iwl-next v2 3/4] igb: add AF_XDP zero-copy Rx support
` [PATCH iwl-next v2 4/4] igb: add AF_XDP zero-copy Tx support

[PATCH] samples/bpf: Fix compilation failure for samples/bpf on Loongarch Fedora
 2023-07-11 10:39 UTC  (5+ messages)
` [PATCH v2] samples/bpf: Fix compilation failure for samples/bpf on LoongArch Fedora
      ` 回复:[PATCH "

[PATCH V2 net 0/4] net: fec: fix some issues of ndo_xdp_xmit()
 2023-07-11  8:50 UTC  (2+ messages)

[PATCH bpf-next] libbpf: fix realloc API handling in zero-sized edge cases
 2023-07-11  7:40 UTC  (2+ messages)

[PATCH v2 2/2] libbpf: fix some typo of hashmap init
 2023-07-11  7:09 UTC  (4+ messages)

[PATCH v12 1/4] security: Allow all LSMs to provide xattrs for inode_init_security hook
 2023-07-11  6:40 UTC  (6+ messages)

[PATCH bpf-next v2 0/2] bpf: Introduce user log
 2023-07-11  3:10 UTC  (7+ messages)
` [PATCH bpf-next v2 1/2] bpf: Introduce bpf generic log
` [PATCH bpf-next v2 2/2] bpf: Introduce bpf user log

[RESEND PATCH net-next-mlx5 V1 0/4] virtio_net: add per queue interrupt coalescing support
 2023-07-11  2:13 UTC  (3+ messages)

[syzbot] [bpf?] [reiserfs?] WARNING: locking bug in corrupted (2)
 2023-07-11  1:53 UTC 

[PATCH v3] perf/core: Bail out early if the request AUX area is out of bound
 2023-07-11  1:41 UTC 

[PATCH bpf-next] bpf,docs: Create new standardization subdirectory
 2023-07-11  1:20 UTC  (2+ messages)

[Bpf] [PATCH bpf-next v3] bpf, docs: Improve English readability
 2023-07-11  1:12 UTC  (3+ messages)

[PATCH v5 bpf-next 00/24] xsk: multi-buffer support
 2023-07-11  1:09 UTC  (3+ messages)
` [PATCH v5 bpf-next 10/24] xsk: add new netlink attribute dedicated for ZC max frags

[PATCH bpf-next v4 6/7] bpf, net: Support SO_REUSEPORT sockets with bpf_sk_assign
 2023-07-11  0:41 UTC  (3+ messages)

[PATCH bpf-next v3 0/6] Support defragmenting IPv(4|6) packets in BPF
 2023-07-11  0:37 UTC  (3+ messages)
` [PATCH bpf-next v3 6/6] bpf: selftests: Add defrag selftests

[PATCH v2] fprobe: Ensure running fprobe_exit_handler() finished before calling rethook_free()
 2023-07-11  0:06 UTC  (3+ messages)

[PATCH bpf-next v3 0/8] BPF link support for tc BPF programs
 2023-07-10 22:46 UTC  (11+ messages)
` [PATCH bpf-next v3 1/8] bpf: Add generic attach/detach/query API for multi-progs

[PATCH bpf-next v2 0/4] bpftool: Fix skeletons compilation for older kernels
 2023-07-10 22:40 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