public inbox for [email protected]
 help / color / mirror / Atom feed
 messages from 2022-05-16 16:48:48 to 2022-05-26 17:36:17 UTC [more...]

[PATCH] io_uring: fix a memory leak of buffer group list on exit
 2022-05-26 17:36 UTC 

[PATCH v5 00/16] io-uring/xfs: support async buffered writes
 2022-05-26 13:43 UTC  (19+ messages)
` [PATCH v5 01/16] mm: Move starting of background writeback into the main balancing loop
` [PATCH v5 02/16] mm: Move updates of dirty_exceeded into one place
` [PATCH v5 03/16] mm: Add balance_dirty_pages_ratelimited_flags() function
` [PATCH v5 04/16] iomap: Add flags parameter to iomap_page_create()
` [PATCH v5 05/16] iomap: Add async buffered write support
` [PATCH v5 06/16] fs: Add check for async buffered writes to generic_write_checks
` [PATCH v5 07/16] fs: add __remove_file_privs() with flags parameter
` [PATCH v5 08/16] fs: Split off inode_needs_update_time and __file_update_time
` [PATCH v5 09/16] fs: Add async write file modification handling
` [PATCH v5 10/16] fs: Optimization for concurrent file time updates
` [PATCH v5 11/16] io_uring: Add support for async buffered writes
` [PATCH v5 12/16] io_uring: Add tracepoint for short writes
` [PATCH v5 13/16] xfs: Specify lockmode when calling xfs_ilock_for_iomap()
` [PATCH v5 14/16] xfs: Change function signature of xfs_ilock_iocb()
` [PATCH v5 15/16] xfs: Add async buffered write support
` [PATCH v5 16/16] xfs: Enable "

[RFC] io_uring: let IORING_OP_FILES_UPDATE support to choose fixed file slot
 2022-05-26 12:38 UTC 

[GIT PULL tor v1 0/6] Build fixes for clang-15
 2022-05-26 11:41 UTC  (7+ messages)
` [PATCH tor v1 1/6] channel: Fix clang-15 complaint (unused variable)
` [PATCH tor v1 2/6] connection_or: "
` [PATCH tor v1 3/6] routerlist: "
` [PATCH tor v1 4/6] compat_libevent: "
` [PATCH tor v1 5/6] test/bench: "
` [PATCH tor v1 6/6] test/test_hs_descriptor: Don't invoke GCC warning when compiling with clang

[ammarfaizi2-block:paulmck/linux-rcu/for-peterz.2022.05.25a 54/62] ERROR: modpost: "rcu_trc_cmpxchg_need_qs" [kernel/torture.ko] undefined!
 2022-05-25 19:45 UTC 

[ammarfaizi2-block:axboe/linux-block/for-5.20/io_uring 28/53] io_uring/io_uring.c:12888:43: error: 'io_sendmsg_recvmsg_cleanup' undeclared here (not in a function)
 2022-05-25 18:50 UTC 

[ammarfaizi2-block:axboe/linux-block/for-5.20/io_uring 8/40] io_uring/io_uring.c:6701:38: sparse: sparse: incorrect type in assignment (different base types)
 2022-05-25  6:33 UTC 

[ammarfaizi2-block:axboe/linux-block/for-5.20/io_uring 36/40] io_uring/splice.c:42:5: warning: no previous prototype for 'io_tee_prep'
 2022-05-25  5:59 UTC 

[ammarfaizi2-block:axboe/linux-block/for-5.20/io_uring 8/34] io_uring/io_uring.c:6533:12: error: redefinition of 'io_shutdown'
 2022-05-25  1:45 UTC 

[ammarfaizi2-block:axboe/linux-block/io_uring-5.19 6/6] fs/io_uring.c:6775:1: error: redefinition of 'io_shutdown'
 2022-05-25  1:19 UTC 

[ammarfaizi2-block:axboe/linux-block/for-5.20/io_uring 8/34] io_uring/io_uring.c:2937:40: warning: variable 'prev' set but not used
 2022-05-25  0:18 UTC 

[PATCHSET 0/6] Misc cleanups
 2022-05-24 21:37 UTC  (7+ messages)
` [PATCH 1/6] io_uring: make timeout prep handlers consistent with other prep handlers
` [PATCH 2/6] io_uring: make prep and issue side of req handlers named consistently
` [PATCH 3/6] io_uring: add io_op_defs 'def' pointer in req init and issue
` [PATCH 4/6] io_uring: unify calling convention for async prep handling
` [PATCH 5/6] io_uring: drop confusion between cleanup flags
` [PATCH 6/6] io_uring: move shutdown under the general net section

[PATCH] io_uring: add a schedule condition in io_submit_sqes
 2022-05-24  6:58 UTC  (5+ messages)

