summaryrefslogtreecommitdiff
path: root/fs/xfs/xfs_file.c
diff options
context:
space:
mode:
authorJens Axboe <axboe@kernel.dk>2020-05-22 09:27:33 -0600
committerJens Axboe <axboe@kernel.dk>2020-06-21 20:44:25 -0600
commitf89fb730aa02f451fba1f8d5964dfec244d2e2d1 (patch)
treecb39cac38d019c8468892d7fa6effdb1e193b612 /fs/xfs/xfs_file.c
parenta304f0744824fd37d6e1aab4f9715f907724ad11 (diff)
xfs: flag files as supporting buffered async reads
XFS uses generic_file_read_iter(), which already supports this. Acked-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs/xfs/xfs_file.c')
-rw-r--r--fs/xfs/xfs_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_file.c b/fs/xfs/xfs_file.c
index 00db81eac80d..fdbff4860d61 100644
--- a/fs/xfs/xfs_file.c
+++ b/fs/xfs/xfs_file.c
@@ -1080,7 +1080,7 @@ xfs_file_open(
return -EFBIG;
if (XFS_FORCED_SHUTDOWN(XFS_M(inode->i_sb)))
return -EIO;
- file->f_mode |= FMODE_NOWAIT;
+ file->f_mode |= FMODE_NOWAIT | FMODE_BUF_RASYNC;
return 0;
}