From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751176AbcEIGnm (ORCPT ); Mon, 9 May 2016 02:43:42 -0400 Received: from terminus.zytor.com ([198.137.202.10]:36624 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751102AbcEIGnk (ORCPT ); Mon, 9 May 2016 02:43:40 -0400 Date: Sun, 8 May 2016 23:43:05 -0700 From: tip-bot for Davidlohr Bueso Message-ID: Cc: hpa@zytor.com, dave@stgolabs.net, torvalds@linux-foundation.org, dbueso@suse.de, peterz@infradead.org, linux-kernel@vger.kernel.org, mingo@kernel.org, tglx@linutronix.de Reply-To: hpa@zytor.com, dave@stgolabs.net, tglx@linutronix.de, linux-kernel@vger.kernel.org, mingo@kernel.org, torvalds@linux-foundation.org, dbueso@suse.de, peterz@infradead.org In-Reply-To: <1462766290-28664-1-git-send-email-dave@stgolabs.net> References: <1462766290-28664-1-git-send-email-dave@stgolabs.net> To: linux-tip-commits@vger.kernel.org Subject: [tip:sched/core] sched/core: Fix comment typo in wake_q_add() Git-Commit-ID: 58fe9c4621b7219e724c0b7af053112f974a08c3 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 58fe9c4621b7219e724c0b7af053112f974a08c3 Gitweb: http://git.kernel.org/tip/58fe9c4621b7219e724c0b7af053112f974a08c3 Author: Davidlohr Bueso AuthorDate: Sun, 8 May 2016 20:58:10 -0700 Committer: Ingo Molnar CommitDate: Mon, 9 May 2016 08:39:52 +0200 sched/core: Fix comment typo in wake_q_add() ... the comment clearly refers to wake_up_q(), and not wake_up_list(). Signed-off-by: Davidlohr Bueso Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Thomas Gleixner Cc: dave@stgolabs.net Link: http://lkml.kernel.org/r/1462766290-28664-1-git-send-email-dave@stgolabs.net Signed-off-by: Ingo Molnar --- kernel/sched/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/sched/core.c b/kernel/sched/core.c index a6d3e7a..e09f92c 100644 --- a/kernel/sched/core.c +++ b/kernel/sched/core.c @@ -465,7 +465,7 @@ void wake_q_add(struct wake_q_head *head, struct task_struct *task) * wakeup due to that. * * This cmpxchg() implies a full barrier, which pairs with the write - * barrier implied by the wakeup in wake_up_list(). + * barrier implied by the wakeup in wake_up_q(). */ if (cmpxchg(&node->next, NULL, WAKE_Q_TAIL)) return;