public inbox for [email protected]
 help / color / mirror / Atom feed
 messages from 2023-08-15 07:52:19 to 2023-08-25 22:57:15 UTC [more...]

[RFC PATCH 00/11] Zero copy network RX using io_uring
 2023-08-25 22:55 UTC  (8+ messages)
` [PATCH 01/11] io_uring: add interface queue
` [PATCH 02/11] io_uring: add mmap support for shared ifq ringbuffers
` [PATCH 03/11] netdev: add XDP_SETUP_ZC_RX command
` [PATCH 04/11] io_uring: setup ZC for an RX queue when registering an ifq
` [PATCH 05/11] io_uring: add ZC buf and pool
` [PATCH 06/11] io_uring: add ZC pool API
` [PATCH 07/11] skbuff: add SKBFL_FIXED_FRAG and skb_fixed()

[PATCH RFC v5 00/29] io_uring getdents
 2023-08-25 22:53 UTC  (39+ messages)
` [PATCH 01/29] fs: split off vfs_getdents function of getdents64 syscall
` [PATCH 02/29] xfs: rename XBF_TRYLOCK to XBF_NOWAIT
` [PATCH 03/29] xfs: add NOWAIT semantics for readdir
` [PATCH 04/29] vfs: add nowait flag for struct dir_context
` [PATCH 05/29] vfs: add a vfs helper for io_uring file pos lock
` [PATCH 06/29] vfs: add file_pos_unlock() for io_uring usage
` [PATCH 07/29] vfs: add a nowait parameter for touch_atime()
` [PATCH 08/29] vfs: add nowait parameter for file_accessed()
` [PATCH 09/29] vfs: move file_accessed() to the beginning of iterate_dir()
` [PATCH 10/29] vfs: add S_NOWAIT for nowait time update
` [PATCH 11/29] vfs: trylock inode->i_rwsem in iterate_dir() to support nowait
` [PATCH 12/29] xfs: enforce GFP_NOIO implicitly during nowait time update
` [PATCH 13/29] xfs: make xfs_trans_alloc() support nowait semantics
` [PATCH 14/29] xfs: support nowait for xfs_log_reserve()
` [PATCH 15/29] xfs: don't wait for free space in xlog_grant_head_check() in nowait case
` [PATCH 16/29] xfs: add nowait parameter for xfs_inode_item_init()
` [PATCH 17/29] xfs: make xfs_trans_ijoin() error out -EAGAIN
` [PATCH 18/29] xfs: set XBF_NOWAIT for xfs_buf_read_map if necessary
` [PATCH 19/29] xfs: support nowait memory allocation in _xfs_buf_alloc()
` [PATCH 20/29] xfs: distinguish error type of memory allocation failure for nowait case
` [PATCH 21/29] xfs: return -EAGAIN when bulk memory allocation fails in "
` [PATCH 22/29] xfs: comment page allocation for nowait case in xfs_buf_find_insert()
` [PATCH 23/29] xfs: don't print warn info for -EAGAIN error in xfs_buf_get_map()
` [PATCH 24/29] xfs: support nowait for xfs_buf_read_map()
` [PATCH 25/29] xfs: support nowait for xfs_buf_item_init()
` [PATCH 26/29] xfs: return -EAGAIN when nowait meets sync in transaction commit
` [PATCH 27/29] xfs: add a comment for xlog_kvmalloc()
` [PATCH 28/29] xfs: support nowait semantics for xc_ctx_lock in xlog_cil_commit()
` [PATCH 29/29] io_uring: add support for getdents

[PATCH v3 0/9] io_uring: Initial support for {s,g}etsockopt commands
 2023-08-25 16:53 UTC  (23+ messages)
` [PATCH v3 1/9] bpf: Leverage sockptr_t in BPF getsockopt hook
` [PATCH v3 2/9] bpf: Leverage sockptr_t in BPF setsockopt hook
` [PATCH v3 3/9] net/socket: Break down __sys_setsockopt
` [PATCH v3 4/9] io_uring/cmd: Pass compat mode in issue_flags
` [PATCH v3 5/9] selftests/net: Extract uring helpers to be reusable
` [PATCH v3 6/9] io_uring/cmd: Introduce SOCKET_URING_OP_GETSOCKOPT
` [PATCH v3 7/9] io_uring/cmd: Introduce SOCKET_URING_OP_SETSOCKOPT
` [PATCH v3 8/9] io_uring/cmd: BPF hook for getsockopt cmd
` [PATCH v3 9/9] selftests/bpf/sockopt: Add io_uring support

[PATCH 0/2] io_uring: fix IO hang in io wq exit
 2023-08-25  9:09 UTC  (3+ messages)
` [PATCH 1/2] io_uring: add one helper for reaping iopoll events
` [PATCH 2/2] io_uring: reap iopoll events before exiting io wq

[PATCH v2 00/15] caching and SQ/CQ optimisations
 2023-08-24 23:16 UTC  (17+ messages)
` [PATCH v2 01/15] io_uring: improve cqe !tracing hot path
` [PATCH v2 02/15] io_uring: cqe init hardening
` [PATCH v2 03/15] io_uring: simplify big_cqe handling
` [PATCH v2 04/15] io_uring: refactor __io_get_cqe()
` [PATCH v2 05/15] io_uring: optimise extra io_get_cqe null check
` [PATCH v2 06/15] io_uring: reorder cqring_flush and wakeups
` [PATCH v2 07/15] io_uring: merge iopoll and normal completion paths
` [PATCH v2 08/15] io_uring: force inline io_fill_cqe_req
` [PATCH v2 09/15] io_uring: compact SQ/CQ heads/tails
` [PATCH v2 10/15] io_uring: add option to remove SQ indirection
` [PATCH v2 11/15] io_uring: move non aligned field to the end
` [PATCH v2 12/15] io_uring: banish non-hot data to end of io_ring_ctx
` [PATCH v2 13/15] io_uring: separate task_work/waiting cache line
` [PATCH v2 14/15] io_uring: move multishot cqe cache in ctx
` [PATCH v2 15/15] io_uring: move iopoll ctx fields around

[RFC 00/16] caching and SQ/CQ optimisations
 2023-08-24 16:49 UTC  (23+ messages)
` [PATCH 01/16] io_uring: improve cqe !tracing hot path
` [PATCH 02/16] io_uring: cqe init hardening
` [PATCH 03/16] io_uring: simplify big_cqe handling
` [PATCH 04/16] io_uring: refactor __io_get_cqe()
` [PATCH 05/16] io_uring: optimise extra io_get_cqe null check
` [PATCH 06/16] io_uring: reorder cqring_flush and wakeups
` [PATCH 07/16] io_uring: merge iopoll and normal completion paths
` [PATCH 08/16] io_uring: compact SQ/CQ heads/tails
` [PATCH 09/16] io_uring: add option to remove SQ indirection
` [PATCH 10/16] io_uring: static_key for !IORING_SETUP_NO_SQARRAY
` [PATCH 11/16] io_uring: move non aligned field to the end
` [PATCH 12/16] io_uring: banish non-hot data to end of io_ring_ctx
` [PATCH 13/16] io_uring: separate task_work/waiting cache line
` [PATCH 14/16] io_uring: move multishot cqe cache in ctx
` [PATCH 15/16] io_uring: move iopoll ctx fields around
` [PATCH 16/16] io_uring: force inline io_fill_cqe_req

[PATCH v2 00/13] Remove _folio_dtor and _folio_order
 2023-08-23  0:29 UTC  (23+ messages)
` [PATCH v2 01/13] io_uring: Stop calling free_compound_page()
` [PATCH v2 02/13] mm: Call free_huge_page() directly
` [PATCH v2 03/13] mm: Convert free_huge_page() to free_huge_folio()
` [PATCH v2 04/13] mm: Convert free_transhuge_folio() to folio_undo_large_rmappable()
` [PATCH v2 05/13] mm; Convert prep_transhuge_page() to folio_prep_large_rmappable()
` [PATCH v2 06/13] mm: Remove free_compound_page() and the compound_page_dtors array
` [PATCH v2 07/13] mm: Remove HUGETLB_PAGE_DTOR
` [PATCH v2 08/13] mm: Add large_rmappable page flag
` [PATCH v2 09/13] mm: Rearrange page flags
` [PATCH v2 10/13] mm: Free up a word in the first tail page
` [PATCH v2 11/13] mm: Remove folio_test_transhuge()
` [PATCH v2 12/13] mm: Add tail private fields to struct folio
` [PATCH v2 13/13] mm: Convert split_huge_pages_pid() to use a folio

[PATCH 0/2] Fix locking for MSG_RING and IOPOLL targets
 2023-08-23  0:06 UTC  (5+ messages)

Possible io_uring related race leads to btrfs data csum mismatch
 2023-08-21 21:42 UTC  (22+ messages)

[PATCH v5] io_uring: add a sysctl to disable io_uring system-wide
 2023-08-21 21:15 UTC 

[PATCH v4] io_uring: add a sysctl to disable io_uring system-wide
 2023-08-21 12:29 UTC  (4+ messages)

[RE]: RE:
 2023-08-20 15:30 UTC 

[PATCH] io_uring/rsrc: Annotate struct io_mapped_ubuf with __counted_by
 2023-08-18  1:15 UTC  (3+ messages)

[linus:master] [io_uring] caec5ebe77: stress-ng.io-uring.ops_per_sec -33.1% regression
 2023-08-16 23:01 UTC  (2+ messages)

[PATCH 0/9] Remove _folio_dtor and _folio_order
 2023-08-16 12:34 UTC  (32+ messages)
` [PATCH 1/9] io_uring: Stop calling free_compound_page()
` [PATCH 3/9] mm: Call free_transhuge_folio() directly from destroy_large_folio()
` [PATCH 6/9] mm: Remove HUGETLB_PAGE_DTOR
` [PATCH 7/9] mm: Add deferred_list page flag
` [PATCH 8/9] mm: Rearrange page flags
` [PATCH 9/9] mm: Free up a word in the first tail page

[PATCHSET 0/3] Ensure file refs are dropped on io_uring fd release
 2023-08-15 22:50 UTC  (5+ messages)
` [PATCH 1/3] io_uring: move to using private ring references


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox