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