diff options
author | Fred Isaman <iisaman@netapp.com> | 2012-04-20 14:47:46 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-04-27 14:10:37 -0400 |
commit | 4db6e0b74c0f6dfc2f9c0690e8df512e3b635983 (patch) | |
tree | 19d8a2a7051bdab220b0bdcf3da1e350a53ce428 /fs/nfs/pagelist.c | |
parent | 30dd374f6fc1b202db3a1b57b61afff1326bad92 (diff) |
NFS: merge _full and _partial read rpc_ops
Decouple nfs_pgio_header and nfs_read_data, and have (possibly
multiple) nfs_read_datas each take a refcount on nfs_pgio_header.
For the moment keeps nfs_read_header as a way to preallocate a single
nfs_read_data with the nfs_pgio_header. The code doesn't need this,
and would be prettier without, but given the amount of churn I am
already introducing I didn't want to play with tuning new mempools.
This also fixes bug in pnfs_ld_handle_read_error. In the case of
desc->pg_bsize < PAGE_CACHE_SIZE, the pages list was empty, causing
replay attempt to do nothing.
Signed-off-by: Fred Isaman <iisaman@netapp.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/pagelist.c')
-rw-r--r-- | fs/nfs/pagelist.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/fs/nfs/pagelist.c b/fs/nfs/pagelist.c index d349bd4c48db..cd4c038135a7 100644 --- a/fs/nfs/pagelist.c +++ b/fs/nfs/pagelist.c | |||
@@ -39,6 +39,30 @@ bool nfs_pgarray_set(struct nfs_page_array *p, unsigned int pagecount) | |||
39 | return p->pagevec != NULL; | 39 | return p->pagevec != NULL; |
40 | } | 40 | } |
41 | 41 | ||
42 | void nfs_pgheader_init(struct nfs_pageio_descriptor *desc, | ||
43 | struct nfs_pgio_header *hdr, | ||
44 | void (*release)(struct nfs_pgio_header *hdr)) | ||
45 | { | ||
46 | hdr->req = nfs_list_entry(desc->pg_list.next); | ||
47 | hdr->inode = desc->pg_inode; | ||
48 | hdr->cred = hdr->req->wb_context->cred; | ||
49 | hdr->io_start = req_offset(hdr->req); | ||
50 | hdr->good_bytes = desc->pg_count; | ||
51 | hdr->release = release; | ||
52 | } | ||
53 | |||
54 | void nfs_set_pgio_error(struct nfs_pgio_header *hdr, int error, loff_t pos) | ||
55 | { | ||
56 | spin_lock(&hdr->lock); | ||
57 | if (pos < hdr->io_start + hdr->good_bytes) { | ||
58 | set_bit(NFS_IOHDR_ERROR, &hdr->flags); | ||
59 | clear_bit(NFS_IOHDR_EOF, &hdr->flags); | ||
60 | hdr->good_bytes = pos - hdr->io_start; | ||
61 | hdr->error = error; | ||
62 | } | ||
63 | spin_unlock(&hdr->lock); | ||
64 | } | ||
65 | |||
42 | static inline struct nfs_page * | 66 | static inline struct nfs_page * |
43 | nfs_page_alloc(void) | 67 | nfs_page_alloc(void) |
44 | { | 68 | { |