aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2
diff options
context:
space:
mode:
Diffstat (limited to 'fs/gfs2')
-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 a51079bd4af1..aa996471ec5c 100644
--- a/fs/gfs2/file.c
+++ b/fs/gfs2/file.c
@@ -775,6 +775,7 @@ const struct file_operations gfs2_dir_fops = {
775 .fsync = gfs2_fsync, 775 .fsync = gfs2_fsync,
776 .lock = gfs2_lock, 776 .lock = gfs2_lock,
777 .flock = gfs2_flock, 777 .flock = gfs2_flock,
778 .llseek = default_llseek,
778}; 779};
779 780
780#endif /* CONFIG_GFS2_FS_LOCKING_DLM */ 781#endif /* CONFIG_GFS2_FS_LOCKING_DLM */
@@ -801,5 +802,6 @@ const struct file_operations gfs2_dir_fops_nolock = {
801 .open = gfs2_open, 802 .open = gfs2_open,
802 .release = gfs2_close, 803 .release = gfs2_close,
803 .fsync = gfs2_fsync, 804 .fsync = gfs2_fsync,
805 .llseek = default_llseek,
804}; 806};
805 807