mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-17 11:57:07 +07:00
3f4994cfc1
kcmp.h appears to be part of the API, it's documented in kcmp(2), and the selftests/kcmp code uses it. So move it to uapi so it's actually exported. Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Acked-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
18 lines
229 B
C
18 lines
229 B
C
#ifndef _UAPI_LINUX_KCMP_H
|
|
#define _UAPI_LINUX_KCMP_H
|
|
|
|
/* Comparison type */
|
|
enum kcmp_type {
|
|
KCMP_FILE,
|
|
KCMP_VM,
|
|
KCMP_FILES,
|
|
KCMP_FS,
|
|
KCMP_SIGHAND,
|
|
KCMP_IO,
|
|
KCMP_SYSVSEM,
|
|
|
|
KCMP_TYPES,
|
|
};
|
|
|
|
#endif /* _UAPI_LINUX_KCMP_H */
|