diff options
author | Namhyung Kim <namhyung@kernel.org> | 2024-12-02 19:53:46 -0800 |
---|---|---|
committer | Namhyung Kim <namhyung@kernel.org> | 2024-12-04 14:34:50 -0800 |
commit | 6d442c69cbe0f8ab47177b8af125e6c88b9e8cd0 (patch) | |
tree | 9f881e7326c539402cc84a9ae60134515cab5b10 /tools/perf | |
parent | 3cef7d8b12811dfd737e77e69d9ef72bc55365cf (diff) | |
download | lwn-6d442c69cbe0f8ab47177b8af125e6c88b9e8cd0.tar.gz lwn-6d442c69cbe0f8ab47177b8af125e6c88b9e8cd0.zip |
tools headers: Sync uapi/linux/fcntl.h with the kernel sources
To pick up the changes in this cset:
c374196b2b9f4b80 ("fs: name_to_handle_at() support for "explicit connectable" file handles")
95f567f81e43a1bc ("fs: Simplify getattr interface function checking AT_GETATTR_NOSEC flag")
This addresses these perf build warnings:
Warning: Kernel ABI header differences:
diff -u tools/perf/trace/beauty/include/uapi/linux/fcntl.h include/uapi/linux/fcntl.h
Please see tools/include/uapi/README for further details.
Reviewed-by: James Clark <james.clark@linaro.org>
Cc: Jeff Layton <jlayton@kernel.org>
Cc: Chuck Lever <chuck.lever@oracle.com>
Cc: Alexander Aring <alex.aring@gmail.com>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: linux-fsdevel@vger.kernel.org
Link: https://lore.kernel.org/r/20241203035349.1901262-9-namhyung@kernel.org
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Diffstat (limited to 'tools/perf')
-rw-r--r-- | tools/perf/trace/beauty/include/uapi/linux/fcntl.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tools/perf/trace/beauty/include/uapi/linux/fcntl.h b/tools/perf/trace/beauty/include/uapi/linux/fcntl.h index 87e2dec79fea..6e6907e63bfc 100644 --- a/tools/perf/trace/beauty/include/uapi/linux/fcntl.h +++ b/tools/perf/trace/beauty/include/uapi/linux/fcntl.h @@ -153,9 +153,6 @@ object identity and may not be usable with open_by_handle_at(2). */ #define AT_HANDLE_MNT_ID_UNIQUE 0x001 /* Return the u64 unique mount ID. */ - -#if defined(__KERNEL__) -#define AT_GETATTR_NOSEC 0x80000000 -#endif +#define AT_HANDLE_CONNECTABLE 0x002 /* Request a connectable file handle */ #endif /* _UAPI_LINUX_FCNTL_H */ |