mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
ceph: fix buffer pointer advance in ceph_sync_write
We should advance the user data pointer by _len_ instead of _written_. _len_ is the data length written in each iteration while _written_ is the accumulated data length we have writtent out. Signed-off-by: Henry C Chang <henry.cy.chang@gmail.com> Reviewed-by: Greg Farnum <greg@inktank.com> Tested-by: Sage Weil <sage@inktank.com>
This commit is contained in:
parent
2f276c5111
commit
022f3e2ee2
@ -611,7 +611,7 @@ out:
|
||||
pos += len;
|
||||
written += len;
|
||||
left -= len;
|
||||
data += written;
|
||||
data += len;
|
||||
if (left)
|
||||
goto more;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user