Received: by 2002:ac0:a582:0:0:0:0:0 with SMTP id m2-v6csp3405250imm; Fri, 19 Oct 2018 10:02:24 -0700 (PDT) X-Google-Smtp-Source: ACcGV60uWn7T4hBAN0khv8ia0/+lO+DeQgJAqJyuFshrqWHiwn5NYWQcsBUdjsxJQ6C0qpeLvor8 X-Received: by 2002:a17:902:e81:: with SMTP id 1-v6mr19526519plx.314.1539968544859; Fri, 19 Oct 2018 10:02:24 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1539968544; cv=none; d=google.com; s=arc-20160816; b=no447fnFOGGHtUeAYsehxq4pE/hXmk+2WZ5FJOZDHlC8SFVEqU7jSZOgKCissbt3q6 s1P4p8KJD0QmD32l1y/c6L0C2Ikhgql/nFuW8owxUtFwSpuAC0N/2NReQEWY2EwXvX2a cHGzKC38tUkM9sVSp5icPhKKGfznMzPbRp9VsZFwbP+cWJZJJJpiP62k4CB0AFwFZXGa 0jvlpalEfkhcB7Jj5FjLjaSyJ3hBvLNEPsWpSvjyx2n99qvrDe4x0hA8toXK04X7ZEiS LJRik5jxmP3+dHkpyRkc0it/4TtXcqYAvqkITZrcJ3SYU/FODFeyHoC33ASkgNvyNFZa X1Lw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:message-id:date:subject:cc:to:from; bh=Zw690HEQUeyxUAr+SI0I70f0JPRSWO1kuOevzDltQJw=; b=T42Ktw8t0ZwZpRqblTq4MvD5K62acdPqmJKr+iPe9n+AkctLzNPu98who4Cbt1nzJa mx6gyZqVtLYitp8pD3RnUk6/td77f1umDxgPShhUYB5b/etTpO37sFZNNl2mBv4/tcSn pu9iaFNHMBEZwdERvkzoX7C4MIM/AQHmql3X5+hx0IEY42+uv8G+9Cwzh1BqzK9UDvFx x76e2i5fg6oxFlSFhvHT6nfj4jxu66Cyfp8cpgaPCfHseolSzp1ALyygBSkOgbBZo9pA YM5Xk2SPpSIs/xLFgD+JyEP0QFoZpXl0YHj3p8MHIPlDOJiUV+QhyuucGj64it1AP24z nK7g== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id 8-v6si9523502pgz.395.2018.10.19.10.02.09; Fri, 19 Oct 2018 10:02:24 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728003AbeJTBHA (ORCPT + 99 others); Fri, 19 Oct 2018 21:07:00 -0400 Received: from mail115-95.sinamail.sina.com.cn ([218.30.115.95]:56994 "HELO mail115-95.sinamail.sina.com.cn" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1727885AbeJTBHA (ORCPT ); Fri, 19 Oct 2018 21:07:00 -0400 X-Greylist: delayed 572 seconds by postgrey-1.27 at vger.kernel.org; Fri, 19 Oct 2018 21:07:00 EDT Received: from unknown (HELO localhost.localdomain)([139.204.56.122]) by sina.com with ESMTP id 5BCA0A080000EF7D; Fri, 20 Oct 2018 00:45:03 +0800 (CST) X-Sender: penghao122@sina.com.cn X-Auth-ID: penghao122@sina.com.cn X-SMAIL-MID: 601841132275 From: Peng Hao To: mingo@redhat.com, peterz@infradead.org Cc: linux-kernel@vger.kernel.org, Peng Hao Subject: [PATCH] sched/fair : modify comment of fbq_type description Date: Fri, 19 Oct 2018 12:44:54 -0400 Message-Id: <1539967494-12493-1-git-send-email-penghao122@sina.com.cn> X-Mailer: git-send-email 1.8.3.1 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Peng Hao for type 'all', the comment 'there is no distinction' is vague. make it clearer. Signed-off-by: Peng Hao --- 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 f808ddf..3a0543f 100644 --- a/kernel/sched/fair.c +++ b/kernel/sched/fair.c @@ -8304,7 +8304,7 @@ static struct rq *find_busiest_queue(struct lb_env *env, * We classify groups/runqueues into three groups: * - regular: there are !numa tasks * - remote: there are numa tasks that run on the 'wrong' node - * - all: there is no distinction + * - all: there are numa tasks that run on the 'right' node * * In order to avoid migrating ideally placed numa tasks, * ignore those when there's better options. -- 1.8.3.1