diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2026-08-18 15:16:10 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2026-08-18 15:16:10 -0700 |
| commit | 6138016752322261e26ac88eaeb64c0c890f98a2 (patch) | |
| tree | ca5c9f66f9fdcbc9c79325f767fcd731fac810e0 | |
| parent | 3424d8c18a7da1010d03391a22e728b857d0d5c5 (diff) | |
| parent | 2a98ffac7733e77a178af7240f9fa9392ca45aad (diff) | |
Merge tag 'core-rseq-2026-08-17' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull rseq updates from Thomas Gleixner:
"Two trivial updates for RSEQ:
- Add the recently added new test binaries to .gitignore
- Fix a trivial typo in a comment"
* tag 'core-rseq-2026-08-17' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
selftests/rseq: Add missing test binaries to .gitignore
selftests/rseq: Fix spelling of accommodate
| -rw-r--r-- | tools/testing/selftests/rseq/.gitignore | 2 | ||||
| -rw-r--r-- | tools/testing/selftests/rseq/rseq.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/tools/testing/selftests/rseq/.gitignore b/tools/testing/selftests/rseq/.gitignore index ec01d164c1f0..9b6eb6c3922f 100644 --- a/tools/testing/selftests/rseq/.gitignore +++ b/tools/testing/selftests/rseq/.gitignore @@ -11,3 +11,5 @@ param_test_mm_cid_benchmark param_test_mm_cid_compare_twice syscall_errors_test slice_test +legacy_check +check_optimized diff --git a/tools/testing/selftests/rseq/rseq.c b/tools/testing/selftests/rseq/rseq.c index be0d0a97031e..1cd633923b1d 100644 --- a/tools/testing/selftests/rseq/rseq.c +++ b/tools/testing/selftests/rseq/rseq.c @@ -73,7 +73,7 @@ static int rseq_ownership; #define ORIG_RSEQ_ALLOC_SIZE 32 /* - * Use a union to ensure we allocate a TLS area of 1024 bytes to accomodate an + * Use a union to ensure we allocate a TLS area of 1024 bytes to accommodate an * rseq registration that is larger than the current rseq ABI. */ union rseq_tls { |
