diff options
author | Jeff Layton <jlayton@kernel.org> | 2024-02-01 02:01:58 +0300 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2024-02-05 15:11:38 +0300 |
commit | a69ce85ec9af6bdc0b3511959a7dc1a324e5e16a (patch) | |
tree | 4df18a2921afb3ad3a002210fad2f84a32fa2425 /fs/ocfs2 | |
parent | 3d40f78169a0a954ff06e2b0f8e21463f7edb433 (diff) | |
download | linux-a69ce85ec9af6bdc0b3511959a7dc1a324e5e16a.tar.xz |
filelock: split common fields into struct file_lock_core
In a future patch, we're going to split file leases into their own
structure. Since a lot of the underlying machinery uses the same fields
move those into a new file_lock_core, and embed that inside struct
file_lock.
For now, add some macros to ensure that we can continue to build while
the conversion is in progress.
Signed-off-by: Jeff Layton <jlayton@kernel.org>
Link: https://lore.kernel.org/r/20240131-flsplit-v3-17-c6129007ee8d@kernel.org
Reviewed-by: NeilBrown <neilb@suse.de>
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'fs/ocfs2')
-rw-r--r-- | fs/ocfs2/locks.c | 1 | ||||
-rw-r--r-- | fs/ocfs2/stack_user.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/fs/ocfs2/locks.c b/fs/ocfs2/locks.c index ef4fd91b586e..84ad403b5998 100644 --- a/fs/ocfs2/locks.c +++ b/fs/ocfs2/locks.c @@ -8,6 +8,7 @@ */ #include <linux/fs.h> +#define _NEED_FILE_LOCK_FIELD_MACROS #include <linux/filelock.h> #include <linux/fcntl.h> diff --git a/fs/ocfs2/stack_user.c b/fs/ocfs2/stack_user.c index c11406cd87a8..39b7e47a8618 100644 --- a/fs/ocfs2/stack_user.c +++ b/fs/ocfs2/stack_user.c @@ -9,6 +9,7 @@ #include <linux/module.h> #include <linux/fs.h> +#define _NEED_FILE_LOCK_FIELD_MACROS #include <linux/filelock.h> #include <linux/miscdevice.h> #include <linux/mutex.h> |