[GIT PULL] io_uring passthrough support
 2022-05-24  5:15 UTC  (5+ messages)

[GIT PULL] nolibc changes for v5.19
 2022-05-23 22:01 UTC  (10+ messages)

[GIT PULL] io_uring 'more data in socket' support
 2022-05-23 20:42 UTC  (2+ messages)

[GIT PULL] io_uring xattr support
 2022-05-23 20:42 UTC  (4+ messages)

[GIT PULL] io_uring socket(2) support
 2022-05-23 20:42 UTC  (2+ messages)

[GIT PULL] io_uring core updates for 5.19-rc1
 2022-05-23 20:42 UTC  (2+ messages)

[syzbot] general protection fault in ath9k_hif_usb_rx_cb (2)
 2022-05-23 11:27 UTC 

linux-next: build warning after merge of the cifs tree
 2022-05-23  0:57 UTC 

[PATCH v2 00/13] rename & split tests
 2022-05-23  0:57 UTC  (5+ messages)

[RFC PATCH v4 00/17] io-uring/xfs: support async buffered writes
 2022-05-22  7:34 UTC  (26+ messages)
` [RFC PATCH v4 01/17] mm: Move starting of background writeback into the main balancing loop
` [RFC PATCH v4 02/17] mm: Move updates of dirty_exceeded into one place
` [RFC PATCH v4 03/17] mm: Prepare balance_dirty_pages() for async buffered writes
` [RFC PATCH v4 04/17] mm: Add balance_dirty_pages_ratelimited_flags() function
` [RFC PATCH v4 05/17] iomap: Add gfp parameter to iomap_page_create()
` [RFC PATCH v4 06/17] iomap: Add async buffered write support
` [RFC PATCH v4 07/17] iomap: Use balance_dirty_pages_ratelimited_flags in iomap_write_iter
` [RFC PATCH v4 08/17] fs: Add check for async buffered writes to generic_write_checks
` [RFC PATCH v4 09/17] fs: Split off remove_needs_file_privs() __remove_file_privs()
` [RFC PATCH v4 10/17] fs: Split off file_needs_update_time and __file_update_time
` [RFC PATCH v4 11/17] fs: Add async write file modification handling
` [RFC PATCH v4 12/17] fs: Optimization for concurrent file time updates
` [RFC PATCH v4 13/17] io_uring: Add support for async buffered writes
` [RFC PATCH v4 14/17] io_uring: Add tracepoint for short writes
` [RFC PATCH v4 15/17] xfs: Add iomap async buffered write support
` [RFC PATCH v4 16/17] xfs: Add "
` [RFC PATCH v4 17/17] xfs: Enable "

[PATCH] io_uring: cleanup handling of the two task_work lists
 2022-05-21 15:15 UTC 

[RFC PATCH v3 00/18] io-uring/xfs: support async buffered writes
 2022-05-20 18:32 UTC  (26+ messages)
` [RFC PATCH v3 01/18] block: Add check for async buffered writes to generic_write_checks
` [RFC PATCH v3 02/18] iomap: Add iomap_page_create_gfp to allocate iomap_pages
` [RFC PATCH v3 03/18] iomap: Use iomap_page_create_gfp() in __iomap_write_begin
` [RFC PATCH v3 04/18] iomap: Add async buffered write support
` [RFC PATCH v3 05/18] xfs: Add iomap "
` [RFC PATCH v3 06/18] fs: Split off remove_needs_file_privs() __remove_file_privs()
` [RFC PATCH v3 07/18] fs: Split off file_needs_update_time and __file_update_time
` [RFC PATCH v3 08/18] xfs: Enable async write file modification handling
` [RFC PATCH v3 09/18] fs: Optimization for concurrent file time updates
` [RFC PATCH v3 10/18] xfs: Add async buffered write support
` [RFC PATCH v3 11/18] io_uring: Add support for async buffered writes
` [RFC PATCH v3 12/18] mm: Move starting of background writeback into the main balancing loop
` [RFC PATCH v3 13/18] mm: Move updates of dirty_exceeded into one place
` [RFC PATCH v3 14/18] mm: Prepare balance_dirty_pages() for async buffered writes
` [RFC PATCH v3 15/18] mm: Add balance_dirty_pages_ratelimited_async() function
` [RFC PATCH v3 16/18] iomap: Use balance_dirty_pages_ratelimited_flags in iomap_write_iter
` [RFC PATCH v3 17/18] io_uring: Add tracepoint for short writes
` [RFC PATCH v3 18/18] xfs: Enable async buffered write support

[PATCH v1 0/2] nolibc updates for Linux 5.20
 2022-05-20 17:32 UTC  (8+ messages)
` [PATCH v1 1/2] tools/nolibc/stdlib: Support overflow checking for older compiler versions
` [PATCH v1 2/2] tools/nolibc/stdio: Add format attribute to enable printf warnings

[syzbot] general protection fault in __io_arm_poll_handler
 2022-05-20 12:53 UTC  (2+ messages)

[ammarfaizi2-block:palmer/linux/riscv-compat 20/20] riscv64-linux-ld: arch/riscv/kernel/compat_syscall_table.o:undefined reference to `compat_sys_fadvise64_64'
 2022-05-20  3:28 UTC 

