diff options
author | Benjamin Coddington <bcodding@redhat.com> | 2024-09-11 21:43:00 +0200 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2024-10-01 17:01:08 +0200 |
commit | b875bd5b381e114115922944f7a01e31f8b07c2a (patch) | |
tree | 6a7813db0effd4d221d70f231e8d15953eed5437 /fs/ocfs2 | |
parent | NLM/NFSD: Fix lock notifications for async-capable filesystems (diff) | |
download | linux-b875bd5b381e114115922944f7a01e31f8b07c2a.tar.xz linux-b875bd5b381e114115922944f7a01e31f8b07c2a.zip |
exportfs: Remove EXPORT_OP_ASYNC_LOCK
Now that GFS2 and OCFS2 are signalling async ->lock() support with
FOP_ASYNC_LOCK and checks for support are converted, we can remove
EXPORT_OP_ASYNC_LOCK.
Signed-off-by: Benjamin Coddington <bcodding@redhat.com>
Link: https://lore.kernel.org/r/0a114db814fec3086f937ae3d44a086f13b8de26.1726083391.git.bcodding@redhat.com
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'fs/ocfs2')
-rw-r--r-- | fs/ocfs2/export.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/ocfs2/export.c b/fs/ocfs2/export.c index 96b684763b39..b95724b767e1 100644 --- a/fs/ocfs2/export.c +++ b/fs/ocfs2/export.c @@ -280,5 +280,4 @@ const struct export_operations ocfs2_export_ops = { .fh_to_dentry = ocfs2_fh_to_dentry, .fh_to_parent = ocfs2_fh_to_parent, .get_parent = ocfs2_get_parent, - .flags = EXPORT_OP_ASYNC_LOCK, }; |