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/direct.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/direct.c')
-rw-r--r-- | fs/nfs/direct.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/fs/nfs/direct.c b/fs/nfs/direct.c index 0faba4cb531d..90b00ce42cbe 100644 --- a/fs/nfs/direct.c +++ b/fs/nfs/direct.c | |||
@@ -319,10 +319,16 @@ static ssize_t nfs_direct_read_schedule_segment(struct nfs_direct_req *dreq, | |||
319 | bytes = min(rsize,count); | 319 | bytes = min(rsize,count); |
320 | 320 | ||
321 | result = -ENOMEM; | 321 | result = -ENOMEM; |
322 | rhdr = nfs_readhdr_alloc(nfs_page_array_len(pgbase, bytes)); | 322 | rhdr = nfs_readhdr_alloc(); |
323 | if (unlikely(!rhdr)) | 323 | if (unlikely(!rhdr)) |
324 | break; | 324 | break; |
325 | data = &rhdr->rpc_data; | 325 | data = nfs_readdata_alloc(&rhdr->header, nfs_page_array_len(pgbase, bytes)); |
326 | if (!data) { | ||
327 | nfs_readhdr_free(&rhdr->header); | ||
328 | break; | ||
329 | } | ||
330 | data->header = &rhdr->header; | ||
331 | atomic_inc(&data->header->refcnt); | ||
326 | pages = &data->pages; | 332 | pages = &data->pages; |
327 | 333 | ||
328 | down_read(¤t->mm->mmap_sem); | 334 | down_read(¤t->mm->mmap_sem); |