Re: [PATCH 19/19] xfs: Add support for MAP_SYNC flag
From: Dan Williams <hidden>
Date: 2017-10-11 23:02:19
Also in:
linux-fsdevel, linux-xfs
From: Dan Williams <hidden>
Date: 2017-10-11 23:02:19
Also in:
linux-fsdevel, linux-xfs
On Wed, Oct 11, 2017 at 1:06 PM, Jan Kara [off-list ref] wrote:
Now when everything is prepared, add support in xfs to accept MAP_SYNC as an mmap(2) flag. Signed-off-by: Jan Kara <jack@suse.cz> --- fs/ext4/file.c | 1 + fs/xfs/xfs_file.c | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+)diff --git a/fs/ext4/file.c b/fs/ext4/file.c index f013cda84b3d..6b597cc6b29d 100644 --- a/fs/ext4/file.c +++ b/fs/ext4/file.c@@ -26,6 +26,7 @@ #include <linux/quotaops.h> #include <linux/pagevec.h> #include <linux/uio.h> +#include <linux/mman.h>
I assume you wanted this change earlier in the series.