public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] selftests/x86: Update map_shadow_stack syscall nr
@ 2023-09-01 18:16 Rick Edgecombe
  2023-09-01 19:33 ` Sohil Mehta
  2023-09-01 21:39 ` [tip: x86/urgent] " tip-bot2 for Rick Edgecombe
  0 siblings, 2 replies; 7+ messages in thread
From: Rick Edgecombe @ 2023-09-01 18:16 UTC (permalink / raw)
  To: x86, Thomas Gleixner, Ingo Molnar, Andy Lutomirski,
	Borislav Petkov, Dave Hansen, H . Peter Anvin, Peter Zijlstra,
	linux-kernel
  Cc: rick.p.edgecombe

Shadow stack's selftest utilizes the map_shadow_stack syscall. The
syscall is new with the feature, but the selftests cannot automatically
find the headers for the kernel source tree they are located in. This
resulted in the shadow stack test failing to build until the brand new
headers were installed.

To avoid this, a copy of the new uapi defines needed by the test were
included in the selftest (see link for discussion). When shadow stack was
merged the syscall number was changed, but the copy in the selftest was
not updated.

So update the copy of the syscall number define used when the required
headers are not installed, to have the final syscall number from the
merge.

Link: https://lore.kernel.org/lkml/Y%2FijdXoTAATt0+Ct@zn.tnic/
Signed-off-by: Rick Edgecombe <rick.p.edgecombe@intel.com>
---
 tools/testing/selftests/x86/test_shadow_stack.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/x86/test_shadow_stack.c b/tools/testing/selftests/x86/test_shadow_stack.c
index 2188968674cb..757e6527f67e 100644
--- a/tools/testing/selftests/x86/test_shadow_stack.c
+++ b/tools/testing/selftests/x86/test_shadow_stack.c
@@ -40,7 +40,7 @@
  * without building the headers.
  */
 #ifndef __NR_map_shadow_stack
-#define __NR_map_shadow_stack	452
+#define __NR_map_shadow_stack	453
 
 #define SHADOW_STACK_SET_TOKEN	(1ULL << 0)
 
-- 
2.34.1


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

end of thread, other threads:[~2023-09-02  0:12 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-01 18:16 [PATCH] selftests/x86: Update map_shadow_stack syscall nr Rick Edgecombe
2023-09-01 19:33 ` Sohil Mehta
2023-09-01 20:35   ` Edgecombe, Rick P
2023-09-01 22:19     ` Sohil Mehta
2023-09-01 22:51       ` Edgecombe, Rick P
2023-09-02  0:12         ` Sohil Mehta
2023-09-01 21:39 ` [tip: x86/urgent] " tip-bot2 for Rick Edgecombe

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