>> -static void dio_complete(struct dio *dio, loff_t offset, ssize_t bytes)
>> +static int dio_complete(struct dio *dio, loff_t offset, int ret)
>> {
>> + ssize_t transferred = 0;
>> +
>> + if (dio->result) {
>> + transferred = dio->result;
>> +
>> + /* Check for short read case */
>> + if ((dio->rw == READ) && ((offset + transferred) > dio->i_size))
>> + transferred = dio->i_size - offset;
>
> On 32-bit machines ssize_t is `int' and loff_t is `long long'. I guess
> `transferred' cannot overflow because you can't write >4G. And I guess
> `transferred' cannot go negative because you cannot write >=2G. Can you
> confirm that thinking?
Well, I think this ssize_t mirrors the return types for the read and
write syscalls and match the ssize_t wrapping checks on input by
rw_verify_area() and do_readv_writev(). I *think* that covers it,
though I haven't really audited all the ways to get to this code.
- z
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[Index of Archives]
[Kernel Newbies]
[Netfilter]
[Bugtraq]
[Photo]
[Stuff]
[Gimp]
[Yosemite News]
[MIPS Linux]
[ARM Linux]
[Linux Security]
[Linux RAID]
[Video 4 Linux]
[Linux for the blind]
[Linux Resources]