diff options
author | Carlos Maiolino <cem@kernel.org> | 2025-03-18 14:10:30 +0100 |
---|---|---|
committer | Carlos Maiolino <cem@kernel.org> | 2025-03-18 14:10:30 +0100 |
commit | c3a60b673a229940ab531dfbe917a91c8ea3cefc (patch) | |
tree | 59788012ad345d08f02d78f5ff070cc6216d374f /fs/ext4/inode.c | |
parent | 8e6415460ff16f5a9673a021547e0a34358ddfe9 (diff) | |
parent | 89ce287c83c91f5d222809b82e597426587a862d (diff) |
Merge branch 'xfs-6.15-folios_vmalloc' into XFS-for-linus-6.15-merge
Merge buffer cache conversion to folios and vmalloc
Signed-off-by: Carlos Maiolino <cem@kernel.org>
Diffstat (limited to 'fs/ext4/inode.c')
-rw-r--r-- | fs/ext4/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index 7c54ae5fcbd4..ba2f1e3db7c7 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c @@ -3467,7 +3467,7 @@ static inline bool ext4_want_directio_fallback(unsigned flags, ssize_t written) return false; /* atomic writes are all-or-nothing */ - if (flags & IOMAP_ATOMIC) + if (flags & IOMAP_ATOMIC_HW) return false; /* can only try again if we wrote nothing */ |