From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp-bc09.mail.infomaniak.ch (smtp-bc09.mail.infomaniak.ch [45.157.188.9]) (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 CC57239D6D9 for ; Wed, 8 Jul 2026 10:50:23 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=45.157.188.9 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783507830; cv=none; b=LmyRH7KoO8KMRLYxyZvn/k+rS30MiLDxeYzTGDDELWKijvnmF7ejekDSyKDER3ZZou/5eOjQp9F1gytTS9HVPON8MyTxRHqnrTT4Pmhlny7Zh47jQr54p9dD/0SMDHmXBWeX4/JWhA2ixkEKv0DO644Xh+zNM6UQixadg40jRPE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783507830; c=relaxed/simple; bh=VZgUdV2A7pZjLp6C/BH+7oAEipYUhSeWuVMjB9UBZSY=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=M34Pzy1ubJxWKV9wdZuUXvHdHvG8T8BgNUcbCz18OR5rNWblQMPk+p0BsrgsoaUfQO4Yo5W7/5VrNtWworexD2ED+lm3JqILYLJoYJH1TiuKh10PXcBDOkmecUx1piu0Luu2zbyR53bNPIoGGaln8eByG+vWQZbsfxY/POxn2TU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=digikod.net; spf=pass smtp.mailfrom=digikod.net; dkim=pass (1024-bit key) header.d=digikod.net header.i=@digikod.net header.b=nIK2iBP4; arc=none smtp.client-ip=45.157.188.9 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=digikod.net Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=digikod.net Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=digikod.net header.i=@digikod.net header.b="nIK2iBP4" Received: from smtp-3-0000.mail.infomaniak.ch (smtp-3-0000.mail.infomaniak.ch [10.4.36.107]) by smtp-4-3000.mail.infomaniak.ch (Postfix) with ESMTPS id 4gwF6B4VzPzNWW; Wed, 8 Jul 2026 12:42:26 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=digikod.net; s=20191114; t=1783507346; bh=Wg6f8s2e6QLWTvt1elGbzdKqXJ9qbnt5tU9p1LjHfq4=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=nIK2iBP4vM0qd3XgRSYJQB5+67ybWxa1r1r823kbFdX56HIuk+9zscjmNCcj2SSe1 bGRZQy6PDBMWy+w1Pc/T25Qz/rj9DyslsW5PUcjCGOzr2VPd85f3gtgaucJZVlR6B4 FlO9JiHXPWU4lFVSQr1s0WpiDN+pYNwGWfX7w3Ik= Received: from unknown by smtp-3-0000.mail.infomaniak.ch (Postfix) with ESMTPA id 4gwF695pr1zPtL; Wed, 8 Jul 2026 12:42:25 +0200 (CEST) Date: Wed, 8 Jul 2026 12:42:23 +0200 From: =?utf-8?Q?Micka=C3=ABl_Sala=C3=BCn?= To: Wang Yan Cc: gnoack@google.com, shuah@kernel.org, linux-security-module@vger.kernel.org, linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2] selftests/landlock: fix spelling error in fs_test comment Message-ID: <20260708.toQuea2Gi4zi@digikod.net> References: <20260702015823.368529-1-wangyan01@kylinos.cn> 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=utf-8 Content-Disposition: inline In-Reply-To: <20260702015823.368529-1-wangyan01@kylinos.cn> X-Infomaniak-Routing: alpha Applied, thanks! On Thu, Jul 02, 2026 at 09:58:23AM +0800, Wang Yan wrote: > Fix typo "allowes" -> "allows" in Landlock filesystem test comment. > > Signed-off-by: Wang Yan > --- > tools/testing/selftests/landlock/fs_test.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tools/testing/selftests/landlock/fs_test.c b/tools/testing/selftests/landlock/fs_test.c > index 86e08aa6e0a7..e672089e9329 100644 > --- a/tools/testing/selftests/landlock/fs_test.c > +++ b/tools/testing/selftests/landlock/fs_test.c > @@ -6927,7 +6927,7 @@ TEST_F_FORK(layout2_overlay, same_content_different_file) > ASSERT_EQ(0, test_open(path_entry, O_RDWR)); > } > > - /* Only allowes access to the merge hierarchy. */ > + /* Only allows access to the merge hierarchy. */ > enforce_fs(_metadata, ACCESS_RW, layer5_merge_only); > > /* Checks new accesses on lower layer. */ > -- > 2.25.1 > >