From nobody Sun Apr 12 00:54:59 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 DB1D1C19F28 for ; Wed, 3 Aug 2022 08:54:31 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234595AbiHCIy3 (ORCPT ); Wed, 3 Aug 2022 04:54:29 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49596 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233846AbiHCIyZ (ORCPT ); Wed, 3 Aug 2022 04:54:25 -0400 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E2E711EAD5; Wed, 3 Aug 2022 01:54:24 -0700 (PDT) Date: Wed, 03 Aug 2022 08:54:22 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1659516863; h=from:from:sender:sender:reply-to: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=O/NSsIc6TVFL4PnJzZ2d/RiVsM4iODEMnlsSeYNlHjE=; b=om1l4U8afPskB+vcuFo7UNYcEK4Z+Fm4grjBwMenj9IRJOyB126r6VCLC8wuQihs6bpmJY MaslNejD2qbuh94TmyMwb5otPiOit6AVkeNsdy9mo8T9Vt3RlPbR0bzjq5/Wl9OMDhYXJj 4DKFbkIETim4lXd83Ikonrj0R3CoIFio9b1Ae3lHrzrIwF5lFEVbbczCe6r7q09aD/dcoo ngxwDowvAtehBTA+HGLlbLeKA3jICuvn1tfn6RljU+VZUiWbxrZcjJTRnpDbmVrLRDNDGE DoEwLU6+myMWtZs0w2YxrUquAj3R1WtJ4ckv40d9XoryBbZi2IUPoTzAmpCCUQ== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1659516863; h=from:from:sender:sender:reply-to: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=O/NSsIc6TVFL4PnJzZ2d/RiVsM4iODEMnlsSeYNlHjE=; b=rg6XggWgAhzRrrQZJj9B9wmdlyv9gObxLRWxvq0TFM4OFQJVz5XobMlNUB12fpzH2YxcWj L18LGqZu7YEd6ICw== From: "tip-bot2 for Ingo Molnar" Sender: tip-bot2@linutronix.de Reply-to: linux-kernel@vger.kernel.org To: linux-tip-commits@vger.kernel.org Subject: [tip: sched/urgent] exit: Fix typo in comment: s/sub-theads/sub-threads Cc: linux-kernel@vger.kernel.org, Ingo Molnar , x86@kernel.org MIME-Version: 1.0 Message-ID: <165951686214.15455.15985773663272649627.tip-bot2@tip-bot2> Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following commit has been merged into the sched/urgent branch of tip: Commit-ID: dcca34754a3f5290406403b8066e3b15dda9f4bf Gitweb: https://git.kernel.org/tip/dcca34754a3f5290406403b8066e3b15d= da9f4bf Author: Ingo Molnar AuthorDate: Wed, 03 Aug 2022 10:43:42 +02:00 Committer: Ingo Molnar CommitterDate: Wed, 03 Aug 2022 10:44:54 +02:00 exit: Fix typo in comment: s/sub-theads/sub-threads Cc: linux-kernel@vger.kernel.org Signed-off-by: Ingo Molnar --- kernel/exit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/exit.c b/kernel/exit.c index 64c938c..84021b2 100644 --- a/kernel/exit.c +++ b/kernel/exit.c @@ -1051,7 +1051,7 @@ static int wait_task_zombie(struct wait_opts *wo, str= uct task_struct *p) * p->signal fields because the whole thread group is dead * and nobody can change them. * - * psig->stats_lock also protects us from our sub-theads + * psig->stats_lock also protects us from our sub-threads * which can reap other children at the same time. Until * we change k_getrusage()-like users to rely on this lock * we have to take ->siglock as well.