diff options
author | Michael Ellerman <mpe@ellerman.id.au> | 2014-12-02 16:52:06 +1100 |
---|---|---|
committer | Shuah Khan <shuahkh@osg.samsung.com> | 2014-12-02 13:52:53 -0700 |
commit | 3f4994cfc15f38a3159c6e3a4b3ab2e1481a6b02 (patch) | |
tree | f3c54c3536fba90c7d3f6dacd90d057525229f82 /include/uapi | |
parent | 884716497d4c777f4b8798fab361b4bad351f5bc (diff) | |
download | op-kernel-dev-3f4994cfc15f38a3159c6e3a4b3ab2e1481a6b02.zip op-kernel-dev-3f4994cfc15f38a3159c6e3a4b3ab2e1481a6b02.tar.gz |
kcmp: Move kcmp.h into uapi
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>
Diffstat (limited to 'include/uapi')
-rw-r--r-- | include/uapi/linux/Kbuild | 1 | ||||
-rw-r--r-- | include/uapi/linux/kcmp.h | 17 |
2 files changed, 18 insertions, 0 deletions
diff --git a/include/uapi/linux/Kbuild b/include/uapi/linux/Kbuild index b70237e..1cf50d6 100644 --- a/include/uapi/linux/Kbuild +++ b/include/uapi/linux/Kbuild @@ -209,6 +209,7 @@ header-y += ivtvfb.h header-y += ixjuser.h header-y += jffs2.h header-y += joystick.h +header-y += kcmp.h header-y += kd.h header-y += kdev_t.h header-y += kernel-page-flags.h diff --git a/include/uapi/linux/kcmp.h b/include/uapi/linux/kcmp.h new file mode 100644 index 0000000..84df14b --- /dev/null +++ b/include/uapi/linux/kcmp.h @@ -0,0 +1,17 @@ +#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 */ |