diff options
author | Chao Yu <yuchao0@huawei.com> | 2020-11-02 07:21:31 +0100 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2020-11-02 17:33:02 +0100 |
commit | fa4320cefb8537a70cc28c55d311a1f569697cd3 (patch) | |
tree | 596c685e2223c8a86ac0c21bffb26e92664362da /include/trace/events | |
parent | f2fs: fix to seek incorrect data offset in inline data file (diff) | |
download | linux-fa4320cefb8537a70cc28c55d311a1f569697cd3.tar.xz linux-fa4320cefb8537a70cc28c55d311a1f569697cd3.zip |
f2fs: move ioctl interface definitions to separated file
Like other filesystem does, we introduce a new file f2fs.h in path of
include/uapi/linux/, and move f2fs-specified ioctl interface definitions
to that file, after then, in order to use those definitions, userspace
developer only need to include the new header file rather than
copy & paste definitions from fs/f2fs/f2fs.h.
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'include/trace/events')
-rw-r--r-- | include/trace/events/f2fs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/trace/events/f2fs.h b/include/trace/events/f2fs.h index f8f1e85ff130..56b113e3cd6a 100644 --- a/include/trace/events/f2fs.h +++ b/include/trace/events/f2fs.h @@ -6,6 +6,7 @@ #define _TRACE_F2FS_H #include <linux/tracepoint.h> +#include <uapi/linux/f2fs.h> #define show_dev(dev) MAJOR(dev), MINOR(dev) #define show_dev_ino(entry) show_dev(entry->dev), (unsigned long)entry->ino |