From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Christoph Hellwig To: Ingo Molnar , Peter Zijlstra Cc: Andrew Morton , Al Viro , Andrea Arcangeli , Mike Rapoport , Jason Baron , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 3/3] sched/wait: assert the wait_queue_head lock is held in __wake_up_common Date: Thu, 14 Dec 2017 16:23:44 +0100 Message-Id: <20171214152344.6880-4-hch@lst.de> In-Reply-To: <20171214152344.6880-1-hch@lst.de> References: <20171214152344.6880-1-hch@lst.de> Sender: linux-kernel-owner@vger.kernel.org List-ID: Better ensure we actually hold the lock using lockdep than just commenting on it. Due to the various exported _locked interfaces it is far too easy to get the locking wrong. Signed-off-by: Christoph Hellwig Acked-by: Ingo Molnar --- kernel/sched/wait.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel/sched/wait.c b/kernel/sched/wait.c index 929ecb7d6b78..d09c4de4865c 100644 --- a/kernel/sched/wait.c +++ b/kernel/sched/wait.c @@ -76,6 +76,8 @@ static int __wake_up_common(struct wait_queue_head *wq_head, unsigned int mode, wait_queue_entry_t *curr, *next; int cnt = 0; + lockdep_assert_held(&wq_head->lock); + if (bookmark && (bookmark->flags & WQ_FLAG_BOOKMARK)) { curr = list_next_entry(bookmark, entry); -- 2.14.2