From: Henry C Chang Date: Tue, 19 Mar 2013 01:46:26 +0000 (+0800) Subject: ceph: fix buffer pointer advance in ceph_sync_write X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=022f3e2ee2354599faccf5a764a5a24a5dd194c9;p=linux-beck.git 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 Reviewed-by: Greg Farnum Tested-by: Sage Weil --- diff --git a/fs/ceph/file.c b/fs/ceph/file.c index 0ac6e159bdc6..aeafa67bfe99 100644 --- a/fs/ceph/file.c +++ b/fs/ceph/file.c @@ -611,7 +611,7 @@ out: pos += len; written += len; left -= len; - data += written; + data += len; if (left) goto more;