]> git.baikalelectronics.ru Git - kernel.git/commit
afs: Fix the maths in afs_fs_store_data()
authorDavid Howells <dhowells@redhat.com>
Thu, 16 Mar 2017 16:27:47 +0000 (16:27 +0000)
committerDavid Howells <dhowells@redhat.com>
Thu, 16 Mar 2017 16:27:47 +0000 (16:27 +0000)
commit079f16d585181c44c84870be424f1372e736bb1b
treef96b12c641b60681eeac2bfd612c8532793e6420
parent958cb5b17c2dcd5de6a5f6a2941a24738f928835
afs: Fix the maths in afs_fs_store_data()

afs_fs_store_data() works out of the size of the write it's going to make,
but it uses 32-bit unsigned subtraction in one place that gets
automatically cast to loff_t.

However, if to < offset, then the number goes negative, but as the result
isn't signed, this doesn't get sign-extended to 64-bits when placed in a
loff_t.

Fix by casting the operands to loff_t.

Signed-off-by: David Howells <dhowells@redhat.com>
fs/afs/fsclient.c