From: Jules Irenge <jbi.octave@gmail.com> To: linux-kernel@vger.kernel.org Cc: boqun.feng@gmail.com, Alexander Viro <viro@zeniv.linux.org.uk>, Dan Williams <dan.j.williams@intel.com>, Matthew Wilcox <willy@infradead.org>, Jan Kara <jack@suse.cz>, linux-fsdevel@vger.kernel.org (open list:FILESYSTEMS (VFS and infrastructure)), linux-nvdimm@lists.01.org (open list:FILESYSTEM DIRECT ACCESS (DAX)) Subject: [PATCH 3/7] dax: Add missing annotation for wait_entry_unlocked() Date: Tue, 31 Mar 2020 21:46:39 +0100 [thread overview] Message-ID: <20200331204643.11262-4-jbi.octave@gmail.com> (raw) In-Reply-To: <20200331204643.11262-1-jbi.octave@gmail.com> Sparse reports a warning at wait_entry_unlocked() warning: context imbalance in wait_entry_unlocked() - unexpected unlock The root cause is the missing annotation at wait_entry_unlocked() Add the missing __releases(xa) annotation. Signed-off-by: Jules Irenge <jbi.octave@gmail.com> --- fs/dax.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fs/dax.c b/fs/dax.c index 1f1f0201cad1..adcd2a57fbad 100644 --- a/fs/dax.c +++ b/fs/dax.c @@ -244,6 +244,7 @@ static void *get_unlocked_entry(struct xa_state *xas, unsigned int order) * After we call xas_unlock_irq(), we cannot touch xas->xa. */ static void wait_entry_unlocked(struct xa_state *xas, void *entry) + __releases(xa) { struct wait_exceptional_entry_queue ewait; wait_queue_head_t *wq; -- 2.24.1
next prev parent reply other threads:[~2020-03-31 20:47 UTC|newest] Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top [not found] <0/7> 2020-03-31 20:46 ` [PATCH 0/7] Lock warnings cleanup Jules Irenge 2020-03-31 20:46 ` [PATCH 1/7] fs: Add missing annotation for iput_final() Jules Irenge 2020-03-31 20:46 ` [PATCH 2/7] fsnotify: Add missing annotation for fsnotify_finish_user_wait() Jules Irenge 2020-04-01 9:24 ` Jan Kara 2020-04-03 16:15 ` Jules Irenge 2020-04-03 16:52 ` Jan Kara 2020-03-31 20:46 ` Jules Irenge [this message] 2020-04-01 10:01 ` [PATCH 3/7] dax: Add missing annotation for wait_entry_unlocked() Jan Kara 2020-04-01 16:04 ` Jules Irenge 2020-03-31 20:46 ` [PATCH 4/7] sysctl: Add missing annotation for start_unregistering() Jules Irenge 2020-04-02 16:06 ` Luis Chamberlain 2020-03-31 20:46 ` [PATCH 5/7] btrfs: Add missing annotation for btrfs_lock_cluster() Jules Irenge 2020-04-01 15:57 ` David Sterba 2020-03-31 20:46 ` [PATCH 6/7] btrfs: Add missing annotation for btrfs_tree_lock() Jules Irenge 2020-03-31 20:46 ` [PATCH 7/7] tty: serial_core: Add missing annotation for _unlock_and_check_sysrq() Jules Irenge 2020-04-16 13:58 ` Greg Kroah-Hartman
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=20200331204643.11262-4-jbi.octave@gmail.com \ --to=jbi.octave@gmail.com \ --cc=boqun.feng@gmail.com \ --cc=dan.j.williams@intel.com \ --cc=jack@suse.cz \ --cc=linux-fsdevel@vger.kernel.org \ --cc=linux-kernel@vger.kernel.org \ --cc=linux-nvdimm@lists.01.org \ --cc=viro@zeniv.linux.org.uk \ --cc=willy@infradead.org \ --subject='Re: [PATCH 3/7] dax: Add missing annotation for wait_entry_unlocked()' \ /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
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).