From nobody Wed Apr 29 03:26:02 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 A983AC433EF for ; Tue, 24 May 2022 08:08:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230456AbiEXIIY (ORCPT ); Tue, 24 May 2022 04:08:24 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36794 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229941AbiEXIIW (ORCPT ); Tue, 24 May 2022 04:08:22 -0400 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id CB6AF77F05 for ; Tue, 24 May 2022 01:08:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1653379701; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=1XePJKWKS494invWsXxLhpx1dxpr9onX16/MIWMtA1w=; b=CV7MR8mwgpOEobptHIobTv5+qPYKnP+T8PmJt1Nhmpo8w3jkzYN5syNla2rdPQ2TIVK4Ry XcP6EKvjH1JYasinwZig9aeR6Fp1vqeCVRxtpywHPOh00aB9eJZoKFZ3JRKWAraXuvZAfn gSJbV6UKcUlHxJI1Vw//UKmY5Q+FcOo= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-586-ldqEcdFFPiqt1KFdNOPDiw-1; Tue, 24 May 2022 04:08:17 -0400 X-MC-Unique: ldqEcdFFPiqt1KFdNOPDiw-1 Received: from smtp.corp.redhat.com (int-mx09.intmail.prod.int.rdu2.redhat.com [10.11.54.9]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 40119803B42; Tue, 24 May 2022 08:08:17 +0000 (UTC) Received: from gshan.redhat.com (ovpn-12-91.pek2.redhat.com [10.72.12.91]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 0D533492C3B; Tue, 24 May 2022 08:08:08 +0000 (UTC) From: Gavin Shan To: linux-kernel@vger.kernel.org Cc: 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, shan.gavin@gmail.com, zhenyzha@redhat.com Subject: [PATCH] sched/topology: Fix typo in build_sched_domain() Date: Tue, 24 May 2022 16:07:33 +0800 Message-Id: <20220524080733.1362818-1-gshan@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Scanned-By: MIMEDefang 2.85 on 10.11.54.9 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" In build_sched_domain(), it seems that "borken" is misspelled. To correct it with "broken". Signed-off-by: Gavin Shan --- kernel/sched/topology.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/sched/topology.c b/kernel/sched/topology.c index 810750e62118..b1d4f059bc04 100644 --- a/kernel/sched/topology.c +++ b/kernel/sched/topology.c @@ -2166,7 +2166,7 @@ static struct sched_domain *build_sched_domain(struct= sched_domain_topology_leve =20 if (!cpumask_subset(sched_domain_span(child), sched_domain_span(sd))) { - pr_err("BUG: arch topology borken\n"); + pr_err("BUG: arch topology broken\n"); #ifdef CONFIG_SCHED_DEBUG pr_err(" the %s domain not a subset of the %s domain\n", child->name, sd->name); --=20 2.23.0