public inbox for [email protected]
 help / color / mirror / Atom feed
 messages from 2024-12-09 15:17:18 to 2024-12-18 00:36:04 UTC [more...]

[PATCH net-next v9 00/21] io_uring zero copy rx
 2024-12-18  0:35 UTC  (5+ messages)
` [--bla-- 01/20] net: page_pool: don't cast mp param to devmem
` [--bla-- 02/20] net: prefix devmem specific helpers
` [--bla-- 03/20] net: generalise net_iov chunk owners
` [--bla-- 04/20] net: page_pool: create hooks for custom page providers

[PATCH v8 00/16] fuse: fuse-over-io-uring
 2024-12-17 23:50 UTC  (13+ messages)
` [PATCH v8 02/16] fuse: Move fuse_get_dev to header file
` [PATCH v8 06/16] fuse: {io-uring} Handle SQEs - register commands
` [PATCH v8 07/16] fuse: Make fuse_copy non static
` [PATCH v8 08/16] fuse: Add fuse-io-uring handling into fuse_copy
` [PATCH v8 09/16] fuse: {io-uring} Make hash-list req unique finding functions non-static
` [PATCH v8 15/16] fuse: {io-uring} Prevent mount point hang on fuse-server termination

[PATCH 0/3][RFC] virtio-blk: add io_uring passthrough support for virtio-blk
 2024-12-17 21:07 UTC  (13+ messages)

[PATCH] io_uring/rw: use NULL for rw->free_iovec assigment
 2024-12-17 19:45 UTC 

[PATCH RFC 0/9] Launching processes with io_uring
 2024-12-17 19:14 UTC  (21+ messages)
` [PATCH RFC 1/9] io_uring: Drop __io_req_find_next_prep
` [PATCH RFC 2/9] io_uring: Expose failed request helper in internal header
` [PATCH RFC 3/9] kernel/fork: Don't inherit PF_USER_WORKER from parent
` [PATCH RFC 4/9] fs/exec: Expose do_execveat symbol
` [PATCH RFC 5/9] kernel/fork: Add helper to fork from io_uring
` [PATCH RFC 6/9] io_uring: Let commands run with current credentials
` [PATCH RFC 7/9] io_uring: Introduce IORING_OP_CLONE
` [PATCH RFC 8/9] io_uring: Let ->issue know if it was called from spawn thread
` [PATCH RFC 9/9] io_uring: Introduce IORING_OP_EXEC command

[PATCH v3 1/4] io_uring/cmd: rename struct uring_cache to io_uring_cmd_data
 2024-12-17 18:02 UTC  (4+ messages)
` [PATCH v3 2/4] io_uring/cmd: add per-op data to struct io_uring_cmd_data
` [PATCH v3 3/4] io_uring: add io_uring_cmd_get_async_data helper
` [PATCH v3 4/4] btrfs: don't read from userspace twice in btrfs_uring_encoded_read()

[PATCH] io_uring: make ctx->timeout_lock a raw spinlock
 2024-12-17 15:57 UTC 

[PATCH] io_uring/rw: don't mask in f_iocb_flags
 2024-12-17 15:05 UTC 

[PATCH RESEND v2 0/9] Clean up alloc_cache allocations
 2024-12-17  0:05 UTC  (11+ messages)
` [PATCH RESEND v2 1/9] io_uring: Fold allocation into alloc_cache helper
` [PATCH RESEND v2 2/9] io_uring: Add generic helper to allocate async data
` [PATCH RESEND v2 3/9] io_uring/futex: Allocate ifd with generic alloc_cache helper
` [PATCH RESEND v2 4/9] io_uring/poll: Allocate apoll "
` [PATCH RESEND v2 5/9] io_uring/uring_cmd: Allocate async data through generic helper
` [PATCH RESEND v2 6/9] io_uring/net: Allocate msghdr async data through helper
` [PATCH RESEND v2 7/9] io_uring/rw: Allocate "
` [PATCH RESEND v2 8/9] io_uring: Move old async data allocation helper to header
` [PATCH RESEND v2 9/9] io_uring/msg_ring: Drop custom destructor

[PATCHv14 00/11] block write streams with nvme fdp
 2024-12-16 16:12 UTC  (6+ messages)
  ` [PATCHv14 10/11] nvme: register fdp parameters with the block layer

[PATCH -next] io_uring: add support for fchmod
 2024-12-14 16:26 UTC  (4+ messages)

[GIT PULL] io_uring fix for 6.13-rc3
 2024-12-14  1:36 UTC  (2+ messages)

