-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
selftests/bpf: Extract syscall wrapper
Extract the helper to set up SYS_PREFIX for fentry and kprobe selftests that use __x86_sys_* attach functions. Suggested-by: Andrii Nakryiko <andrii@kernel.org> Signed-off-by: Kenta Tada <Kenta.Tada@sony.com> Signed-off-by: Andrii Nakryiko <andrii@kernel.org> Link: https://lore.kernel.org/bpf/20220124141622.4378-2-Kenta.Tada@sony.com
- Loading branch information
Kenta Tada
authored and
Andrii Nakryiko
committed
Jan 25, 2022
1 parent
fc76387
commit 78a2054
Showing
2 changed files
with
20 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* SPDX-License-Identifier: GPL-2.0 */ | ||
#ifndef __BPF_MISC_H__ | ||
#define __BPF_MISC_H__ | ||
|
||
#if defined(__TARGET_ARCH_x86) | ||
#define SYSCALL_WRAPPER 1 | ||
#define SYS_PREFIX "__x64_" | ||
#elif defined(__TARGET_ARCH_s390) | ||
#define SYSCALL_WRAPPER 1 | ||
#define SYS_PREFIX "__s390x_" | ||
#elif defined(__TARGET_ARCH_arm64) | ||
#define SYSCALL_WRAPPER 1 | ||
#define SYS_PREFIX "__arm64_" | ||
#else | ||
#define SYSCALL_WRAPPER 0 | ||
#define SYS_PREFIX "" | ||
#endif | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters