From: Jens Axboe <axboe@kernel.dk>
Date: Mon, 3 Aug 2020 23:02:11 +0000 (-0600)
Subject: ext4: flag as supporting buffered async reads
X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=766ef1e101cddc8f5e722f1c0147e9c0499a2d43;p=linux.git

ext4: flag as supporting buffered async reads

ext4 uses generic_file_read_iter(), which already supports this.

Cc: Theodore Ts'o <tytso@mit.edu>
Signed-off-by: Jens Axboe <axboe@kernel.dk>

Link: https://lore.kernel.org/r/fb90cc2d-b12c-738f-21a4-dd7a8ae0556a@kernel.dk
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
---

diff --git a/fs/ext4/file.c b/fs/ext4/file.c
index 7d61069531d31..02ffbd29d6b04 100644
--- a/fs/ext4/file.c
+++ b/fs/ext4/file.c
@@ -844,7 +844,7 @@ static int ext4_file_open(struct inode *inode, struct file *filp)
 			return ret;
 	}
 
-	filp->f_mode |= FMODE_NOWAIT;
+	filp->f_mode |= FMODE_NOWAIT | FMODE_BUF_RASYNC;
 	return dquot_file_open(inode, filp);
 }