[PATCH v2 1/3] io_uring/cmd: rename struct uring_cache to io_uring_cmd_data
 2024-12-13 21:18 UTC  (5+ messages)
` [PATCH v2 2/3] io_uring/cmd: add per-op data to struct io_uring_cmd_data
` [PATCH v2 3/3] btrfs: don't read from userspace twice in btrfs_uring_encoded_read()

WARNING in get_pat_info
 2024-12-13 17:57 UTC  (6+ messages)

[syzbot] [io-uring?] KCSAN: data-race in io_recv / io_wq_free_work
 2024-12-13 14:18 UTC  (2+ messages)

possible deadlock in __wake_up_common_lock
 2024-12-13 14:10 UTC  (6+ messages)

[io-uring] general protection fault in io_register_clone_buffers
 2024-12-13 14:09 UTC  (4+ messages)

[PATCH] btrfs: check if task has died in btrfs_uring_read_finished()
 2024-12-13 12:46 UTC 

[syzbot] [tipc?] kernel BUG in __pskb_pull_tail
 2024-12-13 12:19 UTC  (2+ messages)

[io-uring] use-after-free in io_cqring_wait
 2024-12-12 15:17 UTC  (5+ messages)

[PATCH net-next v8 00/17] io_uring zero copy rx
 2024-12-12 13:42 UTC  (47+ messages)
` [PATCH net-next v8 02/17] net: generalise net_iov chunk owners
` [PATCH net-next v8 03/17] net: page_pool: create hooks for custom page providers
` [PATCH net-next v8 04/17] net: prepare for non devmem TCP memory providers
` [PATCH net-next v8 05/17] net: page_pool: add ->scrub mem provider callback
` [PATCH net-next v8 06/17] net: page pool: add helper creating area from pages
` [PATCH net-next v8 07/17] net: page_pool: introduce page_pool_mp_return_in_cache
` [PATCH net-next v8 08/17] net: add helper executing custom callback from napi
` [PATCH net-next v8 09/17] io_uring/zcrx: add interface queue and refill queue
` [PATCH net-next v8 11/17] io_uring/zcrx: implement zerocopy receive pp memory provider
` [PATCH net-next v8 16/17] net: add documentation for io_uring zcrx

[PATCHv13 00/11] block write streams with nvme fdp
 2024-12-12  6:05 UTC  (16+ messages)
` [PATCHv13 05/11] block: expose write streams for block device nodes
` [PATCHv13 06/11] io_uring: enable per-io write streams
` [PATCHv13 10/11] nvme: register fdp parameters with the block layer
  ` [PATCHv13 04/11] block: introduce a write_stream_granularity queue limit

[PATCHv10 0/9] write hints with nvme fdp, scsi streams
 2024-12-11 21:21 UTC  (32+ messages)

[PATCH v8 13/16] fuse: Allow to queue fg requests through io-uring
 2024-12-10 23:14 UTC  (2+ messages)

[PATCH RFC liburing 0/2] IORING_OP_CLONE/EXEC support and tests
 2024-12-10 21:06 UTC  (4+ messages)
` [PATCH RFC liburing 1/2] Add IORING_OP_CLONE/EXEC support
` [PATCH RFC liburing 2/2] tests: Add test for CLONE/EXEC operations

[PATCHv12 00/12] block write streams with nvme fdp
 2024-12-10 15:23 UTC  (28+ messages)
` [PATCHv12 02/12] fs: add a write stream field to the kiocb
` [PATCHv12 03/12] block: add a bi_write_stream field
` [PATCHv12 04/12] block: introduce max_write_streams queue limit
` [PATCHv12 05/12] block: introduce a write_stream_granularity "
` [PATCHv12 06/12] block: expose write streams for block device nodes
` [PATCHv12 08/12] nvme: add a nvme_get_log_lsi helper
` [PATCHv12 09/12] nvme: pass a void pointer to nvme_get/set_features for the result
` [PATCHv12 10/12] nvme.h: add FDP definitions
` [PATCHv12 11/12] nvme: register fdp parameters with the block layer
` [PATCHv12 12/12] nvme: use fdp streams if write stream is provided

[PATCH liburing 0/4] test kernel allocated regions
 2024-12-09 21:16 UTC  (3+ messages)

[PATCHv11 00/10] block write streams with nvme fdp
 2024-12-09 17:35 UTC  (6+ messages)
  ` [EXT] "

[PATCH v2 1/1] io_uring: prevent reg-wait speculations
 2024-12-09 15:17 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