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