1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2#ifndef _ASM_X86_PRCTL_H
3#define _ASM_X86_PRCTL_H
4
5#define ARCH_SET_GS 0x1001
6#define ARCH_SET_FS 0x1002
7#define ARCH_GET_FS 0x1003
8#define ARCH_GET_GS 0x1004
9
10#define ARCH_GET_CPUID 0x1011
11#define ARCH_SET_CPUID 0x1012
12
13#define ARCH_MAP_VDSO_X32 0x2001
14#define ARCH_MAP_VDSO_32 0x2002
15#define ARCH_MAP_VDSO_64 0x2003
16
17#endif /* _ASM_X86_PRCTL_H */
18