aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/file.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/gfs2/file.c')
-rw-r--r--fs/gfs2/file.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/gfs2/file.c b/fs/gfs2/file.c
index 4edd662c8232..55d25a68b496 100644
--- a/fs/gfs2/file.c
+++ b/fs/gfs2/file.c
@@ -771,6 +771,7 @@ const struct file_operations gfs2_dir_fops = {
771 .fsync = gfs2_fsync, 771 .fsync = gfs2_fsync,
772 .lock = gfs2_lock, 772 .lock = gfs2_lock,
773 .flock = gfs2_flock, 773 .flock = gfs2_flock,
774 .llseek = default_llseek,
774}; 775};
775 776
776#endif /* CONFIG_GFS2_FS_LOCKING_DLM */ 777#endif /* CONFIG_GFS2_FS_LOCKING_DLM */
@@ -797,5 +798,6 @@ const struct file_operations gfs2_dir_fops_nolock = {
797 .open = gfs2_open, 798 .open = gfs2_open,
798 .release = gfs2_close, 799 .release = gfs2_close,
799 .fsync = gfs2_fsync, 800 .fsync = gfs2_fsync,
801 .llseek = default_llseek,
800}; 802};
801 803