Skip to content
Snippets Groups Projects
Commit fc0f2961 authored by jvrao's avatar jvrao Committed by Eric Van Hensbergen
Browse files

9p: Fixes a simple bug enabling writes beyond 2GB.


Fixes a simple bug so that large files beyond 2GB can be created.

Signed-off-by: default avatarVenkateswararao Jujjuri <jvrao@linux.vnet.ibm.com>
Signed-off-by: default avatarBadari Pulavarty <pbadari@us.ibm.com>
Signed-off-by: default avatarEric Van Hensbergen <ericvh@gmail.com>
parent 45bc21ed
No related branches found
No related tags found
No related merge requests found
...@@ -215,7 +215,7 @@ v9fs_file_write(struct file *filp, const char __user * data, ...@@ -215,7 +215,7 @@ v9fs_file_write(struct file *filp, const char __user * data,
struct p9_fid *fid; struct p9_fid *fid;
struct p9_client *clnt; struct p9_client *clnt;
struct inode *inode = filp->f_path.dentry->d_inode; struct inode *inode = filp->f_path.dentry->d_inode;
int origin = *offset; loff_t origin = *offset;
unsigned long pg_start, pg_end; unsigned long pg_start, pg_end;
P9_DPRINTK(P9_DEBUG_VFS, "data %p count %d offset %x\n", data, P9_DPRINTK(P9_DEBUG_VFS, "data %p count %d offset %x\n", data,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment