io-uring.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2021-02-04 13:59:35 to 2021-02-17 12:42:55 UTC [more...]

[RFC 0/4] add BPF-driven requests
 2021-02-17 12:38 UTC  (4+ messages)
` [PATCH 1/4] bpf: add IOURING program type
` [PATCH 2/4] io_uring: implement bpf prog registration
` [PATCH 4/4] io_uring: enable BPF to submit SQEs

[PATCH v6 0/7] Count rlimits in each user namespace
 2021-02-16 11:12 UTC  (11+ messages)
` [PATCH v6 1/7] Increase size of ucounts to atomic_long_t
` [PATCH v6 2/7] Add a reference to ucounts for each cred
` [PATCH v6 3/7] Reimplement RLIMIT_NPROC on top of ucounts
` [PATCH v6 4/7] Reimplement RLIMIT_MSGQUEUE "
` [PATCH v6 5/7] Reimplement RLIMIT_SIGPENDING "
` [PATCH v6 6/7] Reimplement RLIMIT_MEMLOCK "
  ` [PATCH v7 "
` [PATCH v6 7/7] kselftests: Add test to check for rlimit changes in different user namespaces

CVE-2020-29373 reproducer fails on v5.11
 2021-02-15  7:04 UTC  (7+ messages)

[PATCHSET 0/3] Free request caches for exiting task
 2021-02-13 16:14 UTC  (4+ messages)
` [PATCH 1/3] io_uring: allow task match to be passed to io_req_cache_free()
` [PATCH 2/3] io_uring: add helper to free all request caches
` [PATCH 3/3] io_uring: kill cached requests from exiting task closing the ring

[PATCH liburing] a test for CVE-2020-29373 (AF_UNIX path resolution)
 2021-02-12 21:13 UTC  (3+ messages)

[GIT PULL] io_uring fix for 5.11 final
 2021-02-12 20:42 UTC  (10+ messages)

[PATCH 0/3] small cleanups for 5.12
 2021-02-12 19:25 UTC  (5+ messages)
` [PATCH 1/3] io_uring: don't check PF_EXITING from syscall
` [PATCH 2/3] io_uring: clean io_req_find_next() fast check
` [PATCH 3/3] io_uring: optimise io_init_req() flags setting

[PATCH RFC] io_uring: batch rsrc refs put
 2021-02-12 19:13 UTC 

[PATCH] io_uring: move submit side state closer in the ring
 2021-02-12 15:29 UTC 

[PATCH 0/5] another round of small tinkering
 2021-02-12 12:44 UTC  (7+ messages)
` [PATCH 1/5] io_uring: take compl state from submit state
` [PATCH 2/5] io_uring: optimise out unlikely link queue
` [PATCH 3/5] io_uring: optimise SQPOLL mm/files grabbing
` [PATCH 4/5] io_uring: don't duplicate io_req_task_queue()
` [PATCH 5/5] io_uring: save ctx put/get for task_work submit

[PATCH 1/1] io_uring: don't split out consume out of SQE get
 2021-02-12 12:45 UTC  (2+ messages)

[PATCH v2 0/2] io_uring: add mkdirat support
 2021-02-12  9:42 UTC  (3+ messages)
` [PATCH v2 1/2] fs: make do_mkdirat() take struct filename

[PATCH liburing 0/5] segfault and not only fixes
 2021-02-11 23:45 UTC  (8+ messages)
` [PATCH liburing 1/5] src/queue: don't re-wait for CQEs
` [PATCH liburing 2/5] src/queue: control kernel enter with a var
` [PATCH liburing 3/5] test/link-timeout: close pipes after yourself
` [PATCH liburing 4/5] test/sq-poll-share: don't ignore wait errors
` [PATCH liburing 5/5] src/queue: fix no-error with NULL cqe

[PATCH for-next 0/4] complete cleanups
 2021-02-11 19:55 UTC  (6+ messages)
` [PATCH 1/4] io_uring: clean up io_req_free_batch_finish()
` [PATCH 2/4] io_uring: simplify iopoll reissuing
` [PATCH 3/4] io_uring: move res check out of io_rw_reissue()
` [PATCH 4/4] io_uring: inline io_complete_rw_common()

[PATCH] io_uring: assign file_slot prior to calling io_sqe_file_register()
 2021-02-11 14:48 UTC 

[PATCH 0/2] fix deadlock in __io_req_task_submit()
 2021-02-11 13:30 UTC  (19+ messages)
` [PATCH 1/2] io_uring: add uring_lock as an argument to io_sqe_files_unregister()
` [PATCH 2/2] io_uring: don't hold uring_lock when calling io_run_task_work*

[PATCH 0/2] SQPOLL cancel files fix
 2021-02-10 20:30 UTC  (4+ messages)
` [PATCH 1/2] io_uring: cancel files inflight counting
` [PATCH 2/2] io_uring; fix files cancel hangs

[PATCH][next] io_uring: remove redundant initialization of variable ret
 2021-02-10 20:30 UTC  (3+ messages)

[PATCHES 0/3] Mem accounting and IRQ req cache
 2021-02-10 15:16 UTC  (4+ messages)
` [PATCH 1/3] io_uring: enable req cache for IRQ driven IO
` [PATCH 2/3] io_uring: enable kmemcg account for io_uring requests
` [PATCH 3/3] io_uring: place ring SQ/CQ arrays under memcg memory limits

[PATCH RFC 00/17] playing around req alloc
 2021-02-10 14:27 UTC  (27+ messages)
` [PATCH 01/17] io_uring: replace force_nonblock with flags
` [PATCH 02/17] io_uring: make op handlers always take issue flags
` [PATCH 03/17] io_uring: don't propagate io_comp_state
` [PATCH 04/17] io_uring: don't keep submit_state on stack
` [PATCH 05/17] io_uring: remove ctx from comp_state
` [PATCH 06/17] io_uring: don't reinit submit state every time
` [PATCH 07/17] io_uring: replace list with array for compl batch
` [PATCH 08/17] io_uring: submit-completion free batching
` [PATCH 09/17] io_uring: remove fallback_req
` [PATCH 10/17] io_uring: count ctx refs separately from reqs
` [PATCH 11/17] io_uring: persistent req cache
` [PATCH 12/17] io_uring: feed reqs back into alloc cache
` [PATCH 13/17] io_uring: use persistent request cache
` [PATCH 14/17] io_uring: provide FIFO ordering for task_work
` [PATCH 15/17] io_uring: enable req cache for task_work items
` [PATCH 16/17] io_uring: take comp_state from ctx
` [PATCH 17/17] io_uring: defer flushing cached reqs

INFO: task hung in io_uring_cancel_task_requests
 2021-02-10  3:02 UTC  (3+ messages)

[PATCH v2] io_uring: fix possible deadlock in io_uring_poll
 2021-02-10  2:27 UTC  (5+ messages)
` [PATCH v3] "

[PATCHSET 0/3] req alloc and task_work speedups
 2021-02-09 19:04 UTC  (4+ messages)
` [PATCH 1/3] io_ring: use persistent request cache
` [PATCH 2/3] io_uring: provide FIFO ordering for task_work
` [PATCH 3/3] io_uring: enable req cache for task_work items

[PATCH] fs/io_uring.c: fix typo in comment
 2021-02-09 14:36 UTC  (2+ messages)

[PATCH v3 00/11] dm: support IO polling
 2021-02-09  8:46 UTC  (17+ messages)
` [PATCH v3 01/11] block: move definition of blk_qc_t to types.h
` [PATCH v3 02/11] block: add queue_to_disk() to get gendisk from request_queue
` [PATCH v3 03/11] block: add poll method to support bio-based IO polling
` [PATCH v3 04/11] block: add poll_capable "
` [PATCH v3 05/11] block/mq: extract one helper function polling hw queue
` [PATCH v3 06/11] block/mq: add iterator for polling hw queues
` [PATCH v3 07/11] dm: always return BLK_QC_T_NONE for bio-based device
` [PATCH v3 08/11] dm: fix iterate_device sanity check
` [PATCH v3 09/11] dm: support IO polling for bio-based dm device
` [PATCH v3 10/11] nvme/pci: don't wait for locked polling queue
` [PATCH v3 11/11] dm: fastpath of bio-based polling

[PATCH 5.12] io_uring: cancel SQPOLL reqs acress exec
 2021-02-08 15:27 UTC  (2+ messages)

[PATCH liburing 0/3] fix _io_uring_get_cqe()
 2021-02-08 15:26 UTC  (5+ messages)
` [PATCH liburing 1/3] src/queue: don't wait for less than expected
` [PATCH liburing 2/3] src/queue: clean _io_uring_get_cqe() err handling
` [PATCH liburing 3/3] src/queue: don't loop when don't enter

[PATCH] io_uring: don't issue reqs in iopoll mode when ctx is dying
 2021-02-08 13:35 UTC  (4+ messages)

[GIT PULL] io_uring fixes for 5.11-rc7
 2021-02-06 22:46 UTC  (2+ messages)

[PATCH for-next 0/3] sendmsg/recvmsg cleanup
 2021-02-05 14:57 UTC  (11+ messages)
` [PATCH 1/3] io_uring: set msg_name on msg fixup
` [PATCH 2/3] io_uring: clean iov usage for recvmsg buf select
` [PATCH 3/3] io_uring: refactor sendmsg/recvmsg iov managing

bug with fastpoll accept and sqpoll + IOSQE_FIXED_FILE
 2021-02-05 14:49 UTC  (17+ messages)

Queston about io_uring_flush
 2021-02-05  9:56 UTC  (4+ messages)

[PATCH] io_uring: don't modify identity's files uncess identity is cowed
 2021-02-05  1:34 UTC  (5+ messages)

[PATCH] io_uring: drop mm/files between task_work_submit
 2021-02-04 19:43 UTC  (2+ messages)

[PATCH] io_uring: fix possible deadlock in io_uring_poll
 2021-02-04 16:54 UTC  (5+ messages)

[PATCH v2 5.12 00/13] a second pack of 5.12 cleanups
 2021-02-04 15:07 UTC  (12+ messages)
` [PATCH v2 05/13] io_uring: further simplify do_read error parsing
` [PATCH v2 07/13] io_uring: don't forget to adjust io_size
` [PATCH v2 09/13] io_uring: highlight read-retry loop
` [PATCH v2 10/13] io_uring: treat NONBLOCK and RWF_NOWAIT similarly
` [PATCH v2 11/13] io_uring: io_import_iovec return type cleanup
` [PATCH v2 12/13] io_uring: deduplicate file table slot calculation
` [PATCH v2 13/13] io_uring/io-wq: return 2-step work swap scheme

[PATCH 5.4 103/142] Revert "block: end bio with BLK_STS_AGAIN in case of non-mq devs and REQ_NOWAIT"
 2021-02-04 15:04 UTC  (8+ messages)

[PATCH 0/8] a second pack of 5.12 cleanups
 2021-02-04 13:52 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).