From: Mark Harmstone <maharmstone@meta.com>
To: "dsterba@suse.cz" <dsterba@suse.cz>
Cc: "linux-btrfs@vger.kernel.org" <linux-btrfs@vger.kernel.org>,
Johannes Thumshirn <johannes.thumshirn@wdc.com>
Subject: Re: [PATCH] btrfs: fix lockdep warnings on io_uring encoded reads
Date: Fri, 15 Nov 2024 15:43:51 +0000 [thread overview]
Message-ID: <d3be0f1b-ee2b-4372-9dac-c3d630dcb6cf@meta.com> (raw)
In-Reply-To: <20241114150630.GT31418@twin.jikos.cz>
On 14/11/24 15:06, David Sterba wrote:
> >
> On Tue, Nov 12, 2024 at 04:00:49PM +0000, Mark Harmstone wrote:
>> 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
>
> Please put that to a wrapper, we want to avoid #ifdefs in the middle of
> functions (there are exceptions), especially when the macro is for lock
> debugging.
>
> The wrapper name can follow naming and syntax of the other
> btrfs_lockde_* wrappers, so like btrfs_lockdep_inode_acquire(owner,
> lock). There is only one rwsem in inode, but for clarity and consistency
> I think it makes sense.
>
> btrfs_lockdep_inode_acquire(inode, i_rwsem);
Thanks David. The CONFIG_DEBUG_LOCK_ALLOC #ifdefs turned out not to be
necessary, lockdep handles this, but I'll create the wrappers to match
everything else.
Mark
prev parent reply other threads:[~2024-11-15 15:43 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
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 message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=d3be0f1b-ee2b-4372-9dac-c3d630dcb6cf@meta.com \
--to=maharmstone@meta.com \
--cc=dsterba@suse.cz \
--cc=johannes.thumshirn@wdc.com \
--cc=linux-btrfs@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.