blob: 77a184e2fe47a627fd5d085ba66dcc1cc36ae43d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/nfs/pagelist.c
3 *
4 * A set of helper functions for managing NFS read and write requests.
5 * The main purpose of these routines is to provide support for the
6 * coalescing of several requests into a single RPC call.
7 *
8 * Copyright 2000, 2001 (c) Trond Myklebust <trond.myklebust@fys.uio.no>
9 *
10 */
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/slab.h>
13#include <linux/file.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040014#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/sunrpc/clnt.h>
Trond Myklebust1313e602012-01-17 22:04:24 -050016#include <linux/nfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/nfs3.h>
18#include <linux/nfs4.h>
19#include <linux/nfs_page.h>
20#include <linux/nfs_fs.h>
21#include <linux/nfs_mount.h>
Paul Gortmakerafeacc82011-05-26 16:00:52 -040022#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Trond Myklebust8d5658c2007-04-10 09:26:35 -040024#include "internal.h"
Fred Isamanbae724e2011-03-01 01:34:15 +000025#include "pnfs.h"
Trond Myklebust8d5658c2007-04-10 09:26:35 -040026
Christoph Lametere18b8902006-12-06 20:33:20 -080027static struct kmem_cache *nfs_page_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29static inline struct nfs_page *
30nfs_page_alloc(void)
31{
Jesper Juhl72895b12010-12-09 23:17:15 +010032 struct nfs_page *p = kmem_cache_zalloc(nfs_page_cachep, GFP_KERNEL);
33 if (p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 INIT_LIST_HEAD(&p->wb_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 return p;
36}
37
38static inline void
39nfs_page_free(struct nfs_page *p)
40{
41 kmem_cache_free(nfs_page_cachep, p);
42}
43
44/**
45 * nfs_create_request - Create an NFS read/write request.
Chuck Leverc02f5572011-10-25 12:17:43 -040046 * @ctx: open context to use
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 * @inode: inode to which the request is attached
48 * @page: page to write
49 * @offset: starting offset within the page for the write
50 * @count: number of bytes to read/write
51 *
52 * The page must be locked by the caller. This makes sure we never
Jason Uhlenkotta19b89c2007-04-26 17:25:51 -070053 * create two different requests for the same page.
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 * User should ensure it is safe to sleep in this function.
55 */
56struct nfs_page *
57nfs_create_request(struct nfs_open_context *ctx, struct inode *inode,
58 struct page *page,
59 unsigned int offset, unsigned int count)
60{
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 struct nfs_page *req;
62
Trond Myklebust18eb8842010-05-13 12:51:02 -040063 /* try to allocate the request struct */
64 req = nfs_page_alloc();
65 if (req == NULL)
66 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Jeff Layton015f0212010-10-28 10:10:37 -040068 /* get lock context early so we can deal with alloc failures */
69 req->wb_lock_context = nfs_get_lock_context(ctx);
70 if (req->wb_lock_context == NULL) {
71 nfs_page_free(req);
72 return ERR_PTR(-ENOMEM);
73 }
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 /* Initialize the request struct. Initially, we assume a
76 * long write-back delay. This will be adjusted in
77 * update_nfs_request below if the region is not locked. */
78 req->wb_page = page;
79 atomic_set(&req->wb_complete, 0);
80 req->wb_index = page->index;
81 page_cache_get(page);
Trond Myklebustcd52ed32006-03-20 13:44:04 -050082 BUG_ON(PagePrivate(page));
83 BUG_ON(!PageLocked(page));
84 BUG_ON(page->mapping->host != inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 req->wb_offset = offset;
86 req->wb_pgbase = offset;
87 req->wb_bytes = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 req->wb_context = get_nfs_open_context(ctx);
Trond Myklebustc03b4022007-06-17 13:26:38 -040089 kref_init(&req->wb_kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 return req;
91}
92
93/**
94 * nfs_unlock_request - Unlock request and wake up sleepers.
95 * @req:
96 */
97void nfs_unlock_request(struct nfs_page *req)
98{
99 if (!NFS_WBACK_BUSY(req)) {
100 printk(KERN_ERR "NFS: Invalid unlock attempted\n");
101 BUG();
102 }
103 smp_mb__before_clear_bit();
104 clear_bit(PG_BUSY, &req->wb_flags);
105 smp_mb__after_clear_bit();
Trond Myklebust464a98b2005-06-22 17:16:21 +0000106 wake_up_bit(&req->wb_flags, PG_BUSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 nfs_release_request(req);
108}
109
110/**
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400111 * nfs_set_page_tag_locked - Tag a request as locked
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000112 * @req:
113 */
Trond Myklebustacee4782008-01-22 17:13:07 -0500114int nfs_set_page_tag_locked(struct nfs_page *req)
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000115{
Trond Myklebustacee4782008-01-22 17:13:07 -0500116 if (!nfs_lock_request_dontget(req))
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000117 return 0;
Trond Myklebust2df485a2010-12-07 22:39:17 -0500118 if (test_bit(PG_MAPPED, &req->wb_flags))
Al Viro3d4ff432011-06-22 18:40:12 -0400119 radix_tree_tag_set(&NFS_I(req->wb_context->dentry->d_inode)->nfs_page_tree, req->wb_index, NFS_PAGE_TAG_LOCKED);
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000120 return 1;
121}
122
123/**
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400124 * nfs_clear_page_tag_locked - Clear request tag and wake up sleepers
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000125 */
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400126void nfs_clear_page_tag_locked(struct nfs_page *req)
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000127{
Trond Myklebust2df485a2010-12-07 22:39:17 -0500128 if (test_bit(PG_MAPPED, &req->wb_flags)) {
Al Viro3d4ff432011-06-22 18:40:12 -0400129 struct inode *inode = req->wb_context->dentry->d_inode;
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500130 struct nfs_inode *nfsi = NFS_I(inode);
131
Trond Myklebust587142f2007-07-02 09:57:54 -0400132 spin_lock(&inode->i_lock);
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400133 radix_tree_tag_clear(&nfsi->nfs_page_tree, req->wb_index, NFS_PAGE_TAG_LOCKED);
Trond Myklebustacee4782008-01-22 17:13:07 -0500134 nfs_unlock_request(req);
Trond Myklebust587142f2007-07-02 09:57:54 -0400135 spin_unlock(&inode->i_lock);
Trond Myklebustacee4782008-01-22 17:13:07 -0500136 } else
137 nfs_unlock_request(req);
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000138}
139
Trond Myklebust4d65c522011-03-25 14:15:11 -0400140/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 * nfs_clear_request - Free up all resources allocated to the request
142 * @req:
143 *
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500144 * Release page and open context resources associated with a read/write
145 * request after it has completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 */
Trond Myklebust4d65c522011-03-25 14:15:11 -0400147static void nfs_clear_request(struct nfs_page *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Trond Myklebustcd52ed32006-03-20 13:44:04 -0500149 struct page *page = req->wb_page;
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500150 struct nfs_open_context *ctx = req->wb_context;
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400151 struct nfs_lock_context *l_ctx = req->wb_lock_context;
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500152
Trond Myklebustcd52ed32006-03-20 13:44:04 -0500153 if (page != NULL) {
Trond Myklebustcd52ed32006-03-20 13:44:04 -0500154 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 req->wb_page = NULL;
156 }
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400157 if (l_ctx != NULL) {
158 nfs_put_lock_context(l_ctx);
159 req->wb_lock_context = NULL;
160 }
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500161 if (ctx != NULL) {
162 put_nfs_open_context(ctx);
163 req->wb_context = NULL;
164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
167
168/**
169 * nfs_release_request - Release the count on an NFS read/write request
170 * @req: request to release
171 *
172 * Note: Should never be called with the spinlock held!
173 */
Trond Myklebustc03b4022007-06-17 13:26:38 -0400174static void nfs_free_request(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Trond Myklebustc03b4022007-06-17 13:26:38 -0400176 struct nfs_page *req = container_of(kref, struct nfs_page, wb_kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500178 /* Release struct file and open context */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 nfs_clear_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 nfs_page_free(req);
181}
182
Trond Myklebustc03b4022007-06-17 13:26:38 -0400183void nfs_release_request(struct nfs_page *req)
184{
185 kref_put(&req->wb_kref, nfs_free_request);
186}
187
Trond Myklebust9f557cd2010-02-03 08:27:22 -0500188static int nfs_wait_bit_uninterruptible(void *word)
189{
190 io_schedule();
191 return 0;
192}
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194/**
195 * nfs_wait_on_request - Wait for a request to complete.
196 * @req: request to wait upon.
197 *
Matthew Wilcox150030b2007-12-06 16:24:39 -0500198 * Interruptible by fatal signals only.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 * The user is responsible for holding a count on the request.
200 */
201int
202nfs_wait_on_request(struct nfs_page *req)
203{
Trond Myklebust9f557cd2010-02-03 08:27:22 -0500204 return wait_on_bit(&req->wb_flags, PG_BUSY,
205 nfs_wait_bit_uninterruptible,
206 TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
Benny Halevy19345cb2011-06-19 18:33:46 -0400209bool nfs_generic_pg_test(struct nfs_pageio_descriptor *desc, struct nfs_page *prev, struct nfs_page *req)
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300210{
211 /*
212 * FIXME: ideally we should be able to coalesce all requests
213 * that are not block boundary aligned, but currently this
214 * is problematic for the case of bsize < PAGE_CACHE_SIZE,
215 * since nfs_flush_multi and nfs_pagein_multi assume you
216 * can have only one struct nfs_page.
217 */
218 if (desc->pg_bsize < PAGE_SIZE)
219 return 0;
220
221 return desc->pg_count + req->wb_bytes <= desc->pg_bsize;
222}
Benny Halevy19345cb2011-06-19 18:33:46 -0400223EXPORT_SYMBOL_GPL(nfs_generic_pg_test);
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225/**
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400226 * nfs_pageio_init - initialise a page io descriptor
227 * @desc: pointer to descriptor
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400228 * @inode: pointer to inode
229 * @doio: pointer to io function
230 * @bsize: io block size
231 * @io_flags: extra parameters for the io function
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400232 */
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400233void nfs_pageio_init(struct nfs_pageio_descriptor *desc,
234 struct inode *inode,
Trond Myklebust1751c362011-06-10 13:30:23 -0400235 const struct nfs_pageio_ops *pg_ops,
Trond Myklebust84dde762007-05-04 14:44:06 -0400236 size_t bsize,
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400237 int io_flags)
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400238{
239 INIT_LIST_HEAD(&desc->pg_list);
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400240 desc->pg_bytes_written = 0;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400241 desc->pg_count = 0;
242 desc->pg_bsize = bsize;
243 desc->pg_base = 0;
Trond Myklebustb31268a2011-03-21 17:02:00 -0400244 desc->pg_moreio = 0;
Trond Myklebustd9156f92011-07-12 13:42:02 -0400245 desc->pg_recoalesce = 0;
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400246 desc->pg_inode = inode;
Trond Myklebust1751c362011-06-10 13:30:23 -0400247 desc->pg_ops = pg_ops;
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400248 desc->pg_ioflags = io_flags;
249 desc->pg_error = 0;
Fred Isaman94ad1c82011-03-01 01:34:14 +0000250 desc->pg_lseg = NULL;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400251}
252
253/**
254 * nfs_can_coalesce_requests - test two requests for compatibility
255 * @prev: pointer to nfs_page
256 * @req: pointer to nfs_page
257 *
258 * The nfs_page structures 'prev' and 'req' are compared to ensure that the
259 * page data area they describe is contiguous, and that their RPC
260 * credentials, NFSv4 open state, and lockowners are the same.
261 *
262 * Return 'true' if this is the case, else return 'false'.
263 */
Benny Halevy18ad0a92011-05-25 21:03:56 +0300264static bool nfs_can_coalesce_requests(struct nfs_page *prev,
265 struct nfs_page *req,
266 struct nfs_pageio_descriptor *pgio)
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400267{
268 if (req->wb_context->cred != prev->wb_context->cred)
Benny Halevy18ad0a92011-05-25 21:03:56 +0300269 return false;
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400270 if (req->wb_lock_context->lockowner != prev->wb_lock_context->lockowner)
Benny Halevy18ad0a92011-05-25 21:03:56 +0300271 return false;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400272 if (req->wb_context->state != prev->wb_context->state)
Benny Halevy18ad0a92011-05-25 21:03:56 +0300273 return false;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400274 if (req->wb_index != (prev->wb_index + 1))
Benny Halevy18ad0a92011-05-25 21:03:56 +0300275 return false;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400276 if (req->wb_pgbase != 0)
Benny Halevy18ad0a92011-05-25 21:03:56 +0300277 return false;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400278 if (prev->wb_pgbase + prev->wb_bytes != PAGE_CACHE_SIZE)
Benny Halevy18ad0a92011-05-25 21:03:56 +0300279 return false;
Trond Myklebust1751c362011-06-10 13:30:23 -0400280 return pgio->pg_ops->pg_test(pgio, prev, req);
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400281}
282
283/**
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400284 * nfs_pageio_do_add_request - Attempt to coalesce a request into a page list.
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400285 * @desc: destination io descriptor
286 * @req: request
287 *
288 * Returns true if the request 'req' was successfully coalesced into the
289 * existing list of pages 'desc'.
290 */
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400291static int nfs_pageio_do_add_request(struct nfs_pageio_descriptor *desc,
292 struct nfs_page *req)
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400293{
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400294 if (desc->pg_count != 0) {
295 struct nfs_page *prev;
296
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400297 prev = nfs_list_entry(desc->pg_list.prev);
Fred Isaman94ad1c82011-03-01 01:34:14 +0000298 if (!nfs_can_coalesce_requests(prev, req, desc))
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400299 return 0;
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300300 } else {
Trond Myklebustd8007d42011-06-10 13:30:23 -0400301 if (desc->pg_ops->pg_init)
302 desc->pg_ops->pg_init(desc, req);
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400303 desc->pg_base = req->wb_pgbase;
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300304 }
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400305 nfs_list_remove_request(req);
306 nfs_list_add_request(req, &desc->pg_list);
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300307 desc->pg_count += req->wb_bytes;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400308 return 1;
309}
310
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400311/*
312 * Helper for nfs_pageio_add_request and nfs_pageio_complete
313 */
314static void nfs_pageio_doio(struct nfs_pageio_descriptor *desc)
315{
316 if (!list_empty(&desc->pg_list)) {
Trond Myklebust1751c362011-06-10 13:30:23 -0400317 int error = desc->pg_ops->pg_doio(desc);
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400318 if (error < 0)
319 desc->pg_error = error;
320 else
321 desc->pg_bytes_written += desc->pg_count;
322 }
323 if (list_empty(&desc->pg_list)) {
324 desc->pg_count = 0;
325 desc->pg_base = 0;
326 }
327}
328
329/**
330 * nfs_pageio_add_request - Attempt to coalesce a request into a page list.
331 * @desc: destination io descriptor
332 * @req: request
333 *
334 * Returns true if the request 'req' was successfully coalesced into the
335 * existing list of pages 'desc'.
336 */
Trond Myklebustd9156f92011-07-12 13:42:02 -0400337static int __nfs_pageio_add_request(struct nfs_pageio_descriptor *desc,
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400338 struct nfs_page *req)
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400339{
340 while (!nfs_pageio_do_add_request(desc, req)) {
Trond Myklebustb31268a2011-03-21 17:02:00 -0400341 desc->pg_moreio = 1;
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400342 nfs_pageio_doio(desc);
343 if (desc->pg_error < 0)
344 return 0;
Trond Myklebustb31268a2011-03-21 17:02:00 -0400345 desc->pg_moreio = 0;
Trond Myklebustd9156f92011-07-12 13:42:02 -0400346 if (desc->pg_recoalesce)
347 return 0;
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400348 }
349 return 1;
350}
351
Trond Myklebustd9156f92011-07-12 13:42:02 -0400352static int nfs_do_recoalesce(struct nfs_pageio_descriptor *desc)
353{
354 LIST_HEAD(head);
355
356 do {
357 list_splice_init(&desc->pg_list, &head);
358 desc->pg_bytes_written -= desc->pg_count;
359 desc->pg_count = 0;
360 desc->pg_base = 0;
361 desc->pg_recoalesce = 0;
362
363 while (!list_empty(&head)) {
364 struct nfs_page *req;
365
366 req = list_first_entry(&head, struct nfs_page, wb_list);
367 nfs_list_remove_request(req);
368 if (__nfs_pageio_add_request(desc, req))
369 continue;
370 if (desc->pg_error < 0)
371 return 0;
372 break;
373 }
374 } while (desc->pg_recoalesce);
375 return 1;
376}
377
378int nfs_pageio_add_request(struct nfs_pageio_descriptor *desc,
379 struct nfs_page *req)
380{
381 int ret;
382
383 do {
384 ret = __nfs_pageio_add_request(desc, req);
385 if (ret)
386 break;
387 if (desc->pg_error < 0)
388 break;
389 ret = nfs_do_recoalesce(desc);
390 } while (ret);
391 return ret;
392}
393
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400394/**
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400395 * nfs_pageio_complete - Complete I/O on an nfs_pageio_descriptor
396 * @desc: pointer to io descriptor
397 */
398void nfs_pageio_complete(struct nfs_pageio_descriptor *desc)
399{
Trond Myklebustd9156f92011-07-12 13:42:02 -0400400 for (;;) {
401 nfs_pageio_doio(desc);
402 if (!desc->pg_recoalesce)
403 break;
404 if (!nfs_do_recoalesce(desc))
405 break;
406 }
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400407}
408
Trond Myklebust7fe7f842007-05-20 10:18:27 -0400409/**
410 * nfs_pageio_cond_complete - Conditional I/O completion
411 * @desc: pointer to io descriptor
412 * @index: page index
413 *
414 * It is important to ensure that processes don't try to take locks
415 * on non-contiguous ranges of pages as that might deadlock. This
416 * function should be called before attempting to wait on a locked
417 * nfs_page. It will complete the I/O if the page index 'index'
418 * is not contiguous with the existing list of pages in 'desc'.
419 */
420void nfs_pageio_cond_complete(struct nfs_pageio_descriptor *desc, pgoff_t index)
421{
422 if (!list_empty(&desc->pg_list)) {
423 struct nfs_page *prev = nfs_list_entry(desc->pg_list.prev);
424 if (index != prev->wb_index + 1)
Trond Myklebustd9156f92011-07-12 13:42:02 -0400425 nfs_pageio_complete(desc);
Trond Myklebust7fe7f842007-05-20 10:18:27 -0400426 }
427}
428
Trond Myklebust3da28eb2005-06-22 17:16:31 +0000429#define NFS_SCAN_MAXENTRIES 16
430/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 * nfs_scan_list - Scan a list for matching requests
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400432 * @nfsi: NFS inode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 * @dst: Destination list
434 * @idx_start: lower bound of page->index to scan
435 * @npages: idx_start + npages sets the upper bound to scan.
Trond Myklebust5c369682007-06-17 15:27:42 -0400436 * @tag: tag to scan for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 *
438 * Moves elements from one of the inode request lists.
439 * If the number of requests is set to 0, the entire address_space
440 * starting at index idx_start, is scanned.
441 * The requests are *not* checked to ensure that they form a contiguous set.
Trond Myklebust587142f2007-07-02 09:57:54 -0400442 * You must be holding the inode's i_lock when calling this function
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 */
Trond Myklebust5c369682007-06-17 15:27:42 -0400444int nfs_scan_list(struct nfs_inode *nfsi,
Trond Myklebustca52fec2007-04-17 17:22:13 -0400445 struct list_head *dst, pgoff_t idx_start,
Trond Myklebust5c369682007-06-17 15:27:42 -0400446 unsigned int npages, int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400448 struct nfs_page *pgvec[NFS_SCAN_MAXENTRIES];
449 struct nfs_page *req;
Trond Myklebustca52fec2007-04-17 17:22:13 -0400450 pgoff_t idx_end;
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400451 int found, i;
452 int res;
Fred Isamana861a1e2011-03-23 13:27:51 +0000453 struct list_head *list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455 res = 0;
456 if (npages == 0)
457 idx_end = ~0;
458 else
459 idx_end = idx_start + npages - 1;
460
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400461 for (;;) {
Trond Myklebust5c369682007-06-17 15:27:42 -0400462 found = radix_tree_gang_lookup_tag(&nfsi->nfs_page_tree,
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400463 (void **)&pgvec[0], idx_start,
Trond Myklebust5c369682007-06-17 15:27:42 -0400464 NFS_SCAN_MAXENTRIES, tag);
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400465 if (found <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 break;
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400467 for (i = 0; i < found; i++) {
468 req = pgvec[i];
469 if (req->wb_index > idx_end)
470 goto out;
471 idx_start = req->wb_index + 1;
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400472 if (nfs_set_page_tag_locked(req)) {
Trond Myklebustacee4782008-01-22 17:13:07 -0500473 kref_get(&req->wb_kref);
Trond Myklebust5c369682007-06-17 15:27:42 -0400474 radix_tree_tag_clear(&nfsi->nfs_page_tree,
475 req->wb_index, tag);
Fred Isamana861a1e2011-03-23 13:27:51 +0000476 list = pnfs_choose_commit_list(req, dst);
477 nfs_list_add_request(req, list);
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400478 res++;
Trond Myklebustdce34ce2007-06-17 15:47:53 -0400479 if (res == INT_MAX)
480 goto out;
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400481 }
482 }
Trond Myklebustedc05fc2007-06-17 16:02:34 -0400483 /* for latency reduction */
Trond Myklebust587142f2007-07-02 09:57:54 -0400484 cond_resched_lock(&nfsi->vfs_inode.i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 }
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400486out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 return res;
488}
489
David Howellsf7b422b2006-06-09 09:34:33 -0400490int __init nfs_init_nfspagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
492 nfs_page_cachep = kmem_cache_create("nfs_page",
493 sizeof(struct nfs_page),
494 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +0900495 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 if (nfs_page_cachep == NULL)
497 return -ENOMEM;
498
499 return 0;
500}
501
David Brownell266bee82006-06-27 12:59:15 -0700502void nfs_destroy_nfspagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700504 kmem_cache_destroy(nfs_page_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505}
506