[ammarfaizi2-block:dhowells/linux-fs/fscache-next 3/3] fs/cifs/fscache.c:106:14: error: 'struct cifsInodeInfo' has no member named 'netfs_ctx'
 2022-05-20  0:52 UTC 

[ammarfaizi2-block:dhowells/linux-fs/fscache-next 3/3] fs/cifs/fscache.c:106:9: error: no member named 'netfs_ctx' in 'struct cifsInodeInfo'
 2022-05-20  0:08 UTC 

[PATCH v2] io_uring: fix sparce warnings about __kernel_rwf_t casts
 2022-05-19 18:28 UTC  (5+ messages)
      ` [PATCH v3] io_uring: fix incorrect __kernel_rwf_t cast

[blk] 77c570a1ea: WARNING:at_block/blk-cgroup.c:#blkg_create
 2022-05-19 17:55 UTC  (3+ messages)

[ammarfaizi2-block:stable/linux-stable-rc/queue/4.19 12/15] drivers/mmc/core/mmc_ops.c:960:13: warning: variable 'timeout' set but not used
 2022-05-19 17:23 UTC 

[ammarfaizi2-block:paulmck/linux-rcu/dev 53/55] include/linux/rcupdate.h:207:34: error: implicit declaration of function 'rcu_tasks_trace_qs'; did you mean 'rcu_tasks_classic_qs'?
 2022-05-19  3:55 UTC  (2+ messages)

[PATCH for-next] io_uring: add fully sparse buffer registration
 2022-05-18 18:53 UTC  (3+ messages)

[ammarfaizi2-block:paulmck/linux-rcu/dev 43/51] ERROR: modpost: "rcu_tasks_trace_qs_blkd" [kernel/torture.ko] undefined!
 2022-05-18 16:43 UTC  (2+ messages)

sparse fixes for io_uring
 2022-05-18 12:27 UTC  (8+ messages)
` [PATCH 1/6] io_uring: use a rwf_t for io_rw.flags
` [PATCH 2/6] io_uring: don't use ERR_PTR for user pointers
` [PATCH 3/6] io_uring: drop a spurious inline on a forward declaration
` [PATCH 4/6] io_uring: make apoll_events a __poll_t
` [PATCH 5/6] io_uring: consistently use the EPOLL* defines
` [PATCH 6/6] io_uring: use rcu_dereference in io_close

[PATCH V2 0/1] ubd: add io_uring based userspace block driver
 2022-05-18 10:45 UTC  (11+ messages)
` [PATCH V2 1/1] "

[RFC PATCH v2 00/16] io-uring/xfs: support async buffered writes
 2022-05-17 11:28 UTC  (21+ messages)
` [RFC PATCH v2 01/16] block: add check for async buffered writes to generic_write_checks
` [RFC PATCH v2 02/16] iomap: add iomap_page_create_gfp to allocate iomap_pages
` [RFC PATCH v2 03/16] iomap: use iomap_page_create_gfp() in __iomap_write_begin
` [RFC PATCH v2 04/16] iomap: add async buffered write support
` [RFC PATCH v2 05/16] xfs: add iomap "
` [RFC PATCH v2 07/16] fs: split off need_file_update_time and do_file_update_time
` [RFC PATCH v2 08/16] fs: add pending file update time flag
` [RFC PATCH v2 09/16] xfs: enable async write file modification handling
` [RFC PATCH v2 10/16] xfs: add async buffered write support
` [RFC PATCH v2 11/16] io_uring: add support for async buffered writes
` [RFC PATCH v2 12/16] mm: factor out _balance_dirty_pages() from balance_dirty_pages()
` [RFC PATCH v2 13/16] mm: add balance_dirty_pages_ratelimited_flags() function
` [RFC PATCH v2 14/16] iomap: use balance_dirty_pages_ratelimited_flags in iomap_write_iter
` [RFC PATCH v2 15/16] io_uring: add tracepoint for short writes
` [RFC PATCH v2 16/16] xfs: enable async buffered write support

[REGRESSION] lxc-stop hang on 5.17.x kernels
 2022-05-17  8:19 UTC 

[PATCH] drivers:uio: Fix system crashes during driver switchover
 2022-05-17  7:34 UTC  (4+ messages)


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