diff options
author | Jeff Layton <jlayton@redhat.com> | 2012-09-19 06:22:30 -0700 |
---|---|---|
committer | Steve French <smfrench@gmail.com> | 2012-09-24 21:46:32 -0500 |
commit | c5fab6f4f081afcfcd7c1d444d9b900d6ef3e50b (patch) | |
tree | bfec76b22571f283e85491ad6a20f1aaba757122 /fs/cifs/cifsglob.h | |
parent | f4e49cd2dce2ccac6feae64fbb4e90f7d8baf370 (diff) | |
download | talos-op-linux-c5fab6f4f081afcfcd7c1d444d9b900d6ef3e50b.tar.gz talos-op-linux-c5fab6f4f081afcfcd7c1d444d9b900d6ef3e50b.zip |
cifs: turn the pages list in cifs_readdata into an array
We'll need an array to put into a smb_rqst, so convert this into an array
instead of (ab)using the lru list_head.
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Diffstat (limited to 'fs/cifs/cifsglob.h')
-rw-r--r-- | fs/cifs/cifsglob.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h index 737289b50ca5..b70863ebedf2 100644 --- a/fs/cifs/cifsglob.h +++ b/fs/cifs/cifsglob.h @@ -977,12 +977,13 @@ struct cifs_readdata { unsigned int bytes; pid_t pid; int result; - struct list_head pages; struct work_struct work; int (*marshal_iov) (struct cifs_readdata *rdata, unsigned int remaining); unsigned int nr_iov; struct kvec *iov; + unsigned int nr_pages; + struct page *pages[]; }; struct cifs_writedata; |