From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754814AbbGGGul (ORCPT ); Tue, 7 Jul 2015 02:50:41 -0400 Received: from terminus.zytor.com ([198.137.202.10]:57632 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753097AbbGGGug (ORCPT ); Tue, 7 Jul 2015 02:50:36 -0400 Date: Mon, 6 Jul 2015 23:50:02 -0700 From: tip-bot for Byungchul Park Message-ID: Cc: peterz@infradead.org, tglx@linutronix.de, torvalds@linux-foundation.org, mingo@kernel.org, linux-kernel@vger.kernel.org, hpa@zytor.com, byungchul.park@lge.com Reply-To: torvalds@linux-foundation.org, peterz@infradead.org, tglx@linutronix.de, mingo@kernel.org, linux-kernel@vger.kernel.org, byungchul.park@lge.com, hpa@zytor.com In-Reply-To: <1436187062-19658-1-git-send-email-byungchul.park@lge.com> References: <1436187062-19658-1-git-send-email-byungchul.park@lge.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:sched/core] sched/fair: Fix a comment reflecting function name change Git-Commit-ID: 399595f248cb25dccb6044b53c47c44c174dc23d 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: 399595f248cb25dccb6044b53c47c44c174dc23d Gitweb: http://git.kernel.org/tip/399595f248cb25dccb6044b53c47c44c174dc23d Author: Byungchul Park AuthorDate: Mon, 6 Jul 2015 21:51:02 +0900 Committer: Ingo Molnar CommitDate: Tue, 7 Jul 2015 08:46:11 +0200 sched/fair: Fix a comment reflecting function name change update_cfs_rq_load_contribution() was changed to __update_cfs_rq_tg_load_contrib() - sync up the commit in calc_tg_weight() too. Signed-off-by: Byungchul Park Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Thomas Gleixner Link: http://lkml.kernel.org/r/1436187062-19658-1-git-send-email-byungchul.park@lge.com Signed-off-by: Ingo Molnar --- kernel/sched/fair.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c index 03ea05b..587a2f6 100644 --- a/kernel/sched/fair.c +++ b/kernel/sched/fair.c @@ -2349,7 +2349,7 @@ static inline long calc_tg_weight(struct task_group *tg, struct cfs_rq *cfs_rq) /* * Use this CPU's actual weight instead of the last load_contribution * to gain a more accurate current total weight. See - * update_cfs_rq_load_contribution(). + * __update_cfs_rq_tg_load_contrib(). */ tg_weight = atomic_long_read(&tg->load_avg); tg_weight -= cfs_rq->tg_load_contrib;