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> |
| 21 | #include <linux/smp_lock.h> |
| 22 | |
| 23 | #include <asm/system.h> |
| 24 | |
Trond Myklebust | 49a70f2 | 2006-12-05 00:35:38 -0500 | [diff] [blame] | 25 | #include "internal.h" |
Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 26 | #include "iostat.h" |
| 27 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #define NFSDBG_FACILITY NFSDBG_PAGECACHE |
| 29 | |
Trond Myklebust | 8d5658c | 2007-04-10 09:26:35 -0400 | [diff] [blame] | 30 | static int nfs_pagein_multi(struct inode *, struct list_head *, unsigned int, size_t, int); |
| 31 | static int nfs_pagein_one(struct inode *, struct list_head *, unsigned int, size_t, int); |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 32 | static const struct rpc_call_ops nfs_read_partial_ops; |
| 33 | static const struct rpc_call_ops nfs_read_full_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; |
Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 36 | static mempool_t *nfs_rdata_mempool; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
| 38 | #define MIN_POOL_READ (32) |
| 39 | |
Trond Myklebust | 8d5658c | 2007-04-10 09:26:35 -0400 | [diff] [blame] | 40 | struct nfs_read_data *nfs_readdata_alloc(unsigned int pagecount) |
Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 41 | { |
Christoph Lameter | e6b4f8d | 2006-12-06 20:33:14 -0800 | [diff] [blame] | 42 | struct nfs_read_data *p = mempool_alloc(nfs_rdata_mempool, GFP_NOFS); |
Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 43 | |
| 44 | if (p) { |
| 45 | memset(p, 0, sizeof(*p)); |
| 46 | INIT_LIST_HEAD(&p->pages); |
Trond Myklebust | e9f7bee | 2006-09-08 09:48:54 -0700 | [diff] [blame] | 47 | p->npages = pagecount; |
Chuck Lever | 0d0b5cb | 2006-05-25 01:40:53 -0400 | [diff] [blame] | 48 | if (pagecount <= ARRAY_SIZE(p->page_array)) |
| 49 | p->pagevec = p->page_array; |
Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 50 | else { |
Chuck Lever | 0d0b5cb | 2006-05-25 01:40:53 -0400 | [diff] [blame] | 51 | p->pagevec = kcalloc(pagecount, sizeof(struct page *), GFP_NOFS); |
| 52 | if (!p->pagevec) { |
Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 53 | mempool_free(p, nfs_rdata_mempool); |
| 54 | p = NULL; |
| 55 | } |
| 56 | } |
| 57 | } |
| 58 | return p; |
| 59 | } |
| 60 | |
Trond Myklebust | 8aca67f | 2006-11-13 16:23:44 -0500 | [diff] [blame] | 61 | static void nfs_readdata_rcu_free(struct rcu_head *head) |
Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 62 | { |
Trond Myklebust | 8aca67f | 2006-11-13 16:23:44 -0500 | [diff] [blame] | 63 | struct nfs_read_data *p = container_of(head, struct nfs_read_data, task.u.tk_rcu); |
Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 64 | if (p && (p->pagevec != &p->page_array[0])) |
| 65 | kfree(p->pagevec); |
| 66 | mempool_free(p, nfs_rdata_mempool); |
| 67 | } |
| 68 | |
Trond Myklebust | 8aca67f | 2006-11-13 16:23:44 -0500 | [diff] [blame] | 69 | static void nfs_readdata_free(struct nfs_read_data *rdata) |
| 70 | { |
| 71 | call_rcu_bh(&rdata->task.u.tk_rcu, nfs_readdata_rcu_free); |
| 72 | } |
| 73 | |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 74 | void nfs_readdata_release(void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | { |
Trond Myklebust | 383ba71 | 2008-02-19 20:04:20 -0500 | [diff] [blame^] | 76 | struct nfs_read_data *rdata = data; |
| 77 | |
| 78 | put_nfs_open_context(rdata->args.context); |
| 79 | nfs_readdata_free(rdata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | } |
| 81 | |
| 82 | static |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | int nfs_return_empty_page(struct page *page) |
| 84 | { |
Christoph Lameter | eebd2aa | 2008-02-04 22:28:29 -0800 | [diff] [blame] | 85 | zero_user(page, 0, PAGE_CACHE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | SetPageUptodate(page); |
| 87 | unlock_page(page); |
| 88 | return 0; |
| 89 | } |
| 90 | |
Trond Myklebust | 1de3fc1 | 2006-05-25 01:40:44 -0400 | [diff] [blame] | 91 | static void nfs_readpage_truncate_uninitialised_page(struct nfs_read_data *data) |
| 92 | { |
| 93 | unsigned int remainder = data->args.count - data->res.count; |
| 94 | unsigned int base = data->args.pgbase + data->res.count; |
| 95 | unsigned int pglen; |
| 96 | struct page **pages; |
| 97 | |
| 98 | if (data->res.eof == 0 || remainder == 0) |
| 99 | return; |
| 100 | /* |
| 101 | * Note: "remainder" can never be negative, since we check for |
| 102 | * this in the XDR code. |
| 103 | */ |
| 104 | pages = &data->args.pages[base >> PAGE_CACHE_SHIFT]; |
| 105 | base &= ~PAGE_CACHE_MASK; |
| 106 | pglen = PAGE_CACHE_SIZE - base; |
Trond Myklebust | 79558f3 | 2006-08-22 13:44:32 -0400 | [diff] [blame] | 107 | for (;;) { |
| 108 | if (remainder <= pglen) { |
Christoph Lameter | eebd2aa | 2008-02-04 22:28:29 -0800 | [diff] [blame] | 109 | zero_user(*pages, base, remainder); |
Trond Myklebust | 79558f3 | 2006-08-22 13:44:32 -0400 | [diff] [blame] | 110 | break; |
| 111 | } |
Christoph Lameter | eebd2aa | 2008-02-04 22:28:29 -0800 | [diff] [blame] | 112 | zero_user(*pages, base, pglen); |
Trond Myklebust | 79558f3 | 2006-08-22 13:44:32 -0400 | [diff] [blame] | 113 | pages++; |
| 114 | remainder -= pglen; |
| 115 | pglen = PAGE_CACHE_SIZE; |
| 116 | base = 0; |
| 117 | } |
Trond Myklebust | 1de3fc1 | 2006-05-25 01:40:44 -0400 | [diff] [blame] | 118 | } |
| 119 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | static int nfs_readpage_async(struct nfs_open_context *ctx, struct inode *inode, |
| 121 | struct page *page) |
| 122 | { |
| 123 | LIST_HEAD(one_request); |
| 124 | struct nfs_page *new; |
| 125 | unsigned int len; |
| 126 | |
Trond Myklebust | 49a70f2 | 2006-12-05 00:35:38 -0500 | [diff] [blame] | 127 | len = nfs_page_length(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | if (len == 0) |
| 129 | return nfs_return_empty_page(page); |
| 130 | new = nfs_create_request(ctx, inode, page, 0, len); |
| 131 | if (IS_ERR(new)) { |
| 132 | unlock_page(page); |
| 133 | return PTR_ERR(new); |
| 134 | } |
| 135 | if (len < PAGE_CACHE_SIZE) |
Christoph Lameter | eebd2aa | 2008-02-04 22:28:29 -0800 | [diff] [blame] | 136 | zero_user_segment(page, len, PAGE_CACHE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | nfs_list_add_request(new, &one_request); |
Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 139 | if (NFS_SERVER(inode)->rsize < PAGE_CACHE_SIZE) |
Trond Myklebust | 8d5658c | 2007-04-10 09:26:35 -0400 | [diff] [blame] | 140 | nfs_pagein_multi(inode, &one_request, 1, len, 0); |
Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 141 | else |
Trond Myklebust | 8d5658c | 2007-04-10 09:26:35 -0400 | [diff] [blame] | 142 | nfs_pagein_one(inode, &one_request, 1, len, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | return 0; |
| 144 | } |
| 145 | |
| 146 | static void nfs_readpage_release(struct nfs_page *req) |
| 147 | { |
| 148 | unlock_page(req->wb_page); |
| 149 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | dprintk("NFS: read done (%s/%Ld %d@%Ld)\n", |
Trond Myklebust | 88be9f9 | 2007-06-05 10:42:27 -0400 | [diff] [blame] | 151 | req->wb_context->path.dentry->d_inode->i_sb->s_id, |
| 152 | (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | req->wb_bytes, |
| 154 | (long long)req_offset(req)); |
Nick Wilson | 10d2c46 | 2005-09-22 21:44:28 -0700 | [diff] [blame] | 155 | nfs_clear_request(req); |
| 156 | nfs_release_request(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | /* |
| 160 | * Set up the NFS read request struct |
| 161 | */ |
| 162 | static void nfs_read_rpcsetup(struct nfs_page *req, struct nfs_read_data *data, |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 163 | const struct rpc_call_ops *call_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | unsigned int count, unsigned int offset) |
| 165 | { |
Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 166 | struct inode *inode = req->wb_context->path.dentry->d_inode; |
| 167 | int swap_flags = IS_SWAPFILE(inode) ? NFS_RPC_SWAPFLAGS : 0; |
Trond Myklebust | 0773769 | 2007-10-25 18:42:54 -0400 | [diff] [blame] | 168 | struct rpc_task *task; |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 169 | struct rpc_message msg = { |
| 170 | .rpc_argp = &data->args, |
| 171 | .rpc_resp = &data->res, |
| 172 | .rpc_cred = req->wb_context->cred, |
| 173 | }; |
Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 174 | struct rpc_task_setup task_setup_data = { |
Trond Myklebust | 0773769 | 2007-10-25 18:42:54 -0400 | [diff] [blame] | 175 | .task = &data->task, |
Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 176 | .rpc_client = NFS_CLIENT(inode), |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 177 | .rpc_message = &msg, |
Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 178 | .callback_ops = call_ops, |
| 179 | .callback_data = data, |
| 180 | .flags = RPC_TASK_ASYNC | swap_flags, |
| 181 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | |
| 183 | data->req = req; |
Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 184 | data->inode = inode; |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 185 | data->cred = msg.rpc_cred; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | |
| 187 | data->args.fh = NFS_FH(inode); |
| 188 | data->args.offset = req_offset(req) + offset; |
| 189 | data->args.pgbase = req->wb_pgbase + offset; |
| 190 | data->args.pages = data->pagevec; |
| 191 | data->args.count = count; |
Trond Myklebust | 383ba71 | 2008-02-19 20:04:20 -0500 | [diff] [blame^] | 192 | data->args.context = get_nfs_open_context(req->wb_context); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | |
| 194 | data->res.fattr = &data->fattr; |
| 195 | data->res.count = count; |
| 196 | data->res.eof = 0; |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 197 | nfs_fattr_init(&data->fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 199 | /* Set up the initial task struct. */ |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 200 | NFS_PROTO(inode)->read_setup(data, &msg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | |
Chuck Lever | a3f565b | 2007-01-31 12:14:01 -0500 | [diff] [blame] | 202 | dprintk("NFS: %5u initiated read call (req %s/%Ld, %u bytes @ offset %Lu)\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | data->task.tk_pid, |
| 204 | inode->i_sb->s_id, |
| 205 | (long long)NFS_FILEID(inode), |
| 206 | count, |
| 207 | (unsigned long long)data->args.offset); |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 208 | |
Trond Myklebust | 0773769 | 2007-10-25 18:42:54 -0400 | [diff] [blame] | 209 | task = rpc_run_task(&task_setup_data); |
| 210 | if (!IS_ERR(task)) |
| 211 | rpc_put_task(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | static void |
| 215 | nfs_async_read_error(struct list_head *head) |
| 216 | { |
| 217 | struct nfs_page *req; |
| 218 | |
| 219 | while (!list_empty(head)) { |
| 220 | req = nfs_list_entry(head->next); |
| 221 | nfs_list_remove_request(req); |
| 222 | SetPageError(req->wb_page); |
| 223 | nfs_readpage_release(req); |
| 224 | } |
| 225 | } |
| 226 | |
| 227 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | * Generate multiple requests to fill a single page. |
| 229 | * |
| 230 | * We optimize to reduce the number of read operations on the wire. If we |
| 231 | * detect that we're reading a page, or an area of a page, that is past the |
| 232 | * end of file, we do not generate NFS read operations but just clear the |
| 233 | * parts of the page that would have come back zero from the server anyway. |
| 234 | * |
| 235 | * We rely on the cached value of i_size to make this determination; another |
| 236 | * client can fill pages on the server past our cached end-of-file, but we |
| 237 | * won't see the new data until our attribute cache is updated. This is more |
| 238 | * or less conventional NFS client behavior. |
| 239 | */ |
Trond Myklebust | 8d5658c | 2007-04-10 09:26:35 -0400 | [diff] [blame] | 240 | static int nfs_pagein_multi(struct inode *inode, struct list_head *head, unsigned int npages, size_t count, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | { |
| 242 | struct nfs_page *req = nfs_list_entry(head->next); |
| 243 | struct page *page = req->wb_page; |
| 244 | struct nfs_read_data *data; |
Trond Myklebust | e9f7bee | 2006-09-08 09:48:54 -0700 | [diff] [blame] | 245 | size_t rsize = NFS_SERVER(inode)->rsize, nbytes; |
| 246 | unsigned int offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | int requests = 0; |
| 248 | LIST_HEAD(list); |
| 249 | |
| 250 | nfs_list_remove_request(req); |
| 251 | |
Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 252 | nbytes = count; |
Trond Myklebust | e9f7bee | 2006-09-08 09:48:54 -0700 | [diff] [blame] | 253 | do { |
| 254 | size_t len = min(nbytes,rsize); |
| 255 | |
Trond Myklebust | 8d5658c | 2007-04-10 09:26:35 -0400 | [diff] [blame] | 256 | data = nfs_readdata_alloc(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | if (!data) |
| 258 | goto out_bad; |
| 259 | INIT_LIST_HEAD(&data->pages); |
| 260 | list_add(&data->pages, &list); |
| 261 | requests++; |
Trond Myklebust | e9f7bee | 2006-09-08 09:48:54 -0700 | [diff] [blame] | 262 | nbytes -= len; |
| 263 | } while(nbytes != 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | atomic_set(&req->wb_complete, requests); |
| 265 | |
| 266 | ClearPageError(page); |
| 267 | offset = 0; |
Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 268 | nbytes = count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | do { |
| 270 | data = list_entry(list.next, struct nfs_read_data, pages); |
| 271 | list_del_init(&data->pages); |
| 272 | |
| 273 | data->pagevec[0] = page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | |
Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 275 | if (nbytes < rsize) |
| 276 | rsize = nbytes; |
| 277 | nfs_read_rpcsetup(req, data, &nfs_read_partial_ops, |
| 278 | rsize, offset); |
| 279 | offset += rsize; |
| 280 | nbytes -= rsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | } while (nbytes != 0); |
| 282 | |
| 283 | return 0; |
| 284 | |
| 285 | out_bad: |
| 286 | while (!list_empty(&list)) { |
| 287 | data = list_entry(list.next, struct nfs_read_data, pages); |
| 288 | list_del(&data->pages); |
| 289 | nfs_readdata_free(data); |
| 290 | } |
| 291 | SetPageError(page); |
| 292 | nfs_readpage_release(req); |
| 293 | return -ENOMEM; |
| 294 | } |
| 295 | |
Trond Myklebust | 8d5658c | 2007-04-10 09:26:35 -0400 | [diff] [blame] | 296 | static int nfs_pagein_one(struct inode *inode, struct list_head *head, unsigned int npages, size_t count, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | { |
| 298 | struct nfs_page *req; |
| 299 | struct page **pages; |
| 300 | struct nfs_read_data *data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | |
Trond Myklebust | 8d5658c | 2007-04-10 09:26:35 -0400 | [diff] [blame] | 302 | data = nfs_readdata_alloc(npages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | if (!data) |
| 304 | goto out_bad; |
| 305 | |
| 306 | INIT_LIST_HEAD(&data->pages); |
| 307 | pages = data->pagevec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | while (!list_empty(head)) { |
| 309 | req = nfs_list_entry(head->next); |
| 310 | nfs_list_remove_request(req); |
| 311 | nfs_list_add_request(req, &data->pages); |
| 312 | ClearPageError(req->wb_page); |
| 313 | *pages++ = req->wb_page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | } |
| 315 | req = nfs_list_entry(data->pages.next); |
| 316 | |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 317 | nfs_read_rpcsetup(req, data, &nfs_read_full_ops, count, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | return 0; |
| 319 | out_bad: |
| 320 | nfs_async_read_error(head); |
| 321 | return -ENOMEM; |
| 322 | } |
| 323 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | /* |
Trond Myklebust | 0b67130 | 2006-11-14 16:12:23 -0500 | [diff] [blame] | 325 | * This is the callback from RPC telling us whether a reply was |
| 326 | * received or some error occurred (timeout or socket shutdown). |
| 327 | */ |
| 328 | int nfs_readpage_result(struct rpc_task *task, struct nfs_read_data *data) |
| 329 | { |
| 330 | int status; |
| 331 | |
Chuck Lever | a3f565b | 2007-01-31 12:14:01 -0500 | [diff] [blame] | 332 | dprintk("NFS: %s: %5u, (status %d)\n", __FUNCTION__, task->tk_pid, |
Trond Myklebust | 0b67130 | 2006-11-14 16:12:23 -0500 | [diff] [blame] | 333 | task->tk_status); |
| 334 | |
| 335 | status = NFS_PROTO(data->inode)->read_done(task, data); |
| 336 | if (status != 0) |
| 337 | return status; |
| 338 | |
| 339 | nfs_add_stats(data->inode, NFSIOS_SERVERREADBYTES, data->res.count); |
| 340 | |
| 341 | if (task->tk_status == -ESTALE) { |
Benny Halevy | 3a10c30 | 2008-01-23 08:58:59 +0200 | [diff] [blame] | 342 | set_bit(NFS_INO_STALE, &NFS_I(data->inode)->flags); |
Trond Myklebust | 0b67130 | 2006-11-14 16:12:23 -0500 | [diff] [blame] | 343 | nfs_mark_for_revalidate(data->inode); |
| 344 | } |
Trond Myklebust | 0b67130 | 2006-11-14 16:12:23 -0500 | [diff] [blame] | 345 | return 0; |
| 346 | } |
| 347 | |
| 348 | static int nfs_readpage_retry(struct rpc_task *task, struct nfs_read_data *data) |
| 349 | { |
| 350 | struct nfs_readargs *argp = &data->args; |
| 351 | struct nfs_readres *resp = &data->res; |
| 352 | |
| 353 | if (resp->eof || resp->count == argp->count) |
| 354 | return 0; |
| 355 | |
| 356 | /* This is a short read! */ |
| 357 | nfs_inc_stats(data->inode, NFSIOS_SHORTREAD); |
| 358 | /* Has the server at least made some progress? */ |
| 359 | if (resp->count == 0) |
| 360 | return 0; |
| 361 | |
| 362 | /* Yes, so retry the read at the end of the data */ |
| 363 | argp->offset += resp->count; |
| 364 | argp->pgbase += resp->count; |
| 365 | argp->count -= resp->count; |
| 366 | rpc_restart_call(task); |
| 367 | return -EAGAIN; |
| 368 | } |
| 369 | |
| 370 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | * Handle a read reply that fills part of a page. |
| 372 | */ |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 373 | static void nfs_readpage_result_partial(struct rpc_task *task, void *calldata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | { |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 375 | struct nfs_read_data *data = calldata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | struct nfs_page *req = data->req; |
| 377 | struct page *page = req->wb_page; |
| 378 | |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 379 | if (nfs_readpage_result(task, data) != 0) |
| 380 | return; |
Trond Myklebust | 0b67130 | 2006-11-14 16:12:23 -0500 | [diff] [blame] | 381 | |
| 382 | if (likely(task->tk_status >= 0)) { |
| 383 | nfs_readpage_truncate_uninitialised_page(data); |
| 384 | if (nfs_readpage_retry(task, data) != 0) |
| 385 | return; |
| 386 | } |
| 387 | if (unlikely(task->tk_status < 0)) |
| 388 | SetPageError(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | if (atomic_dec_and_test(&req->wb_complete)) { |
| 390 | if (!PageError(page)) |
| 391 | SetPageUptodate(page); |
| 392 | nfs_readpage_release(req); |
| 393 | } |
| 394 | } |
| 395 | |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 396 | static const struct rpc_call_ops nfs_read_partial_ops = { |
| 397 | .rpc_call_done = nfs_readpage_result_partial, |
| 398 | .rpc_release = nfs_readdata_release, |
| 399 | }; |
| 400 | |
Trond Myklebust | 1de3fc1 | 2006-05-25 01:40:44 -0400 | [diff] [blame] | 401 | static void nfs_readpage_set_pages_uptodate(struct nfs_read_data *data) |
| 402 | { |
| 403 | unsigned int count = data->res.count; |
| 404 | unsigned int base = data->args.pgbase; |
| 405 | struct page **pages; |
| 406 | |
Trond Myklebust | 79558f3 | 2006-08-22 13:44:32 -0400 | [diff] [blame] | 407 | if (data->res.eof) |
| 408 | count = data->args.count; |
Trond Myklebust | 1de3fc1 | 2006-05-25 01:40:44 -0400 | [diff] [blame] | 409 | if (unlikely(count == 0)) |
| 410 | return; |
| 411 | pages = &data->args.pages[base >> PAGE_CACHE_SHIFT]; |
| 412 | base &= ~PAGE_CACHE_MASK; |
| 413 | count += base; |
| 414 | for (;count >= PAGE_CACHE_SIZE; count -= PAGE_CACHE_SIZE, pages++) |
| 415 | SetPageUptodate(*pages); |
Trond Myklebust | 0b67130 | 2006-11-14 16:12:23 -0500 | [diff] [blame] | 416 | if (count == 0) |
| 417 | return; |
| 418 | /* Was this a short read? */ |
| 419 | if (data->res.eof || data->res.count == data->args.count) |
Trond Myklebust | 1de3fc1 | 2006-05-25 01:40:44 -0400 | [diff] [blame] | 420 | SetPageUptodate(*pages); |
| 421 | } |
| 422 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | /* |
| 424 | * This is the callback from RPC telling us whether a reply was |
| 425 | * received or some error occurred (timeout or socket shutdown). |
| 426 | */ |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 427 | static void nfs_readpage_result_full(struct rpc_task *task, void *calldata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | { |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 429 | struct nfs_read_data *data = calldata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | |
Trond Myklebust | 0b67130 | 2006-11-14 16:12:23 -0500 | [diff] [blame] | 431 | if (nfs_readpage_result(task, data) != 0) |
| 432 | return; |
Trond Myklebust | 1de3fc1 | 2006-05-25 01:40:44 -0400 | [diff] [blame] | 433 | /* |
Trond Myklebust | 0b67130 | 2006-11-14 16:12:23 -0500 | [diff] [blame] | 434 | * Note: nfs_readpage_retry may change the values of |
Trond Myklebust | 1de3fc1 | 2006-05-25 01:40:44 -0400 | [diff] [blame] | 435 | * data->args. In the multi-page case, we therefore need |
Trond Myklebust | 0b67130 | 2006-11-14 16:12:23 -0500 | [diff] [blame] | 436 | * to ensure that we call nfs_readpage_set_pages_uptodate() |
| 437 | * first. |
Trond Myklebust | 1de3fc1 | 2006-05-25 01:40:44 -0400 | [diff] [blame] | 438 | */ |
| 439 | if (likely(task->tk_status >= 0)) { |
| 440 | nfs_readpage_truncate_uninitialised_page(data); |
| 441 | nfs_readpage_set_pages_uptodate(data); |
Trond Myklebust | 0b67130 | 2006-11-14 16:12:23 -0500 | [diff] [blame] | 442 | if (nfs_readpage_retry(task, data) != 0) |
| 443 | return; |
| 444 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | while (!list_empty(&data->pages)) { |
| 446 | struct nfs_page *req = nfs_list_entry(data->pages.next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | |
Trond Myklebust | 1de3fc1 | 2006-05-25 01:40:44 -0400 | [diff] [blame] | 448 | nfs_list_remove_request(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | nfs_readpage_release(req); |
| 450 | } |
| 451 | } |
| 452 | |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 453 | static const struct rpc_call_ops nfs_read_full_ops = { |
| 454 | .rpc_call_done = nfs_readpage_result_full, |
| 455 | .rpc_release = nfs_readdata_release, |
| 456 | }; |
| 457 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | * Read a page over NFS. |
| 460 | * We read the page synchronously in the following case: |
| 461 | * - The error flag is set for this page. This happens only when a |
| 462 | * previous async read operation failed. |
| 463 | */ |
| 464 | int nfs_readpage(struct file *file, struct page *page) |
| 465 | { |
| 466 | struct nfs_open_context *ctx; |
| 467 | struct inode *inode = page->mapping->host; |
| 468 | int error; |
| 469 | |
| 470 | dprintk("NFS: nfs_readpage (%p %ld@%lu)\n", |
| 471 | page, PAGE_CACHE_SIZE, page->index); |
Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 472 | nfs_inc_stats(inode, NFSIOS_VFSREADPAGE); |
| 473 | nfs_add_stats(inode, NFSIOS_READPAGES, 1); |
| 474 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | /* |
| 476 | * Try to flush any pending writes to the file.. |
| 477 | * |
| 478 | * NOTE! Because we own the page lock, there cannot |
| 479 | * be any new pending writes generated at this point |
| 480 | * for this page (other pages can be written to). |
| 481 | */ |
| 482 | error = nfs_wb_page(inode, page); |
| 483 | if (error) |
Trond Myklebust | de05a0c | 2007-05-20 13:05:05 -0400 | [diff] [blame] | 484 | goto out_unlock; |
| 485 | if (PageUptodate(page)) |
| 486 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | |
Trond Myklebust | 5f004cf | 2006-09-14 14:03:14 -0400 | [diff] [blame] | 488 | error = -ESTALE; |
| 489 | if (NFS_STALE(inode)) |
Trond Myklebust | de05a0c | 2007-05-20 13:05:05 -0400 | [diff] [blame] | 490 | goto out_unlock; |
Trond Myklebust | 5f004cf | 2006-09-14 14:03:14 -0400 | [diff] [blame] | 491 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | if (file == NULL) { |
Trond Myklebust | cf1308f | 2006-11-19 16:44:52 -0500 | [diff] [blame] | 493 | error = -EBADF; |
Trond Myklebust | d530838 | 2005-11-04 15:33:38 -0500 | [diff] [blame] | 494 | ctx = nfs_find_open_context(inode, NULL, FMODE_READ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | if (ctx == NULL) |
Trond Myklebust | de05a0c | 2007-05-20 13:05:05 -0400 | [diff] [blame] | 496 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | } else |
Trond Myklebust | cd3758e | 2007-08-10 17:44:32 -0400 | [diff] [blame] | 498 | ctx = get_nfs_open_context(nfs_file_open_context(file)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | |
Trond Myklebust | 8e0969f | 2006-12-13 15:23:44 -0500 | [diff] [blame] | 500 | error = nfs_readpage_async(ctx, inode, page); |
| 501 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | put_nfs_open_context(ctx); |
| 503 | return error; |
Trond Myklebust | de05a0c | 2007-05-20 13:05:05 -0400 | [diff] [blame] | 504 | out_unlock: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | unlock_page(page); |
| 506 | return error; |
| 507 | } |
| 508 | |
| 509 | struct nfs_readdesc { |
Trond Myklebust | 8b09bee | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 510 | struct nfs_pageio_descriptor *pgio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | struct nfs_open_context *ctx; |
| 512 | }; |
| 513 | |
| 514 | static int |
| 515 | readpage_async_filler(void *data, struct page *page) |
| 516 | { |
| 517 | struct nfs_readdesc *desc = (struct nfs_readdesc *)data; |
| 518 | struct inode *inode = page->mapping->host; |
| 519 | struct nfs_page *new; |
| 520 | unsigned int len; |
Trond Myklebust | de05a0c | 2007-05-20 13:05:05 -0400 | [diff] [blame] | 521 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | |
Trond Myklebust | de05a0c | 2007-05-20 13:05:05 -0400 | [diff] [blame] | 523 | error = nfs_wb_page(inode, page); |
| 524 | if (error) |
| 525 | goto out_unlock; |
| 526 | if (PageUptodate(page)) |
| 527 | goto out_unlock; |
| 528 | |
Trond Myklebust | 49a70f2 | 2006-12-05 00:35:38 -0500 | [diff] [blame] | 529 | len = nfs_page_length(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | if (len == 0) |
| 531 | return nfs_return_empty_page(page); |
Trond Myklebust | de05a0c | 2007-05-20 13:05:05 -0400 | [diff] [blame] | 532 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | new = nfs_create_request(desc->ctx, inode, page, 0, len); |
Trond Myklebust | de05a0c | 2007-05-20 13:05:05 -0400 | [diff] [blame] | 534 | if (IS_ERR(new)) |
| 535 | goto out_error; |
| 536 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | if (len < PAGE_CACHE_SIZE) |
Christoph Lameter | eebd2aa | 2008-02-04 22:28:29 -0800 | [diff] [blame] | 538 | zero_user_segment(page, len, PAGE_CACHE_SIZE); |
Trond Myklebust | 8b09bee | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 539 | nfs_pageio_add_request(desc->pgio, new); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | return 0; |
Trond Myklebust | de05a0c | 2007-05-20 13:05:05 -0400 | [diff] [blame] | 541 | out_error: |
| 542 | error = PTR_ERR(new); |
| 543 | SetPageError(page); |
| 544 | out_unlock: |
| 545 | unlock_page(page); |
| 546 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | } |
| 548 | |
| 549 | int nfs_readpages(struct file *filp, struct address_space *mapping, |
| 550 | struct list_head *pages, unsigned nr_pages) |
| 551 | { |
Trond Myklebust | 8b09bee | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 552 | struct nfs_pageio_descriptor pgio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | struct nfs_readdesc desc = { |
Trond Myklebust | 8b09bee | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 554 | .pgio = &pgio, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | }; |
| 556 | struct inode *inode = mapping->host; |
| 557 | struct nfs_server *server = NFS_SERVER(inode); |
Trond Myklebust | 8b09bee | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 558 | size_t rsize = server->rsize; |
| 559 | unsigned long npages; |
Trond Myklebust | 5f004cf | 2006-09-14 14:03:14 -0400 | [diff] [blame] | 560 | int ret = -ESTALE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | |
| 562 | dprintk("NFS: nfs_readpages (%s/%Ld %d)\n", |
| 563 | inode->i_sb->s_id, |
| 564 | (long long)NFS_FILEID(inode), |
| 565 | nr_pages); |
Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 566 | nfs_inc_stats(inode, NFSIOS_VFSREADPAGES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | |
Trond Myklebust | 5f004cf | 2006-09-14 14:03:14 -0400 | [diff] [blame] | 568 | if (NFS_STALE(inode)) |
| 569 | goto out; |
| 570 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | if (filp == NULL) { |
Trond Myklebust | d530838 | 2005-11-04 15:33:38 -0500 | [diff] [blame] | 572 | desc.ctx = nfs_find_open_context(inode, NULL, FMODE_READ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | if (desc.ctx == NULL) |
| 574 | return -EBADF; |
| 575 | } else |
Trond Myklebust | cd3758e | 2007-08-10 17:44:32 -0400 | [diff] [blame] | 576 | desc.ctx = get_nfs_open_context(nfs_file_open_context(filp)); |
Trond Myklebust | 8b09bee | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 577 | if (rsize < PAGE_CACHE_SIZE) |
| 578 | nfs_pageio_init(&pgio, inode, nfs_pagein_multi, rsize, 0); |
| 579 | else |
| 580 | nfs_pageio_init(&pgio, inode, nfs_pagein_one, rsize, 0); |
| 581 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | ret = read_cache_pages(mapping, pages, readpage_async_filler, &desc); |
Trond Myklebust | 8b09bee | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 583 | |
| 584 | nfs_pageio_complete(&pgio); |
| 585 | npages = (pgio.pg_bytes_written + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT; |
| 586 | nfs_add_stats(inode, NFSIOS_READPAGES, npages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | put_nfs_open_context(desc.ctx); |
Trond Myklebust | 5f004cf | 2006-09-14 14:03:14 -0400 | [diff] [blame] | 588 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | return ret; |
| 590 | } |
| 591 | |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 592 | int __init nfs_init_readpagecache(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | { |
| 594 | nfs_rdata_cachep = kmem_cache_create("nfs_read_data", |
| 595 | sizeof(struct nfs_read_data), |
| 596 | 0, SLAB_HWCACHE_ALIGN, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 597 | NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | if (nfs_rdata_cachep == NULL) |
| 599 | return -ENOMEM; |
| 600 | |
Matthew Dobson | 93d2341 | 2006-03-26 01:37:50 -0800 | [diff] [blame] | 601 | nfs_rdata_mempool = mempool_create_slab_pool(MIN_POOL_READ, |
| 602 | nfs_rdata_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | if (nfs_rdata_mempool == NULL) |
| 604 | return -ENOMEM; |
| 605 | |
| 606 | return 0; |
| 607 | } |
| 608 | |
David Brownell | 266bee8 | 2006-06-27 12:59:15 -0700 | [diff] [blame] | 609 | void nfs_destroy_readpagecache(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | { |
| 611 | mempool_destroy(nfs_rdata_mempool); |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 612 | kmem_cache_destroy(nfs_rdata_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | } |