All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ceph: fix buffer pointer advance in ceph_sync_write
@ 2013-03-19  1:46 Henry C Chang
  2013-03-19 16:10 ` Greg Farnum
  0 siblings, 1 reply; 2+ messages in thread
From: Henry C Chang @ 2013-03-19  1:46 UTC (permalink / raw)
  To: ceph-devel

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>
---
 fs/ceph/file.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/ceph/file.c b/fs/ceph/file.c
index e51558f..4bcbcb6 100644
--- a/fs/ceph/file.c
+++ b/fs/ceph/file.c
@@ -608,7 +608,7 @@ out:
 		pos += len;
 		written += len;
 		left -= len;
-		data += written;
+		data += len;
 		if (left)
 			goto more;
 
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-03-19 16:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-19  1:46 [PATCH] ceph: fix buffer pointer advance in ceph_sync_write Henry C Chang
2013-03-19 16:10 ` Greg Farnum

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.