Linux Security Modules development
 help / color / mirror / Atom feed
* [PATCH 0/6] selftests: fix multiple spelling errors across submodules
@ 2026-07-01 12:35 Wang Yan
  2026-07-01 12:35 ` [PATCH 5/6] selftests/landlock: fix spelling error in fs_test comment Wang Yan
  2026-07-01 14:18 ` [PATCH 0/6] selftests: fix multiple spelling errors across submodules Sean Christopherson
  0 siblings, 2 replies; 3+ messages in thread
From: Wang Yan @ 2026-07-01 12:35 UTC (permalink / raw)
  To: Shuah Khan, Mickaël Salaün, Günther Noack,
	linux-security-module
  Cc: linux-kselftest, linux-kernel, Wang Yan

This series fixes trivial spelling typos in comments across multiple
selftests subdirectories. All changes are pure comment fixes, no
functional or logical change to any test logic.

Changes are split by subsystem for easier review and merging.

Please review.

Wang Yan (6):
  selftests/arm64: fix spelling errors in comments
  selftests/filesystems: fix spelling error in statmount test comment
  selftests/ftrace: fix spelling error in poll test comment
  selftests/kvm/x86: fix spelling error in xapic_ipi_test comment
  selftests/landlock: fix spelling error in fs_test comment
  selftests/powerpc/tm: fix spelling errors in comments

 tools/testing/selftests/arm64/gcs/libc-gcs.c                   | 2 +-
 tools/testing/selftests/arm64/pauth/pac.c                      | 2 +-
 tools/testing/selftests/filesystems/statmount/statmount_test.c | 2 +-
 tools/testing/selftests/ftrace/poll.c                          | 2 +-
 tools/testing/selftests/kvm/x86/xapic_ipi_test.c               | 2 +-
 tools/testing/selftests/landlock/fs_test.c                     | 2 +-
 tools/testing/selftests/powerpc/tm/tm-signal-msr-resv.c        | 2 +-
 tools/testing/selftests/powerpc/tm/tm-signal-stack.c           | 2 +-
 tools/testing/selftests/powerpc/tm/tm-tar.c                    | 2 +-
 9 files changed, 9 insertions(+), 9 deletions(-)

-- 
2.25.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 5/6] selftests/landlock: fix spelling error in fs_test comment
  2026-07-01 12:35 [PATCH 0/6] selftests: fix multiple spelling errors across submodules Wang Yan
@ 2026-07-01 12:35 ` Wang Yan
  2026-07-01 14:18 ` [PATCH 0/6] selftests: fix multiple spelling errors across submodules Sean Christopherson
  1 sibling, 0 replies; 3+ messages in thread
From: Wang Yan @ 2026-07-01 12:35 UTC (permalink / raw)
  To: Shuah Khan, Mickaël Salaün, Günther Noack,
	linux-security-module, linux-kselftest, linux-kernel
  Cc: Wang Yan

Fix typo "allowes" -> "allows" in Landlock filesystem test comment.

Signed-off-by: Wang Yan <wangyan01@kylinos.cn>
---
 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


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 0/6] selftests: fix multiple spelling errors across submodules
  2026-07-01 12:35 [PATCH 0/6] selftests: fix multiple spelling errors across submodules Wang Yan
  2026-07-01 12:35 ` [PATCH 5/6] selftests/landlock: fix spelling error in fs_test comment Wang Yan
@ 2026-07-01 14:18 ` Sean Christopherson
  1 sibling, 0 replies; 3+ messages in thread
From: Sean Christopherson @ 2026-07-01 14:18 UTC (permalink / raw)
  To: Wang Yan
  Cc: Shuah Khan, Mickaël Salaün, Günther Noack,
	linux-security-module, linux-kselftest, linux-kernel

On Wed, Jul 01, 2026, Wang Yan wrote:
> This series fixes trivial spelling typos in comments across multiple
> selftests subdirectories. All changes are pure comment fixes, no
> functional or logical change to any test logic.
> 
> Changes are split by subsystem for easier review and merging.

In the future, please send individual patches.  Splitting the patches is nice,
but then bundling them in a single series that affects different maintainer
domains reintroduces the friction you're trying to avoid, especially since most
of us only got the one patch.  E.g. I only received patch 4/6, which left me
wondering "what's in the other 5 patches?".

> Wang Yan (6):
>   selftests/arm64: fix spelling errors in comments
>   selftests/filesystems: fix spelling error in statmount test comment
>   selftests/ftrace: fix spelling error in poll test comment
>   selftests/kvm/x86: fix spelling error in xapic_ipi_test comment
>   selftests/landlock: fix spelling error in fs_test comment
>   selftests/powerpc/tm: fix spelling errors in comments
> 
>  tools/testing/selftests/arm64/gcs/libc-gcs.c                   | 2 +-
>  tools/testing/selftests/arm64/pauth/pac.c                      | 2 +-
>  tools/testing/selftests/filesystems/statmount/statmount_test.c | 2 +-
>  tools/testing/selftests/ftrace/poll.c                          | 2 +-
>  tools/testing/selftests/kvm/x86/xapic_ipi_test.c               | 2 +-
>  tools/testing/selftests/landlock/fs_test.c                     | 2 +-
>  tools/testing/selftests/powerpc/tm/tm-signal-msr-resv.c        | 2 +-
>  tools/testing/selftests/powerpc/tm/tm-signal-stack.c           | 2 +-
>  tools/testing/selftests/powerpc/tm/tm-tar.c                    | 2 +-
>  9 files changed, 9 insertions(+), 9 deletions(-)
> 
> -- 
> 2.25.1
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-07-01 14:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-01 12:35 [PATCH 0/6] selftests: fix multiple spelling errors across submodules Wang Yan
2026-07-01 12:35 ` [PATCH 5/6] selftests/landlock: fix spelling error in fs_test comment Wang Yan
2026-07-01 14:18 ` [PATCH 0/6] selftests: fix multiple spelling errors across submodules Sean Christopherson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox