diff options
Diffstat (limited to 'fs/gfs2/file.c')
| -rw-r--r-- | fs/gfs2/file.c | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/gfs2/file.c b/fs/gfs2/file.c index a51079bd4af..aa996471ec5 100644 --- a/fs/gfs2/file.c +++ b/fs/gfs2/file.c @@ -775,6 +775,7 @@ const struct file_operations gfs2_dir_fops = {  	.fsync		= gfs2_fsync,  	.lock		= gfs2_lock,  	.flock		= gfs2_flock, +	.llseek		= default_llseek,  };  #endif /* CONFIG_GFS2_FS_LOCKING_DLM */ @@ -801,5 +802,6 @@ const struct file_operations gfs2_dir_fops_nolock = {  	.open		= gfs2_open,  	.release	= gfs2_close,  	.fsync		= gfs2_fsync, +	.llseek		= default_llseek,  };  |