/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _UAPI_LINUX_PERSONALITY_H #define _UAPI_LINUX_PERSONALITY_H /* * Flags for bug emulation. * * These occupy the top three bytes. */ enum { … }; /* * Security-relevant compatibility flags that must be * cleared upon setuid or setgid exec: */ #define PER_CLEAR_ON_SETID … /* * Personality types. * * These go in the low byte. Avoid using the top bit, it will * conflict with error returns. */ enum { … }; #endif /* _UAPI_LINUX_PERSONALITY_H */