All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] btrfs: fix lockdep warnings on io_uring encoded reads
@ 2024-11-12 16:00 Mark Harmstone
  2024-11-13  8:21 ` Johannes Thumshirn
  2024-11-14 15:06 ` David Sterba
  0 siblings, 2 replies; 6+ messages in thread
From: Mark Harmstone @ 2024-11-12 16:00 UTC (permalink / raw)
  To: linux-btrfs; +Cc: Mark Harmstone, Johannes Thumshirn

Lockdep doesn't like the fact that btrfs_uring_read_extent() returns to
userspace still holding the inode lock, even though we release it once
the I/O finishes. Add calls to rwsem_release() and rwsem_acquire_read() to
work round this.

Signed-off-by: Mark Harmstone <maharmstone@fb.com>
Reported-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
---
 fs/btrfs/ioctl.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c
index 1fdeb216bf6c..6ea01e4f940e 100644
--- a/fs/btrfs/ioctl.c
+++ b/fs/btrfs/ioctl.c
@@ -4752,6 +4752,11 @@ static void btrfs_uring_read_finished(struct io_uring_cmd *cmd, unsigned int iss
 	size_t page_offset;
 	ssize_t ret;
 
+#ifdef CONFIG_DEBUG_LOCK_ALLOC
+	/* The inode lock has already been acquired in btrfs_uring_read_extent.  */
+	rwsem_acquire_read(&inode->vfs_inode.i_rwsem.dep_map, 0, 0, _THIS_IP_);
+#endif
+
 	if (priv->err) {
 		ret = priv->err;
 		goto out;
@@ -4860,6 +4865,15 @@ static int btrfs_uring_read_extent(struct kiocb *iocb, struct iov_iter *iter,
 	 * and inode and freeing the allocations.
 	 */
 
+#ifdef CONFIG_DEBUG_LOCK_ALLOC
+	/*
+	 * We're returning to userspace with the inode lock held, and that's
+	 * okay - it'll get unlocked in a kthread.  Call rwsem_release to
+	 * avoid confusing lockdep.
+	 */
+	rwsem_release(&inode->vfs_inode.i_rwsem.dep_map, _THIS_IP_);
+#endif
+
 	return -EIOCBQUEUED;
 
 out_fail:
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2024-11-15 15:43 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-12 16:00 [PATCH] btrfs: fix lockdep warnings on io_uring encoded reads Mark Harmstone
2024-11-13  8:21 ` Johannes Thumshirn
2024-11-13 10:24   ` Mark Harmstone
2024-11-13 10:26     ` Johannes Thumshirn
2024-11-14 15:06 ` David Sterba
2024-11-15 15:43   ` Mark Harmstone

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.