From nobody Mon Jun 22 20:26:56 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9E50BC433F5 for ; Thu, 17 Mar 2022 02:58:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238319AbiCQDAJ (ORCPT ); Wed, 16 Mar 2022 23:00:09 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59284 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234652AbiCQDAG (ORCPT ); Wed, 16 Mar 2022 23:00:06 -0400 Received: from ha.nfschina.com (unknown [IPv6:2400:dd01:100f:2:72e2:84ff:fe10:5f45]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 276FF201BC; Wed, 16 Mar 2022 19:58:51 -0700 (PDT) Received: from localhost (unknown [127.0.0.1]) by ha.nfschina.com (Postfix) with ESMTP id 98BF11E80D24; Thu, 17 Mar 2022 10:57:50 +0800 (CST) X-Virus-Scanned: amavisd-new at test.com Received: from ha.nfschina.com ([127.0.0.1]) by localhost (ha.nfschina.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZotB6GPQhZ7h; Thu, 17 Mar 2022 10:57:47 +0800 (CST) Received: from localhost.localdomain (unknown [101.228.249.16]) (Authenticated sender: yuzhe@nfschina.com) by ha.nfschina.com (Postfix) with ESMTPA id 548181E80CD2; Thu, 17 Mar 2022 10:57:47 +0800 (CST) From: yuzhe To: mingo@redhat.com, peterz@infradead.org, juri.lelli@redhat.com, vincent.guittot@linaro.org, dietmar.eggemann@arm.com, rostedt@goodmis.org, bsegall@google.com, mgorman@suse.de, bristot@redhat.com Cc: linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org, yuzhe Subject: [PATCH] sched: Fix spelling mistake "then" -> "than" Date: Wed, 16 Mar 2022 19:58:41 -0700 Message-Id: <20220317025841.5738-1-yuzhe@nfschina.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" There is a spelling mistake in comment.Fix it. Signed-off-by: yuzhe --- 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 8bcc1dbc544c..e6b3d62389c9 100644 --- a/kernel/sched/fair.c +++ b/kernel/sched/fair.c @@ -5944,7 +5944,7 @@ static unsigned long capacity_of(int cpu) static void record_wakee(struct task_struct *p) { /* - * Only decay a single time; tasks that have less then 1 wakeup per + * Only decay a single time; tasks that have less than 1 wakeup per * jiffy will not have built up many flips. */ if (time_after(jiffies, current->wakee_flip_decay_ts + HZ)) { --=20 2.25.1