summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDanila Chernetsov <listdansp@mail.ru>2026-05-30 12:23:11 +0000
committerJan Kara <jack@suse.cz>2026-06-02 10:56:16 +0200
commita4659be0bc7cb1856ffb15b67f903229ae8891ec (patch)
treeae0c34b8d8efe69b0aafffefab7476743cb5e6cf /include
parentf6fce9f17d9cfde8a88beda1527600d6daacc49b (diff)
ext2: fix ignored return value of generic_write_sync()
Fix ext2_dio_write_iter() to propagate the error returned by generic_write_sync() instead of silently discarding it, which could cause write(2) to return success to userspace on O_SYNC/O_DSYNC files even when the sync failed. The correct pattern, already used in ext2_dax_write_iter() in the same file and in ext4, xfs, f2fs among others, is: if (ret > 0) ret = generic_write_sync(iocb, ret); Found by Linux Verification Center (linuxtesting.org) with SVACE. [JK: Reflect also filemap_write_and_wait() return value] Fixes: fb5de4358e1a ("ext2: Move direct-io to use iomap") Signed-off-by: Danila Chernetsov <listdansp@mail.ru> Link: https://patch.msgid.link/20260530122311.136803-1-listdansp@mail.ru Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'include')
0 files changed, 0 insertions, 0 deletions