Received: by 2002:a05:6a10:17d3:0:0:0:0 with SMTP id hz19csp3114572pxb; Tue, 13 Apr 2021 19:40:54 -0700 (PDT) X-Google-Smtp-Source: ABdhPJwSViYwVjeB8jDIfSqyysDpkgM5KS9YG7Q6N3MfawkRnqzTAkJeK9WzbOZ1cPsN04KKvqOl X-Received: by 2002:a05:6402:31ad:: with SMTP id dj13mr37523413edb.167.1618368053990; Tue, 13 Apr 2021 19:40:53 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1618368053; cv=none; d=google.com; s=arc-20160816; b=Cbd/tyzOtOBoYw9qYACrtTqGPP3SB0SNRuM6ZC0IrYA6H9zmgsccV3ecOVBQ7/ygwC xtkfXn/Q9y1scLYZ8pufq/iB+/owbyqlNoQfUse40kjmfTu/eAPglYXewmZN92sixSpq AAlOsNDSQiTrj7UBqIB7reS7lSXGArmcui8HVyVHiMHSXBcaR1czEp0rWTMUURooQ6Wl 093SVVc4F+taomSdbpVMRsdaX/FQarPAor1dsAT305Cn5hI9dJctH+oDPF40xpitNqRH 8doQYJXngaVvn9OdCtveMVqArjpeXCAnqRrr8Cs5EYLbjlfdcxEcAXbca9f8afIt9Ybx WoXg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:subject:cc:to:from:date; bh=mP3ussWSreTuW1KdD2Z+zW0CRSsnJdWHJWuMUP0w62g=; b=XgtK83EpfdVsBlD5gqt3AErm4ky6V+WoaVKdX0vf3n0FoCZc4wSOrMx1CXrNT2F93q 678RY0hg2QhH3hZX0w1r/cS3IdTkQBCOdEtIUoZEhRZw4cQB4DFLD6G3IJdXRE/2Qouf 6p468nSzBoFMpGaU8s40hrGCfUHkPkVMBaerX82fF7Besyp4jQOHalbiT7mfLtK7oWqn 7n7S4O0RK8slNQZVL59VJygkZOKU1CtSVje+/+avsOGe/+fOuqfw4kyQ1eC1KMdgw7zf 9IVvXK8tKTbyscpuj7Dm9vrVN2l8us6uqwXk2x+yyl2WYRppwrLwZOeLbfruEeOvRl+G ozgA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id o18si11704885ejx.460.2021.04.13.19.40.31; Tue, 13 Apr 2021 19:40:53 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S245323AbhDMQ21 (ORCPT + 99 others); Tue, 13 Apr 2021 12:28:27 -0400 Received: from mail.kernel.org ([198.145.29.99]:48804 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1343767AbhDMQ20 (ORCPT ); Tue, 13 Apr 2021 12:28:26 -0400 Received: from gandalf.local.home (cpe-66-24-58-225.stny.res.rr.com [66.24.58.225]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id CD61A61220; Tue, 13 Apr 2021 16:28:05 +0000 (UTC) Date: Tue, 13 Apr 2021 12:28:04 -0400 From: Steven Rostedt To: Dietmar Eggemann Cc: Hui Su , mingo@redhat.com, peterz@infradead.org, juri.lelli@redhat.com, vincent.guittot@linaro.org, bsegall@google.com, mgorman@suse.de, bristot@redhat.com, linux-kernel@vger.kernel.org Subject: Re: [PATCH] sched: remove the redundant comments Message-ID: <20210413122804.2d69fca6@gandalf.local.home> In-Reply-To: References: <20210412073928.1120823-1-suhui@zeku.com> X-Mailer: Claws Mail 3.17.8 (GTK+ 2.24.33; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 13 Apr 2021 10:36:07 +0200 Dietmar Eggemann wrote: > > @@ -897,11 +897,6 @@ DECLARE_STATIC_KEY_FALSE(sched_uclamp_used); > > struct rq { > > /* runqueue lock: */ > > raw_spinlock_t lock; > > - > > - /* > > - * nr_running and cpu_load should be in the same cacheline because > > - * remote CPUs use both these fields when doing load calculation. > > - */ > > unsigned int nr_running; > > #ifdef CONFIG_NUMA_BALANCING > > unsigned int nr_numa_running; > > I forgot to remove this snippet back then. LGTM. > > Add a > > Fixes: 55627e3cd22c ("sched/core: Remove rq->cpu_load[]") > > line. It's just removing a comment. Should it really need a "Fixes" tag, which will cause many people to look at it to determine if it should be backported to stable? -- Steve