From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.ilvokhin.com (mail.ilvokhin.com [178.62.254.231]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 643F03D8104 for ; Thu, 16 Apr 2026 15:11:06 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=178.62.254.231 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776352267; cv=none; b=SB4OpE7XrdDTMF0nu2imKmqP4m0fjAKR6am0St78/6ioKY/2MBaS28k16nTd6GmDycnCOObXGge0pRkPQoFgMVQU9WtBlCYE1qhlcTGSkVAflJsZvI0afYrFgb1ayQ628zvXiAGgGmpgVdF3z8iZeeJqR0VZm5YwTXz+uUmHzqc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776352267; c=relaxed/simple; bh=1G+LEMShOA33ETWMfk/V0bKsPItDmne4wAlNPvfjQZo=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=rBrBKXn7XJluVcqBZENkW+ByfQlPGwxRiGBtQkLtW5sZOknOZbJ1VQPRHxXrihrQr3dbLT0WEC51GKUExSMbXGQ+6SG/cy9nzM/dcdWSJY2z/vExQK4RxbhxnzwF9ogbbcw2pr7cUBu7vDiFJPoKh9LDW+0rnr2B3z1BCP41P9I= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=ilvokhin.com; spf=pass smtp.mailfrom=ilvokhin.com; dkim=pass (1024-bit key) header.d=ilvokhin.com header.i=@ilvokhin.com header.b=DCroQJSm; arc=none smtp.client-ip=178.62.254.231 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=ilvokhin.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=ilvokhin.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=ilvokhin.com header.i=@ilvokhin.com header.b="DCroQJSm" Received: from shell.ilvokhin.com (shell.ilvokhin.com [138.68.190.75]) (Authenticated sender: d@ilvokhin.com) by mail.ilvokhin.com (Postfix) with ESMTPSA id B577AC745C; Thu, 16 Apr 2026 15:11:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ilvokhin.com; s=mail; t=1776352264; bh=k1Od2PO8o6AU68ehv87fwBW6TTudJnlNa5iMx8NIzZU=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=DCroQJSm0m+X0adM96X7cROJ6ShvzYdySnSq56Q1BfQvBLGIIiWX2nLu4gvjVxDmL BC0SWPvWJNET5QoICX1ZeAls2JBmDwvEYvJ3opYxfCtN3ZbU4WZxQG9j6+XrXB8BM8 x65A0a+qZWkQ5TIAHjGXHnRG6fwoTXv/dCgJ84fE= Date: Thu, 16 Apr 2026 15:11:01 +0000 From: Dmitry Ilvokhin To: Xiang Gao Cc: peterz@infradead.org, mingo@redhat.com, will@kernel.org, boqun@kernel.org, longman@redhat.com, linux-kernel@vger.kernel.org, Xiang Gao Subject: Re: [PATCH] locking: fix typos in comments Message-ID: References: <20260416090407.930301-1-gxxa03070307@gmail.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260416090407.930301-1-gxxa03070307@gmail.com> On Thu, Apr 16, 2026 at 05:04:07PM +0800, Xiang Gao wrote: > From: Xiang Gao > > Fix the following typos in comments: > > mutex.c: "crital" -> "critical" (2 instances) > mutex.c: "task_strcut" -> "task_struct" (2 instances) > rwsem.c: "Otherwisee" -> "Otherwise" > rwsem.c: "crital" -> "critical" (2 instances) > rwsem.c: "task_strcut" -> "task_struct" > > Signed-off-by: Xiang Gao Reviewed-by: Dmitry Ilvokhin