The same calculation is done in p9_client_write(). Signed-off-by: Venkateswararao Jujjuri <jvrao@xxxxxxxxxxxxxxxxxx> Signed-off-by: Badari Pulavarty <pbadari@xxxxxxxxxx> --- fs/9p/vfs_file.c | 5 +---- 1 files changed, 1 insertions(+), 4 deletions(-) diff --git a/fs/9p/vfs_file.c b/fs/9p/vfs_file.c index e97c92b..2695491 100644 --- a/fs/9p/vfs_file.c +++ b/fs/9p/vfs_file.c @@ -235,11 +235,8 @@ v9fs_file_write(struct file *filp, const char __user * data, rsize = fid->iounit ? fid->iounit : clnt->msize - P9_IOHDRSZ; do { - if (count < rsize) - rsize = count; - n = p9_client_write(fid, NULL, data+total, origin+total, - rsize); + count); if (n <= 0) break; count -= n; -- 1.6.5.2 -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html