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