Skip to content

Commit e9f930a

Browse files
jstancekdjwong
authored andcommitted
iomap: fix return value of iomap_dio_bio_actor on 32bit systems
Naresh reported LTP diotest4 failing for 32bit x86 and arm -next kernels on ext4. Same problem exists in 5.4-rc7 on xfs. The failure comes down to: openat(AT_FDCWD, "testdata-4.5918", O_RDWR|O_DIRECT) = 4 mmap2(NULL, 4096, PROT_READ, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f7b000 read(4, 0xb7f7b000, 4096) = 0 // expects -EFAULT Problem is conversion at iomap_dio_bio_actor() return. Ternary operator has a return type and an attempt is made to convert each of operands to the type of the other. In this case "ret" (int) is converted to type of "copied" (unsigned long). Both have size of 4 bytes: size_t copied = 0; int ret = -14; long long actor_ret = copied ? copied : ret; On x86_64: actor_ret == -14; On x86 : actor_ret == 4294967282 Replace ternary operator with 2 return statements to avoid this unwanted conversion. Fixes: 4721a60 ("iomap: dio data corruption and spurious errors when pipes fill") Reported-by: Naresh Kamboju <[email protected]> Signed-off-by: Jan Stancek <[email protected]> Reviewed-by: Christoph Hellwig <[email protected]> Reviewed-by: Darrick J. Wong <[email protected]> Signed-off-by: Darrick J. Wong <[email protected]>
1 parent 2b91b28 commit e9f930a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

fs/iomap/direct-io.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,9 @@ iomap_dio_bio_actor(struct inode *inode, loff_t pos, loff_t length,
318318
if (pad)
319319
iomap_dio_zero(dio, iomap, pos, fs_block_size - pad);
320320
}
321-
return copied ? copied : ret;
321+
if (copied)
322+
return copied;
323+
return ret;
322324
}
323325

324326
static loff_t

0 commit comments

Comments
 (0)