Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/nfs/read.c |
| 3 | * |
| 4 | * Block I/O for NFS |
| 5 | * |
| 6 | * Partial copy of Linus' read cache modifications to fs/nfs/file.c |
| 7 | * modified for async RPC by okir@monad.swb.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | */ |
| 9 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/time.h> |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/errno.h> |
| 13 | #include <linux/fcntl.h> |
| 14 | #include <linux/stat.h> |
| 15 | #include <linux/mm.h> |
| 16 | #include <linux/slab.h> |
| 17 | #include <linux/pagemap.h> |
| 18 | #include <linux/sunrpc/clnt.h> |
| 19 | #include <linux/nfs_fs.h> |
| 20 | #include <linux/nfs_page.h> |
Andy Adamson | 64419a9 | 2011-03-01 01:34:16 +0000 | [diff] [blame] | 21 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
Fred Isaman | bae724e | 2011-03-01 01:34:15 +0000 | [diff] [blame] | 23 | #include "pnfs.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
Andy Adamson | f11c88a | 2009-04-01 09:22:25 -0400 | [diff] [blame] | 25 | #include "nfs4_fs.h" |
Trond Myklebust | 49a70f2 | 2006-12-05 00:35:38 -0500 | [diff] [blame] | 26 | #include "internal.h" |
Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 27 | #include "iostat.h" |
David Howells | 9a9fc1c | 2009-04-03 16:42:44 +0100 | [diff] [blame] | 28 | #include "fscache.h" |
Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #define NFSDBG_FACILITY NFSDBG_PAGECACHE |
| 31 | |
Trond Myklebust | 1751c36 | 2011-06-10 13:30:23 -0400 | [diff] [blame] | 32 | static const struct nfs_pageio_ops nfs_pageio_read_ops; |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 33 | static const struct rpc_call_ops nfs_read_common_ops; |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 34 | static const struct nfs_pgio_completion_ops nfs_async_read_completion_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 36 | static struct kmem_cache *nfs_rdata_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 38 | struct nfs_read_header *nfs_readhdr_alloc() |
Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 39 | { |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 40 | struct nfs_read_header *rhdr; |
Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 41 | |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 42 | rhdr = kmem_cache_zalloc(nfs_rdata_cachep, GFP_KERNEL); |
| 43 | if (rhdr) { |
| 44 | struct nfs_pgio_header *hdr = &rhdr->header; |
Fred Isaman | cd84160 | 2012-04-20 14:47:44 -0400 | [diff] [blame] | 45 | |
| 46 | INIT_LIST_HEAD(&hdr->pages); |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 47 | INIT_LIST_HEAD(&hdr->rpc_list); |
| 48 | spin_lock_init(&hdr->lock); |
| 49 | atomic_set(&hdr->refcnt, 0); |
Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 50 | } |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 51 | return rhdr; |
| 52 | } |
| 53 | |
Fred Isaman | 584aa81 | 2012-04-20 14:47:51 -0400 | [diff] [blame^] | 54 | static struct nfs_read_data *nfs_readdata_alloc(struct nfs_pgio_header *hdr, |
| 55 | unsigned int pagecount) |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 56 | { |
| 57 | struct nfs_read_data *data, *prealloc; |
| 58 | |
| 59 | prealloc = &container_of(hdr, struct nfs_read_header, header)->rpc_data; |
| 60 | if (prealloc->header == NULL) |
| 61 | data = prealloc; |
| 62 | else |
| 63 | data = kzalloc(sizeof(*data), GFP_KERNEL); |
| 64 | if (!data) |
| 65 | goto out; |
| 66 | |
| 67 | if (nfs_pgarray_set(&data->pages, pagecount)) { |
| 68 | data->header = hdr; |
| 69 | atomic_inc(&hdr->refcnt); |
| 70 | } else { |
| 71 | if (data != prealloc) |
| 72 | kfree(data); |
| 73 | data = NULL; |
| 74 | } |
| 75 | out: |
| 76 | return data; |
Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 77 | } |
| 78 | |
Fred Isaman | cd84160 | 2012-04-20 14:47:44 -0400 | [diff] [blame] | 79 | void nfs_readhdr_free(struct nfs_pgio_header *hdr) |
Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 80 | { |
Fred Isaman | cd84160 | 2012-04-20 14:47:44 -0400 | [diff] [blame] | 81 | struct nfs_read_header *rhdr = container_of(hdr, struct nfs_read_header, header); |
| 82 | |
| 83 | kmem_cache_free(nfs_rdata_cachep, rhdr); |
Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 84 | } |
| 85 | |
Trond Myklebust | 493292d | 2011-07-13 15:58:28 -0400 | [diff] [blame] | 86 | void nfs_readdata_release(struct nfs_read_data *rdata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | { |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 88 | struct nfs_pgio_header *hdr = rdata->header; |
| 89 | struct nfs_read_header *read_header = container_of(hdr, struct nfs_read_header, header); |
| 90 | |
Trond Myklebust | 383ba71 | 2008-02-19 20:04:20 -0500 | [diff] [blame] | 91 | put_nfs_open_context(rdata->args.context); |
Fred Isaman | 30dd374 | 2012-04-20 14:47:45 -0400 | [diff] [blame] | 92 | if (rdata->pages.pagevec != rdata->pages.page_array) |
| 93 | kfree(rdata->pages.pagevec); |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 94 | if (rdata != &read_header->rpc_data) |
| 95 | kfree(rdata); |
| 96 | else |
| 97 | rdata->header = NULL; |
| 98 | if (atomic_dec_and_test(&hdr->refcnt)) |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 99 | hdr->completion_ops->completion(hdr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | static |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | int nfs_return_empty_page(struct page *page) |
| 104 | { |
Christoph Lameter | eebd2aa | 2008-02-04 22:28:29 -0800 | [diff] [blame] | 105 | zero_user(page, 0, PAGE_CACHE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | SetPageUptodate(page); |
| 107 | unlock_page(page); |
| 108 | return 0; |
| 109 | } |
| 110 | |
Trond Myklebust | 62e4a76 | 2011-11-10 14:30:37 -0500 | [diff] [blame] | 111 | void nfs_pageio_init_read_mds(struct nfs_pageio_descriptor *pgio, |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 112 | struct inode *inode, |
| 113 | const struct nfs_pgio_completion_ops *compl_ops) |
Trond Myklebust | 1751c36 | 2011-06-10 13:30:23 -0400 | [diff] [blame] | 114 | { |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 115 | nfs_pageio_init(pgio, inode, &nfs_pageio_read_ops, compl_ops, |
Trond Myklebust | 1751c36 | 2011-06-10 13:30:23 -0400 | [diff] [blame] | 116 | NFS_SERVER(inode)->rsize, 0); |
| 117 | } |
| 118 | |
Trond Myklebust | 493292d | 2011-07-13 15:58:28 -0400 | [diff] [blame] | 119 | void nfs_pageio_reset_read_mds(struct nfs_pageio_descriptor *pgio) |
| 120 | { |
| 121 | pgio->pg_ops = &nfs_pageio_read_ops; |
| 122 | pgio->pg_bsize = NFS_SERVER(pgio->pg_inode)->rsize; |
| 123 | } |
Trond Myklebust | 1f94535 | 2011-07-13 15:59:57 -0400 | [diff] [blame] | 124 | EXPORT_SYMBOL_GPL(nfs_pageio_reset_read_mds); |
Trond Myklebust | 493292d | 2011-07-13 15:58:28 -0400 | [diff] [blame] | 125 | |
Fred Isaman | 584aa81 | 2012-04-20 14:47:51 -0400 | [diff] [blame^] | 126 | void nfs_pageio_init_read(struct nfs_pageio_descriptor *pgio, |
| 127 | struct inode *inode, |
| 128 | const struct nfs_pgio_completion_ops *compl_ops) |
Trond Myklebust | 1751c36 | 2011-06-10 13:30:23 -0400 | [diff] [blame] | 129 | { |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 130 | if (!pnfs_pageio_init_read(pgio, inode, compl_ops)) |
| 131 | nfs_pageio_init_read_mds(pgio, inode, compl_ops); |
Trond Myklebust | 1751c36 | 2011-06-10 13:30:23 -0400 | [diff] [blame] | 132 | } |
| 133 | |
David Howells | f42b293 | 2009-04-03 16:42:44 +0100 | [diff] [blame] | 134 | int nfs_readpage_async(struct nfs_open_context *ctx, struct inode *inode, |
| 135 | struct page *page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | struct nfs_page *new; |
| 138 | unsigned int len; |
Fred Isaman | c76069b | 2011-03-03 15:13:48 +0000 | [diff] [blame] | 139 | struct nfs_pageio_descriptor pgio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | |
Trond Myklebust | 49a70f2 | 2006-12-05 00:35:38 -0500 | [diff] [blame] | 141 | len = nfs_page_length(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | if (len == 0) |
| 143 | return nfs_return_empty_page(page); |
| 144 | new = nfs_create_request(ctx, inode, page, 0, len); |
| 145 | if (IS_ERR(new)) { |
| 146 | unlock_page(page); |
| 147 | return PTR_ERR(new); |
| 148 | } |
| 149 | if (len < PAGE_CACHE_SIZE) |
Christoph Lameter | eebd2aa | 2008-02-04 22:28:29 -0800 | [diff] [blame] | 150 | zero_user_segment(page, len, PAGE_CACHE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 152 | nfs_pageio_init_read(&pgio, inode, &nfs_async_read_completion_ops); |
Trond Myklebust | d8007d4 | 2011-06-10 13:30:23 -0400 | [diff] [blame] | 153 | nfs_pageio_add_request(&pgio, new); |
Trond Myklebust | 1751c36 | 2011-06-10 13:30:23 -0400 | [diff] [blame] | 154 | nfs_pageio_complete(&pgio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | return 0; |
| 156 | } |
| 157 | |
| 158 | static void nfs_readpage_release(struct nfs_page *req) |
| 159 | { |
Al Viro | 3d4ff43 | 2011-06-22 18:40:12 -0400 | [diff] [blame] | 160 | struct inode *d_inode = req->wb_context->dentry->d_inode; |
David Howells | 7f8e05f | 2009-04-03 16:42:45 +0100 | [diff] [blame] | 161 | |
| 162 | if (PageUptodate(req->wb_page)) |
| 163 | nfs_readpage_to_fscache(d_inode, req->wb_page, 0); |
| 164 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | unlock_page(req->wb_page); |
| 166 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | dprintk("NFS: read done (%s/%Ld %d@%Ld)\n", |
Al Viro | 3d4ff43 | 2011-06-22 18:40:12 -0400 | [diff] [blame] | 168 | req->wb_context->dentry->d_inode->i_sb->s_id, |
| 169 | (long long)NFS_FILEID(req->wb_context->dentry->d_inode), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | req->wb_bytes, |
| 171 | (long long)req_offset(req)); |
Nick Wilson | 10d2c46 | 2005-09-22 21:44:28 -0700 | [diff] [blame] | 172 | nfs_release_request(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | } |
| 174 | |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 175 | /* Note io was page aligned */ |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 176 | static void nfs_read_completion(struct nfs_pgio_header *hdr) |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 177 | { |
| 178 | unsigned long bytes = 0; |
| 179 | |
| 180 | if (test_bit(NFS_IOHDR_REDO, &hdr->flags)) |
| 181 | goto out; |
| 182 | if (!test_bit(NFS_IOHDR_ERROR, &hdr->flags)) { |
| 183 | while (!list_empty(&hdr->pages)) { |
| 184 | struct nfs_page *req = nfs_list_entry(hdr->pages.next); |
| 185 | struct page *page = req->wb_page; |
| 186 | |
| 187 | if (test_bit(NFS_IOHDR_EOF, &hdr->flags)) { |
| 188 | if (bytes > hdr->good_bytes) |
| 189 | zero_user(page, 0, PAGE_SIZE); |
| 190 | else if (hdr->good_bytes - bytes < PAGE_SIZE) |
| 191 | zero_user_segment(page, |
| 192 | hdr->good_bytes & ~PAGE_MASK, |
| 193 | PAGE_SIZE); |
| 194 | } |
| 195 | SetPageUptodate(page); |
| 196 | nfs_list_remove_request(req); |
| 197 | nfs_readpage_release(req); |
| 198 | bytes += PAGE_SIZE; |
| 199 | } |
| 200 | } else { |
| 201 | while (!list_empty(&hdr->pages)) { |
| 202 | struct nfs_page *req = nfs_list_entry(hdr->pages.next); |
| 203 | |
| 204 | bytes += req->wb_bytes; |
| 205 | if (bytes <= hdr->good_bytes) |
| 206 | SetPageUptodate(req->wb_page); |
| 207 | nfs_list_remove_request(req); |
| 208 | nfs_readpage_release(req); |
| 209 | } |
| 210 | } |
| 211 | out: |
| 212 | hdr->release(hdr); |
| 213 | } |
| 214 | |
Fred Isaman | c5996c4 | 2012-04-20 14:47:41 -0400 | [diff] [blame] | 215 | int nfs_initiate_read(struct rpc_clnt *clnt, |
| 216 | struct nfs_read_data *data, |
Andy Adamson | 64419a9 | 2011-03-01 01:34:16 +0000 | [diff] [blame] | 217 | const struct rpc_call_ops *call_ops) |
| 218 | { |
Fred Isaman | cd84160 | 2012-04-20 14:47:44 -0400 | [diff] [blame] | 219 | struct inode *inode = data->header->inode; |
Andy Adamson | 64419a9 | 2011-03-01 01:34:16 +0000 | [diff] [blame] | 220 | int swap_flags = IS_SWAPFILE(inode) ? NFS_RPC_SWAPFLAGS : 0; |
| 221 | struct rpc_task *task; |
| 222 | struct rpc_message msg = { |
| 223 | .rpc_argp = &data->args, |
| 224 | .rpc_resp = &data->res, |
Fred Isaman | cd84160 | 2012-04-20 14:47:44 -0400 | [diff] [blame] | 225 | .rpc_cred = data->header->cred, |
Andy Adamson | 64419a9 | 2011-03-01 01:34:16 +0000 | [diff] [blame] | 226 | }; |
| 227 | struct rpc_task_setup task_setup_data = { |
| 228 | .task = &data->task, |
| 229 | .rpc_client = clnt, |
| 230 | .rpc_message = &msg, |
| 231 | .callback_ops = call_ops, |
| 232 | .callback_data = data, |
| 233 | .workqueue = nfsiod_workqueue, |
| 234 | .flags = RPC_TASK_ASYNC | swap_flags, |
| 235 | }; |
| 236 | |
| 237 | /* Set up the initial task struct. */ |
| 238 | NFS_PROTO(inode)->read_setup(data, &msg); |
| 239 | |
| 240 | dprintk("NFS: %5u initiated read call (req %s/%lld, %u bytes @ " |
| 241 | "offset %llu)\n", |
| 242 | data->task.tk_pid, |
| 243 | inode->i_sb->s_id, |
| 244 | (long long)NFS_FILEID(inode), |
| 245 | data->args.count, |
| 246 | (unsigned long long)data->args.offset); |
| 247 | |
| 248 | task = rpc_run_task(&task_setup_data); |
| 249 | if (IS_ERR(task)) |
| 250 | return PTR_ERR(task); |
| 251 | rpc_put_task(task); |
| 252 | return 0; |
| 253 | } |
Andy Adamson | dc70d7b | 2011-03-01 01:34:19 +0000 | [diff] [blame] | 254 | EXPORT_SYMBOL_GPL(nfs_initiate_read); |
Andy Adamson | 64419a9 | 2011-03-01 01:34:16 +0000 | [diff] [blame] | 255 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | /* |
| 257 | * Set up the NFS read request struct |
| 258 | */ |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 259 | static void nfs_read_rpcsetup(struct nfs_read_data *data, |
Trond Myklebust | 6e4efd5 | 2011-07-12 13:42:02 -0400 | [diff] [blame] | 260 | unsigned int count, unsigned int offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | { |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 262 | struct nfs_page *req = data->header->req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 264 | data->args.fh = NFS_FH(data->header->inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | data->args.offset = req_offset(req) + offset; |
| 266 | data->args.pgbase = req->wb_pgbase + offset; |
Fred Isaman | 30dd374 | 2012-04-20 14:47:45 -0400 | [diff] [blame] | 267 | data->args.pages = data->pages.pagevec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | data->args.count = count; |
Trond Myklebust | 383ba71 | 2008-02-19 20:04:20 -0500 | [diff] [blame] | 269 | data->args.context = get_nfs_open_context(req->wb_context); |
Trond Myklebust | f11ac8d | 2010-06-25 16:35:53 -0400 | [diff] [blame] | 270 | data->args.lock_context = req->wb_lock_context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | |
| 272 | data->res.fattr = &data->fattr; |
| 273 | data->res.count = count; |
| 274 | data->res.eof = 0; |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 275 | nfs_fattr_init(&data->fattr); |
Trond Myklebust | 6e4efd5 | 2011-07-12 13:42:02 -0400 | [diff] [blame] | 276 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | |
Trond Myklebust | 6e4efd5 | 2011-07-12 13:42:02 -0400 | [diff] [blame] | 278 | static int nfs_do_read(struct nfs_read_data *data, |
Trond Myklebust | 493292d | 2011-07-13 15:58:28 -0400 | [diff] [blame] | 279 | const struct rpc_call_ops *call_ops) |
Trond Myklebust | 6e4efd5 | 2011-07-12 13:42:02 -0400 | [diff] [blame] | 280 | { |
Fred Isaman | cd84160 | 2012-04-20 14:47:44 -0400 | [diff] [blame] | 281 | struct inode *inode = data->header->inode; |
Trond Myklebust | 6e4efd5 | 2011-07-12 13:42:02 -0400 | [diff] [blame] | 282 | |
Fred Isaman | c5996c4 | 2012-04-20 14:47:41 -0400 | [diff] [blame] | 283 | return nfs_initiate_read(NFS_CLIENT(inode), data, call_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | } |
| 285 | |
Trond Myklebust | 275acaa | 2011-07-12 13:42:02 -0400 | [diff] [blame] | 286 | static int |
| 287 | nfs_do_multiple_reads(struct list_head *head, |
Trond Myklebust | 493292d | 2011-07-13 15:58:28 -0400 | [diff] [blame] | 288 | const struct rpc_call_ops *call_ops) |
Trond Myklebust | 275acaa | 2011-07-12 13:42:02 -0400 | [diff] [blame] | 289 | { |
| 290 | struct nfs_read_data *data; |
| 291 | int ret = 0; |
| 292 | |
| 293 | while (!list_empty(head)) { |
| 294 | int ret2; |
| 295 | |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 296 | data = list_first_entry(head, struct nfs_read_data, list); |
Trond Myklebust | 275acaa | 2011-07-12 13:42:02 -0400 | [diff] [blame] | 297 | list_del_init(&data->list); |
| 298 | |
Trond Myklebust | 493292d | 2011-07-13 15:58:28 -0400 | [diff] [blame] | 299 | ret2 = nfs_do_read(data, call_ops); |
Trond Myklebust | 275acaa | 2011-07-12 13:42:02 -0400 | [diff] [blame] | 300 | if (ret == 0) |
| 301 | ret = ret2; |
| 302 | } |
| 303 | return ret; |
| 304 | } |
| 305 | |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 306 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | nfs_async_read_error(struct list_head *head) |
| 308 | { |
| 309 | struct nfs_page *req; |
| 310 | |
| 311 | while (!list_empty(head)) { |
| 312 | req = nfs_list_entry(head->next); |
| 313 | nfs_list_remove_request(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | nfs_readpage_release(req); |
| 315 | } |
| 316 | } |
| 317 | |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 318 | static const struct nfs_pgio_completion_ops nfs_async_read_completion_ops = { |
| 319 | .error_cleanup = nfs_async_read_error, |
| 320 | .completion = nfs_read_completion, |
| 321 | }; |
| 322 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | * Generate multiple requests to fill a single page. |
| 325 | * |
| 326 | * We optimize to reduce the number of read operations on the wire. If we |
| 327 | * detect that we're reading a page, or an area of a page, that is past the |
| 328 | * end of file, we do not generate NFS read operations but just clear the |
| 329 | * parts of the page that would have come back zero from the server anyway. |
| 330 | * |
| 331 | * We rely on the cached value of i_size to make this determination; another |
| 332 | * client can fill pages on the server past our cached end-of-file, but we |
| 333 | * won't see the new data until our attribute cache is updated. This is more |
| 334 | * or less conventional NFS client behavior. |
| 335 | */ |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 336 | static int nfs_pagein_multi(struct nfs_pageio_descriptor *desc, |
| 337 | struct nfs_pgio_header *hdr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | { |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 339 | struct nfs_page *req = hdr->req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | struct page *page = req->wb_page; |
| 341 | struct nfs_read_data *data; |
Trond Myklebust | d097971 | 2011-07-12 13:42:02 -0400 | [diff] [blame] | 342 | size_t rsize = desc->pg_bsize, nbytes; |
Trond Myklebust | e9f7bee | 2006-09-08 09:48:54 -0700 | [diff] [blame] | 343 | unsigned int offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | int requests = 0; |
Trond Myklebust | dbae4c7 | 2008-04-14 14:54:53 -0400 | [diff] [blame] | 345 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | |
| 347 | nfs_list_remove_request(req); |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 348 | nfs_list_add_request(req, &hdr->pages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | |
Trond Myklebust | 275acaa | 2011-07-12 13:42:02 -0400 | [diff] [blame] | 350 | offset = 0; |
Fred Isaman | c76069b | 2011-03-03 15:13:48 +0000 | [diff] [blame] | 351 | nbytes = desc->pg_count; |
Trond Myklebust | e9f7bee | 2006-09-08 09:48:54 -0700 | [diff] [blame] | 352 | do { |
| 353 | size_t len = min(nbytes,rsize); |
| 354 | |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 355 | data = nfs_readdata_alloc(hdr, 1); |
| 356 | if (!data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | goto out_bad; |
Fred Isaman | 30dd374 | 2012-04-20 14:47:45 -0400 | [diff] [blame] | 358 | data->pages.pagevec[0] = page; |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 359 | nfs_read_rpcsetup(data, len, offset); |
| 360 | list_add(&data->list, &hdr->rpc_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | requests++; |
Trond Myklebust | e9f7bee | 2006-09-08 09:48:54 -0700 | [diff] [blame] | 362 | nbytes -= len; |
Trond Myklebust | 275acaa | 2011-07-12 13:42:02 -0400 | [diff] [blame] | 363 | offset += len; |
Trond Myklebust | e9f7bee | 2006-09-08 09:48:54 -0700 | [diff] [blame] | 364 | } while(nbytes != 0); |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 365 | desc->pg_rpc_callops = &nfs_read_common_ops; |
Trond Myklebust | dbae4c7 | 2008-04-14 14:54:53 -0400 | [diff] [blame] | 366 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | out_bad: |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 368 | while (!list_empty(&hdr->rpc_list)) { |
| 369 | data = list_first_entry(&hdr->rpc_list, struct nfs_read_data, list); |
Trond Myklebust | 6e4efd5 | 2011-07-12 13:42:02 -0400 | [diff] [blame] | 370 | list_del(&data->list); |
Fred Isaman | 73fb7bc | 2012-04-20 14:47:34 -0400 | [diff] [blame] | 371 | nfs_readdata_release(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | } |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 373 | desc->pg_completion_ops->error_cleanup(&hdr->pages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | return -ENOMEM; |
| 375 | } |
| 376 | |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 377 | static int nfs_pagein_one(struct nfs_pageio_descriptor *desc, |
| 378 | struct nfs_pgio_header *hdr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | { |
| 380 | struct nfs_page *req; |
| 381 | struct page **pages; |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 382 | struct nfs_read_data *data; |
Fred Isaman | c76069b | 2011-03-03 15:13:48 +0000 | [diff] [blame] | 383 | struct list_head *head = &desc->pg_list; |
Peng Tao | 3b60918 | 2011-07-15 03:33:42 -0400 | [diff] [blame] | 384 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 386 | data = nfs_readdata_alloc(hdr, nfs_page_array_len(desc->pg_base, |
| 387 | desc->pg_count)); |
| 388 | if (!data) { |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 389 | desc->pg_completion_ops->error_cleanup(head); |
Peng Tao | 3b60918 | 2011-07-15 03:33:42 -0400 | [diff] [blame] | 390 | ret = -ENOMEM; |
Fred Isaman | bae724e | 2011-03-01 01:34:15 +0000 | [diff] [blame] | 391 | goto out; |
| 392 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | |
Fred Isaman | 30dd374 | 2012-04-20 14:47:45 -0400 | [diff] [blame] | 394 | pages = data->pages.pagevec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | while (!list_empty(head)) { |
| 396 | req = nfs_list_entry(head->next); |
| 397 | nfs_list_remove_request(req); |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 398 | nfs_list_add_request(req, &hdr->pages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | *pages++ = req->wb_page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 402 | nfs_read_rpcsetup(data, desc->pg_count, 0); |
| 403 | list_add(&data->list, &hdr->rpc_list); |
| 404 | desc->pg_rpc_callops = &nfs_read_common_ops; |
Fred Isaman | bae724e | 2011-03-01 01:34:15 +0000 | [diff] [blame] | 405 | out: |
Trond Myklebust | dbae4c7 | 2008-04-14 14:54:53 -0400 | [diff] [blame] | 406 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | } |
| 408 | |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 409 | int nfs_generic_pagein(struct nfs_pageio_descriptor *desc, |
| 410 | struct nfs_pgio_header *hdr) |
Trond Myklebust | 493292d | 2011-07-13 15:58:28 -0400 | [diff] [blame] | 411 | { |
| 412 | if (desc->pg_bsize < PAGE_CACHE_SIZE) |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 413 | return nfs_pagein_multi(desc, hdr); |
| 414 | return nfs_pagein_one(desc, hdr); |
Trond Myklebust | 493292d | 2011-07-13 15:58:28 -0400 | [diff] [blame] | 415 | } |
| 416 | |
| 417 | static int nfs_generic_pg_readpages(struct nfs_pageio_descriptor *desc) |
Trond Myklebust | 1751c36 | 2011-06-10 13:30:23 -0400 | [diff] [blame] | 418 | { |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 419 | struct nfs_read_header *rhdr; |
| 420 | struct nfs_pgio_header *hdr; |
Trond Myklebust | 275acaa | 2011-07-12 13:42:02 -0400 | [diff] [blame] | 421 | int ret; |
| 422 | |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 423 | rhdr = nfs_readhdr_alloc(); |
| 424 | if (!rhdr) { |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 425 | desc->pg_completion_ops->error_cleanup(&desc->pg_list); |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 426 | return -ENOMEM; |
| 427 | } |
| 428 | hdr = &rhdr->header; |
| 429 | nfs_pgheader_init(desc, hdr, nfs_readhdr_free); |
| 430 | atomic_inc(&hdr->refcnt); |
| 431 | ret = nfs_generic_pagein(desc, hdr); |
Trond Myklebust | 50828d7 | 2011-07-12 13:42:02 -0400 | [diff] [blame] | 432 | if (ret == 0) |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 433 | ret = nfs_do_multiple_reads(&hdr->rpc_list, |
| 434 | desc->pg_rpc_callops); |
| 435 | else |
| 436 | set_bit(NFS_IOHDR_REDO, &hdr->flags); |
| 437 | if (atomic_dec_and_test(&hdr->refcnt)) |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 438 | hdr->completion_ops->completion(hdr); |
Trond Myklebust | 275acaa | 2011-07-12 13:42:02 -0400 | [diff] [blame] | 439 | return ret; |
Trond Myklebust | 1751c36 | 2011-06-10 13:30:23 -0400 | [diff] [blame] | 440 | } |
Trond Myklebust | 1751c36 | 2011-06-10 13:30:23 -0400 | [diff] [blame] | 441 | |
| 442 | static const struct nfs_pageio_ops nfs_pageio_read_ops = { |
| 443 | .pg_test = nfs_generic_pg_test, |
| 444 | .pg_doio = nfs_generic_pg_readpages, |
| 445 | }; |
| 446 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | /* |
Trond Myklebust | 0b67130 | 2006-11-14 16:12:23 -0500 | [diff] [blame] | 448 | * This is the callback from RPC telling us whether a reply was |
| 449 | * received or some error occurred (timeout or socket shutdown). |
| 450 | */ |
| 451 | int nfs_readpage_result(struct rpc_task *task, struct nfs_read_data *data) |
| 452 | { |
Fred Isaman | cd84160 | 2012-04-20 14:47:44 -0400 | [diff] [blame] | 453 | struct inode *inode = data->header->inode; |
Trond Myklebust | 0b67130 | 2006-11-14 16:12:23 -0500 | [diff] [blame] | 454 | int status; |
| 455 | |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 456 | dprintk("NFS: %s: %5u, (status %d)\n", __func__, task->tk_pid, |
Trond Myklebust | 0b67130 | 2006-11-14 16:12:23 -0500 | [diff] [blame] | 457 | task->tk_status); |
| 458 | |
Fred Isaman | cd84160 | 2012-04-20 14:47:44 -0400 | [diff] [blame] | 459 | status = NFS_PROTO(inode)->read_done(task, data); |
Trond Myklebust | 0b67130 | 2006-11-14 16:12:23 -0500 | [diff] [blame] | 460 | if (status != 0) |
| 461 | return status; |
| 462 | |
Fred Isaman | cd84160 | 2012-04-20 14:47:44 -0400 | [diff] [blame] | 463 | nfs_add_stats(inode, NFSIOS_SERVERREADBYTES, data->res.count); |
Trond Myklebust | 0b67130 | 2006-11-14 16:12:23 -0500 | [diff] [blame] | 464 | |
| 465 | if (task->tk_status == -ESTALE) { |
Fred Isaman | cd84160 | 2012-04-20 14:47:44 -0400 | [diff] [blame] | 466 | set_bit(NFS_INO_STALE, &NFS_I(inode)->flags); |
| 467 | nfs_mark_for_revalidate(inode); |
Trond Myklebust | 0b67130 | 2006-11-14 16:12:23 -0500 | [diff] [blame] | 468 | } |
Trond Myklebust | 0b67130 | 2006-11-14 16:12:23 -0500 | [diff] [blame] | 469 | return 0; |
| 470 | } |
| 471 | |
Trond Myklebust | fdd1e74 | 2008-04-15 16:33:58 -0400 | [diff] [blame] | 472 | static void nfs_readpage_retry(struct rpc_task *task, struct nfs_read_data *data) |
Trond Myklebust | 0b67130 | 2006-11-14 16:12:23 -0500 | [diff] [blame] | 473 | { |
| 474 | struct nfs_readargs *argp = &data->args; |
| 475 | struct nfs_readres *resp = &data->res; |
| 476 | |
Trond Myklebust | 0b67130 | 2006-11-14 16:12:23 -0500 | [diff] [blame] | 477 | /* This is a short read! */ |
Fred Isaman | cd84160 | 2012-04-20 14:47:44 -0400 | [diff] [blame] | 478 | nfs_inc_stats(data->header->inode, NFSIOS_SHORTREAD); |
Trond Myklebust | 0b67130 | 2006-11-14 16:12:23 -0500 | [diff] [blame] | 479 | /* Has the server at least made some progress? */ |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 480 | if (resp->count == 0) { |
| 481 | nfs_set_pgio_error(data->header, -EIO, argp->offset); |
Trond Myklebust | d61e612 | 2009-12-05 19:32:19 -0500 | [diff] [blame] | 482 | return; |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 483 | } |
Trond Myklebust | 0b67130 | 2006-11-14 16:12:23 -0500 | [diff] [blame] | 484 | /* Yes, so retry the read at the end of the data */ |
Andy Adamson | cbdabc7f | 2011-03-01 01:34:20 +0000 | [diff] [blame] | 485 | data->mds_offset += resp->count; |
Trond Myklebust | 0b67130 | 2006-11-14 16:12:23 -0500 | [diff] [blame] | 486 | argp->offset += resp->count; |
| 487 | argp->pgbase += resp->count; |
| 488 | argp->count -= resp->count; |
Trond Myklebust | d00c5d4 | 2011-10-19 12:17:29 -0700 | [diff] [blame] | 489 | rpc_restart_call_prepare(task); |
Trond Myklebust | 0b67130 | 2006-11-14 16:12:23 -0500 | [diff] [blame] | 490 | } |
| 491 | |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 492 | static void nfs_readpage_result_common(struct rpc_task *task, void *calldata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | { |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 494 | struct nfs_read_data *data = calldata; |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 495 | struct nfs_pgio_header *hdr = data->header; |
| 496 | |
| 497 | /* Note the only returns of nfs_readpage_result are 0 and -EAGAIN */ |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 498 | if (nfs_readpage_result(task, data) != 0) |
| 499 | return; |
Trond Myklebust | fdd1e74 | 2008-04-15 16:33:58 -0400 | [diff] [blame] | 500 | if (task->tk_status < 0) |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 501 | nfs_set_pgio_error(hdr, task->tk_status, data->args.offset); |
| 502 | else if (data->res.eof) { |
| 503 | loff_t bound; |
Trond Myklebust | 0b67130 | 2006-11-14 16:12:23 -0500 | [diff] [blame] | 504 | |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 505 | bound = data->args.offset + data->res.count; |
| 506 | spin_lock(&hdr->lock); |
| 507 | if (bound < hdr->io_start + hdr->good_bytes) { |
| 508 | set_bit(NFS_IOHDR_EOF, &hdr->flags); |
| 509 | clear_bit(NFS_IOHDR_ERROR, &hdr->flags); |
| 510 | hdr->good_bytes = bound - hdr->io_start; |
| 511 | } |
| 512 | spin_unlock(&hdr->lock); |
| 513 | } else if (data->res.count != data->args.count) |
| 514 | nfs_readpage_retry(task, data); |
Trond Myklebust | fdd1e74 | 2008-04-15 16:33:58 -0400 | [diff] [blame] | 515 | } |
| 516 | |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 517 | static void nfs_readpage_release_common(void *calldata) |
Trond Myklebust | fdd1e74 | 2008-04-15 16:33:58 -0400 | [diff] [blame] | 518 | { |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 519 | nfs_readdata_release(calldata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | } |
| 521 | |
Andy Adamson | f11c88a | 2009-04-01 09:22:25 -0400 | [diff] [blame] | 522 | void nfs_read_prepare(struct rpc_task *task, void *calldata) |
| 523 | { |
| 524 | struct nfs_read_data *data = calldata; |
Fred Isaman | cd84160 | 2012-04-20 14:47:44 -0400 | [diff] [blame] | 525 | NFS_PROTO(data->header->inode)->read_rpc_prepare(task, data); |
Andy Adamson | f11c88a | 2009-04-01 09:22:25 -0400 | [diff] [blame] | 526 | } |
Andy Adamson | f11c88a | 2009-04-01 09:22:25 -0400 | [diff] [blame] | 527 | |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 528 | static const struct rpc_call_ops nfs_read_common_ops = { |
Andy Adamson | f11c88a | 2009-04-01 09:22:25 -0400 | [diff] [blame] | 529 | .rpc_call_prepare = nfs_read_prepare, |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 530 | .rpc_call_done = nfs_readpage_result_common, |
| 531 | .rpc_release = nfs_readpage_release_common, |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 532 | }; |
| 533 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | * Read a page over NFS. |
| 536 | * We read the page synchronously in the following case: |
| 537 | * - The error flag is set for this page. This happens only when a |
| 538 | * previous async read operation failed. |
| 539 | */ |
| 540 | int nfs_readpage(struct file *file, struct page *page) |
| 541 | { |
| 542 | struct nfs_open_context *ctx; |
| 543 | struct inode *inode = page->mapping->host; |
| 544 | int error; |
| 545 | |
| 546 | dprintk("NFS: nfs_readpage (%p %ld@%lu)\n", |
| 547 | page, PAGE_CACHE_SIZE, page->index); |
Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 548 | nfs_inc_stats(inode, NFSIOS_VFSREADPAGE); |
| 549 | nfs_add_stats(inode, NFSIOS_READPAGES, 1); |
| 550 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | /* |
| 552 | * Try to flush any pending writes to the file.. |
| 553 | * |
| 554 | * NOTE! Because we own the page lock, there cannot |
| 555 | * be any new pending writes generated at this point |
| 556 | * for this page (other pages can be written to). |
| 557 | */ |
| 558 | error = nfs_wb_page(inode, page); |
| 559 | if (error) |
Trond Myklebust | de05a0c | 2007-05-20 13:05:05 -0400 | [diff] [blame] | 560 | goto out_unlock; |
| 561 | if (PageUptodate(page)) |
| 562 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | |
Trond Myklebust | 5f004cf | 2006-09-14 14:03:14 -0400 | [diff] [blame] | 564 | error = -ESTALE; |
| 565 | if (NFS_STALE(inode)) |
Trond Myklebust | de05a0c | 2007-05-20 13:05:05 -0400 | [diff] [blame] | 566 | goto out_unlock; |
Trond Myklebust | 5f004cf | 2006-09-14 14:03:14 -0400 | [diff] [blame] | 567 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | if (file == NULL) { |
Trond Myklebust | cf1308f | 2006-11-19 16:44:52 -0500 | [diff] [blame] | 569 | error = -EBADF; |
Trond Myklebust | d530838 | 2005-11-04 15:33:38 -0500 | [diff] [blame] | 570 | ctx = nfs_find_open_context(inode, NULL, FMODE_READ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | if (ctx == NULL) |
Trond Myklebust | de05a0c | 2007-05-20 13:05:05 -0400 | [diff] [blame] | 572 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | } else |
Trond Myklebust | cd3758e | 2007-08-10 17:44:32 -0400 | [diff] [blame] | 574 | ctx = get_nfs_open_context(nfs_file_open_context(file)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | |
David Howells | 9a9fc1c | 2009-04-03 16:42:44 +0100 | [diff] [blame] | 576 | if (!IS_SYNC(inode)) { |
| 577 | error = nfs_readpage_from_fscache(ctx, inode, page); |
| 578 | if (error == 0) |
| 579 | goto out; |
| 580 | } |
| 581 | |
Trond Myklebust | 8e0969f | 2006-12-13 15:23:44 -0500 | [diff] [blame] | 582 | error = nfs_readpage_async(ctx, inode, page); |
| 583 | |
David Howells | 9a9fc1c | 2009-04-03 16:42:44 +0100 | [diff] [blame] | 584 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | put_nfs_open_context(ctx); |
| 586 | return error; |
Trond Myklebust | de05a0c | 2007-05-20 13:05:05 -0400 | [diff] [blame] | 587 | out_unlock: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | unlock_page(page); |
| 589 | return error; |
| 590 | } |
| 591 | |
| 592 | struct nfs_readdesc { |
Trond Myklebust | 8b09bee | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 593 | struct nfs_pageio_descriptor *pgio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | struct nfs_open_context *ctx; |
| 595 | }; |
| 596 | |
| 597 | static int |
| 598 | readpage_async_filler(void *data, struct page *page) |
| 599 | { |
| 600 | struct nfs_readdesc *desc = (struct nfs_readdesc *)data; |
| 601 | struct inode *inode = page->mapping->host; |
| 602 | struct nfs_page *new; |
| 603 | unsigned int len; |
Trond Myklebust | de05a0c | 2007-05-20 13:05:05 -0400 | [diff] [blame] | 604 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | |
Trond Myklebust | 49a70f2 | 2006-12-05 00:35:38 -0500 | [diff] [blame] | 606 | len = nfs_page_length(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | if (len == 0) |
| 608 | return nfs_return_empty_page(page); |
Trond Myklebust | de05a0c | 2007-05-20 13:05:05 -0400 | [diff] [blame] | 609 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | new = nfs_create_request(desc->ctx, inode, page, 0, len); |
Trond Myklebust | de05a0c | 2007-05-20 13:05:05 -0400 | [diff] [blame] | 611 | if (IS_ERR(new)) |
| 612 | goto out_error; |
| 613 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | if (len < PAGE_CACHE_SIZE) |
Christoph Lameter | eebd2aa | 2008-02-04 22:28:29 -0800 | [diff] [blame] | 615 | zero_user_segment(page, len, PAGE_CACHE_SIZE); |
Fred Isaman | f8512ad | 2008-03-19 11:24:39 -0400 | [diff] [blame] | 616 | if (!nfs_pageio_add_request(desc->pgio, new)) { |
| 617 | error = desc->pgio->pg_error; |
| 618 | goto out_unlock; |
| 619 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | return 0; |
Trond Myklebust | de05a0c | 2007-05-20 13:05:05 -0400 | [diff] [blame] | 621 | out_error: |
| 622 | error = PTR_ERR(new); |
Trond Myklebust | de05a0c | 2007-05-20 13:05:05 -0400 | [diff] [blame] | 623 | out_unlock: |
| 624 | unlock_page(page); |
| 625 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | } |
| 627 | |
| 628 | int nfs_readpages(struct file *filp, struct address_space *mapping, |
| 629 | struct list_head *pages, unsigned nr_pages) |
| 630 | { |
Trond Myklebust | 8b09bee | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 631 | struct nfs_pageio_descriptor pgio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | struct nfs_readdesc desc = { |
Trond Myklebust | 8b09bee | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 633 | .pgio = &pgio, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | }; |
| 635 | struct inode *inode = mapping->host; |
Trond Myklebust | 8b09bee | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 636 | unsigned long npages; |
Trond Myklebust | 5f004cf | 2006-09-14 14:03:14 -0400 | [diff] [blame] | 637 | int ret = -ESTALE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | |
| 639 | dprintk("NFS: nfs_readpages (%s/%Ld %d)\n", |
| 640 | inode->i_sb->s_id, |
| 641 | (long long)NFS_FILEID(inode), |
| 642 | nr_pages); |
Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 643 | nfs_inc_stats(inode, NFSIOS_VFSREADPAGES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | |
Trond Myklebust | 5f004cf | 2006-09-14 14:03:14 -0400 | [diff] [blame] | 645 | if (NFS_STALE(inode)) |
| 646 | goto out; |
| 647 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | if (filp == NULL) { |
Trond Myklebust | d530838 | 2005-11-04 15:33:38 -0500 | [diff] [blame] | 649 | desc.ctx = nfs_find_open_context(inode, NULL, FMODE_READ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | if (desc.ctx == NULL) |
| 651 | return -EBADF; |
| 652 | } else |
Trond Myklebust | cd3758e | 2007-08-10 17:44:32 -0400 | [diff] [blame] | 653 | desc.ctx = get_nfs_open_context(nfs_file_open_context(filp)); |
David Howells | 9a9fc1c | 2009-04-03 16:42:44 +0100 | [diff] [blame] | 654 | |
| 655 | /* attempt to read as many of the pages as possible from the cache |
| 656 | * - this returns -ENOBUFS immediately if the cookie is negative |
| 657 | */ |
| 658 | ret = nfs_readpages_from_fscache(desc.ctx, inode, mapping, |
| 659 | pages, &nr_pages); |
| 660 | if (ret == 0) |
| 661 | goto read_complete; /* all pages were read */ |
| 662 | |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 663 | nfs_pageio_init_read(&pgio, inode, &nfs_async_read_completion_ops); |
Trond Myklebust | 8b09bee | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 664 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | ret = read_cache_pages(mapping, pages, readpage_async_filler, &desc); |
Trond Myklebust | 8b09bee | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 666 | |
| 667 | nfs_pageio_complete(&pgio); |
| 668 | npages = (pgio.pg_bytes_written + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT; |
| 669 | nfs_add_stats(inode, NFSIOS_READPAGES, npages); |
David Howells | 9a9fc1c | 2009-04-03 16:42:44 +0100 | [diff] [blame] | 670 | read_complete: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | put_nfs_open_context(desc.ctx); |
Trond Myklebust | 5f004cf | 2006-09-14 14:03:14 -0400 | [diff] [blame] | 672 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | return ret; |
| 674 | } |
| 675 | |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 676 | int __init nfs_init_readpagecache(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | { |
| 678 | nfs_rdata_cachep = kmem_cache_create("nfs_read_data", |
Fred Isaman | cd84160 | 2012-04-20 14:47:44 -0400 | [diff] [blame] | 679 | sizeof(struct nfs_read_header), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | 0, SLAB_HWCACHE_ALIGN, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 681 | NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | if (nfs_rdata_cachep == NULL) |
| 683 | return -ENOMEM; |
| 684 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | return 0; |
| 686 | } |
| 687 | |
David Brownell | 266bee8 | 2006-06-27 12:59:15 -0700 | [diff] [blame] | 688 | void nfs_destroy_readpagecache(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | { |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 690 | kmem_cache_destroy(nfs_rdata_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | } |