Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/slab.h> |
| 13 | #include <linux/file.h> |
Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 14 | #include <linux/sched.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/sunrpc/clnt.h> |
| 16 | #include <linux/nfs3.h> |
| 17 | #include <linux/nfs4.h> |
| 18 | #include <linux/nfs_page.h> |
| 19 | #include <linux/nfs_fs.h> |
| 20 | #include <linux/nfs_mount.h> |
| 21 | |
Trond Myklebust | 8d5658c | 2007-04-10 09:26:35 -0400 | [diff] [blame] | 22 | #include "internal.h" |
| 23 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 24 | static struct kmem_cache *nfs_page_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
| 26 | static inline struct nfs_page * |
| 27 | nfs_page_alloc(void) |
| 28 | { |
| 29 | struct nfs_page *p; |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 30 | p = kmem_cache_alloc(nfs_page_cachep, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | if (p) { |
| 32 | memset(p, 0, sizeof(*p)); |
| 33 | INIT_LIST_HEAD(&p->wb_list); |
| 34 | } |
| 35 | return p; |
| 36 | } |
| 37 | |
| 38 | static inline void |
| 39 | nfs_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. |
| 46 | * @file: file descriptor to use |
| 47 | * @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 Uhlenkott | a19b89c | 2007-04-26 17:25:51 -0700 | [diff] [blame] | 53 | * create two different requests for the same page. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | * User should ensure it is safe to sleep in this function. |
| 55 | */ |
| 56 | struct nfs_page * |
| 57 | nfs_create_request(struct nfs_open_context *ctx, struct inode *inode, |
| 58 | struct page *page, |
| 59 | unsigned int offset, unsigned int count) |
| 60 | { |
| 61 | struct nfs_server *server = NFS_SERVER(inode); |
| 62 | struct nfs_page *req; |
| 63 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | for (;;) { |
| 65 | /* try to allocate the request struct */ |
| 66 | req = nfs_page_alloc(); |
| 67 | if (req != NULL) |
| 68 | break; |
| 69 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | if (signalled() && (server->flags & NFS_MOUNT_INTR)) |
| 71 | return ERR_PTR(-ERESTARTSYS); |
| 72 | yield(); |
| 73 | } |
| 74 | |
| 75 | /* 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 Myklebust | cd52ed3 | 2006-03-20 13:44:04 -0500 | [diff] [blame] | 82 | BUG_ON(PagePrivate(page)); |
| 83 | BUG_ON(!PageLocked(page)); |
| 84 | BUG_ON(page->mapping->host != inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | req->wb_offset = offset; |
| 86 | req->wb_pgbase = offset; |
| 87 | req->wb_bytes = count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | req->wb_context = get_nfs_open_context(ctx); |
Trond Myklebust | c03b402 | 2007-06-17 13:26:38 -0400 | [diff] [blame^] | 89 | kref_init(&req->wb_kref); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | return req; |
| 91 | } |
| 92 | |
| 93 | /** |
| 94 | * nfs_unlock_request - Unlock request and wake up sleepers. |
| 95 | * @req: |
| 96 | */ |
| 97 | void 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 Myklebust | 464a98b | 2005-06-22 17:16:21 +0000 | [diff] [blame] | 106 | wake_up_bit(&req->wb_flags, PG_BUSY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | nfs_release_request(req); |
| 108 | } |
| 109 | |
| 110 | /** |
Trond Myklebust | c6a556b | 2005-06-22 17:16:30 +0000 | [diff] [blame] | 111 | * nfs_set_page_writeback_locked - Lock a request for writeback |
| 112 | * @req: |
| 113 | */ |
| 114 | int nfs_set_page_writeback_locked(struct nfs_page *req) |
| 115 | { |
Trond Myklebust | 88be9f9 | 2007-06-05 10:42:27 -0400 | [diff] [blame] | 116 | struct nfs_inode *nfsi = NFS_I(req->wb_context->path.dentry->d_inode); |
Trond Myklebust | c6a556b | 2005-06-22 17:16:30 +0000 | [diff] [blame] | 117 | |
| 118 | if (!nfs_lock_request(req)) |
| 119 | return 0; |
| 120 | radix_tree_tag_set(&nfsi->nfs_page_tree, req->wb_index, NFS_PAGE_TAG_WRITEBACK); |
| 121 | return 1; |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * nfs_clear_page_writeback - Unlock request and wake up sleepers |
| 126 | */ |
| 127 | void nfs_clear_page_writeback(struct nfs_page *req) |
| 128 | { |
Trond Myklebust | 88be9f9 | 2007-06-05 10:42:27 -0400 | [diff] [blame] | 129 | struct nfs_inode *nfsi = NFS_I(req->wb_context->path.dentry->d_inode); |
Trond Myklebust | c6a556b | 2005-06-22 17:16:30 +0000 | [diff] [blame] | 130 | |
Trond Myklebust | deb7d63 | 2006-03-20 13:44:50 -0500 | [diff] [blame] | 131 | if (req->wb_page != NULL) { |
| 132 | spin_lock(&nfsi->req_lock); |
| 133 | radix_tree_tag_clear(&nfsi->nfs_page_tree, req->wb_index, NFS_PAGE_TAG_WRITEBACK); |
| 134 | spin_unlock(&nfsi->req_lock); |
| 135 | } |
Trond Myklebust | c6a556b | 2005-06-22 17:16:30 +0000 | [diff] [blame] | 136 | nfs_unlock_request(req); |
| 137 | } |
| 138 | |
| 139 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | * nfs_clear_request - Free up all resources allocated to the request |
| 141 | * @req: |
| 142 | * |
| 143 | * Release page resources associated with a write request after it |
| 144 | * has completed. |
| 145 | */ |
| 146 | void nfs_clear_request(struct nfs_page *req) |
| 147 | { |
Trond Myklebust | cd52ed3 | 2006-03-20 13:44:04 -0500 | [diff] [blame] | 148 | struct page *page = req->wb_page; |
| 149 | if (page != NULL) { |
Trond Myklebust | cd52ed3 | 2006-03-20 13:44:04 -0500 | [diff] [blame] | 150 | page_cache_release(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | req->wb_page = NULL; |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | |
| 156 | /** |
| 157 | * nfs_release_request - Release the count on an NFS read/write request |
| 158 | * @req: request to release |
| 159 | * |
| 160 | * Note: Should never be called with the spinlock held! |
| 161 | */ |
Trond Myklebust | c03b402 | 2007-06-17 13:26:38 -0400 | [diff] [blame^] | 162 | static void nfs_free_request(struct kref *kref) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | { |
Trond Myklebust | c03b402 | 2007-06-17 13:26:38 -0400 | [diff] [blame^] | 164 | struct nfs_page *req = container_of(kref, struct nfs_page, wb_kref); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | /* Release struct file or cached credential */ |
| 167 | nfs_clear_request(req); |
| 168 | put_nfs_open_context(req->wb_context); |
| 169 | nfs_page_free(req); |
| 170 | } |
| 171 | |
Trond Myklebust | c03b402 | 2007-06-17 13:26:38 -0400 | [diff] [blame^] | 172 | void nfs_release_request(struct nfs_page *req) |
| 173 | { |
| 174 | kref_put(&req->wb_kref, nfs_free_request); |
| 175 | } |
| 176 | |
Trond Myklebust | 464a98b | 2005-06-22 17:16:21 +0000 | [diff] [blame] | 177 | static int nfs_wait_bit_interruptible(void *word) |
| 178 | { |
| 179 | int ret = 0; |
| 180 | |
| 181 | if (signal_pending(current)) |
| 182 | ret = -ERESTARTSYS; |
| 183 | else |
| 184 | schedule(); |
| 185 | return ret; |
| 186 | } |
| 187 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | /** |
| 189 | * nfs_wait_on_request - Wait for a request to complete. |
| 190 | * @req: request to wait upon. |
| 191 | * |
| 192 | * Interruptible by signals only if mounted with intr flag. |
| 193 | * The user is responsible for holding a count on the request. |
| 194 | */ |
| 195 | int |
| 196 | nfs_wait_on_request(struct nfs_page *req) |
| 197 | { |
Trond Myklebust | 88be9f9 | 2007-06-05 10:42:27 -0400 | [diff] [blame] | 198 | struct rpc_clnt *clnt = NFS_CLIENT(req->wb_context->path.dentry->d_inode); |
Trond Myklebust | 464a98b | 2005-06-22 17:16:21 +0000 | [diff] [blame] | 199 | sigset_t oldmask; |
| 200 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | |
Trond Myklebust | 464a98b | 2005-06-22 17:16:21 +0000 | [diff] [blame] | 202 | if (!test_bit(PG_BUSY, &req->wb_flags)) |
| 203 | goto out; |
| 204 | /* |
| 205 | * Note: the call to rpc_clnt_sigmask() suffices to ensure that we |
| 206 | * are not interrupted if intr flag is not set |
| 207 | */ |
| 208 | rpc_clnt_sigmask(clnt, &oldmask); |
| 209 | ret = out_of_line_wait_on_bit(&req->wb_flags, PG_BUSY, |
| 210 | nfs_wait_bit_interruptible, TASK_INTERRUPTIBLE); |
| 211 | rpc_clnt_sigunmask(clnt, &oldmask); |
| 212 | out: |
| 213 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | } |
| 215 | |
| 216 | /** |
Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 217 | * nfs_pageio_init - initialise a page io descriptor |
| 218 | * @desc: pointer to descriptor |
Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 219 | * @inode: pointer to inode |
| 220 | * @doio: pointer to io function |
| 221 | * @bsize: io block size |
| 222 | * @io_flags: extra parameters for the io function |
Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 223 | */ |
Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 224 | void nfs_pageio_init(struct nfs_pageio_descriptor *desc, |
| 225 | struct inode *inode, |
Trond Myklebust | 8d5658c | 2007-04-10 09:26:35 -0400 | [diff] [blame] | 226 | int (*doio)(struct inode *, struct list_head *, unsigned int, size_t, int), |
Trond Myklebust | 84dde76 | 2007-05-04 14:44:06 -0400 | [diff] [blame] | 227 | size_t bsize, |
Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 228 | int io_flags) |
Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 229 | { |
| 230 | INIT_LIST_HEAD(&desc->pg_list); |
Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 231 | desc->pg_bytes_written = 0; |
Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 232 | desc->pg_count = 0; |
| 233 | desc->pg_bsize = bsize; |
| 234 | desc->pg_base = 0; |
Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 235 | desc->pg_inode = inode; |
| 236 | desc->pg_doio = doio; |
| 237 | desc->pg_ioflags = io_flags; |
| 238 | desc->pg_error = 0; |
Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | /** |
| 242 | * nfs_can_coalesce_requests - test two requests for compatibility |
| 243 | * @prev: pointer to nfs_page |
| 244 | * @req: pointer to nfs_page |
| 245 | * |
| 246 | * The nfs_page structures 'prev' and 'req' are compared to ensure that the |
| 247 | * page data area they describe is contiguous, and that their RPC |
| 248 | * credentials, NFSv4 open state, and lockowners are the same. |
| 249 | * |
| 250 | * Return 'true' if this is the case, else return 'false'. |
| 251 | */ |
| 252 | static int nfs_can_coalesce_requests(struct nfs_page *prev, |
| 253 | struct nfs_page *req) |
| 254 | { |
| 255 | if (req->wb_context->cred != prev->wb_context->cred) |
| 256 | return 0; |
| 257 | if (req->wb_context->lockowner != prev->wb_context->lockowner) |
| 258 | return 0; |
| 259 | if (req->wb_context->state != prev->wb_context->state) |
| 260 | return 0; |
| 261 | if (req->wb_index != (prev->wb_index + 1)) |
| 262 | return 0; |
| 263 | if (req->wb_pgbase != 0) |
| 264 | return 0; |
| 265 | if (prev->wb_pgbase + prev->wb_bytes != PAGE_CACHE_SIZE) |
| 266 | return 0; |
| 267 | return 1; |
| 268 | } |
| 269 | |
| 270 | /** |
Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 271 | * nfs_pageio_do_add_request - Attempt to coalesce a request into a page list. |
Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 272 | * @desc: destination io descriptor |
| 273 | * @req: request |
| 274 | * |
| 275 | * Returns true if the request 'req' was successfully coalesced into the |
| 276 | * existing list of pages 'desc'. |
| 277 | */ |
Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 278 | static int nfs_pageio_do_add_request(struct nfs_pageio_descriptor *desc, |
| 279 | struct nfs_page *req) |
Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 280 | { |
| 281 | size_t newlen = req->wb_bytes; |
| 282 | |
| 283 | if (desc->pg_count != 0) { |
| 284 | struct nfs_page *prev; |
| 285 | |
| 286 | /* |
| 287 | * FIXME: ideally we should be able to coalesce all requests |
| 288 | * that are not block boundary aligned, but currently this |
| 289 | * is problematic for the case of bsize < PAGE_CACHE_SIZE, |
| 290 | * since nfs_flush_multi and nfs_pagein_multi assume you |
| 291 | * can have only one struct nfs_page. |
| 292 | */ |
Trond Myklebust | 8d5658c | 2007-04-10 09:26:35 -0400 | [diff] [blame] | 293 | if (desc->pg_bsize < PAGE_SIZE) |
| 294 | return 0; |
Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 295 | newlen += desc->pg_count; |
Trond Myklebust | 8d5658c | 2007-04-10 09:26:35 -0400 | [diff] [blame] | 296 | if (newlen > desc->pg_bsize) |
Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 297 | return 0; |
| 298 | prev = nfs_list_entry(desc->pg_list.prev); |
| 299 | if (!nfs_can_coalesce_requests(prev, req)) |
| 300 | return 0; |
| 301 | } else |
| 302 | desc->pg_base = req->wb_pgbase; |
| 303 | nfs_list_remove_request(req); |
| 304 | nfs_list_add_request(req, &desc->pg_list); |
| 305 | desc->pg_count = newlen; |
| 306 | return 1; |
| 307 | } |
| 308 | |
Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 309 | /* |
| 310 | * Helper for nfs_pageio_add_request and nfs_pageio_complete |
| 311 | */ |
| 312 | static void nfs_pageio_doio(struct nfs_pageio_descriptor *desc) |
| 313 | { |
| 314 | if (!list_empty(&desc->pg_list)) { |
| 315 | int error = desc->pg_doio(desc->pg_inode, |
| 316 | &desc->pg_list, |
Trond Myklebust | 8d5658c | 2007-04-10 09:26:35 -0400 | [diff] [blame] | 317 | nfs_page_array_len(desc->pg_base, |
| 318 | desc->pg_count), |
Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 319 | desc->pg_count, |
| 320 | desc->pg_ioflags); |
| 321 | if (error < 0) |
| 322 | desc->pg_error = error; |
| 323 | else |
| 324 | desc->pg_bytes_written += desc->pg_count; |
| 325 | } |
| 326 | if (list_empty(&desc->pg_list)) { |
| 327 | desc->pg_count = 0; |
| 328 | desc->pg_base = 0; |
| 329 | } |
| 330 | } |
| 331 | |
| 332 | /** |
| 333 | * nfs_pageio_add_request - Attempt to coalesce a request into a page list. |
| 334 | * @desc: destination io descriptor |
| 335 | * @req: request |
| 336 | * |
| 337 | * Returns true if the request 'req' was successfully coalesced into the |
| 338 | * existing list of pages 'desc'. |
| 339 | */ |
Trond Myklebust | 8b09bee | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 340 | int nfs_pageio_add_request(struct nfs_pageio_descriptor *desc, |
| 341 | struct nfs_page *req) |
Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 342 | { |
| 343 | while (!nfs_pageio_do_add_request(desc, req)) { |
| 344 | nfs_pageio_doio(desc); |
| 345 | if (desc->pg_error < 0) |
| 346 | return 0; |
| 347 | } |
| 348 | return 1; |
| 349 | } |
| 350 | |
Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 351 | /** |
Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 352 | * nfs_pageio_complete - Complete I/O on an nfs_pageio_descriptor |
| 353 | * @desc: pointer to io descriptor |
| 354 | */ |
| 355 | void nfs_pageio_complete(struct nfs_pageio_descriptor *desc) |
| 356 | { |
| 357 | nfs_pageio_doio(desc); |
| 358 | } |
| 359 | |
Trond Myklebust | 7fe7f84 | 2007-05-20 10:18:27 -0400 | [diff] [blame] | 360 | /** |
| 361 | * nfs_pageio_cond_complete - Conditional I/O completion |
| 362 | * @desc: pointer to io descriptor |
| 363 | * @index: page index |
| 364 | * |
| 365 | * It is important to ensure that processes don't try to take locks |
| 366 | * on non-contiguous ranges of pages as that might deadlock. This |
| 367 | * function should be called before attempting to wait on a locked |
| 368 | * nfs_page. It will complete the I/O if the page index 'index' |
| 369 | * is not contiguous with the existing list of pages in 'desc'. |
| 370 | */ |
| 371 | void nfs_pageio_cond_complete(struct nfs_pageio_descriptor *desc, pgoff_t index) |
| 372 | { |
| 373 | if (!list_empty(&desc->pg_list)) { |
| 374 | struct nfs_page *prev = nfs_list_entry(desc->pg_list.prev); |
| 375 | if (index != prev->wb_index + 1) |
| 376 | nfs_pageio_doio(desc); |
| 377 | } |
| 378 | } |
| 379 | |
Trond Myklebust | 3da28eb | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 380 | #define NFS_SCAN_MAXENTRIES 16 |
| 381 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | * nfs_scan_list - Scan a list for matching requests |
Trond Myklebust | d2ccddf | 2006-05-31 01:13:38 -0400 | [diff] [blame] | 383 | * @nfsi: NFS inode |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | * @head: One of the NFS inode request lists |
| 385 | * @dst: Destination list |
| 386 | * @idx_start: lower bound of page->index to scan |
| 387 | * @npages: idx_start + npages sets the upper bound to scan. |
| 388 | * |
| 389 | * Moves elements from one of the inode request lists. |
| 390 | * If the number of requests is set to 0, the entire address_space |
| 391 | * starting at index idx_start, is scanned. |
| 392 | * The requests are *not* checked to ensure that they form a contiguous set. |
| 393 | * You must be holding the inode's req_lock when calling this function |
| 394 | */ |
Trond Myklebust | d2ccddf | 2006-05-31 01:13:38 -0400 | [diff] [blame] | 395 | int nfs_scan_list(struct nfs_inode *nfsi, struct list_head *head, |
Trond Myklebust | ca52fec | 2007-04-17 17:22:13 -0400 | [diff] [blame] | 396 | struct list_head *dst, pgoff_t idx_start, |
Trond Myklebust | d2ccddf | 2006-05-31 01:13:38 -0400 | [diff] [blame] | 397 | unsigned int npages) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | { |
Trond Myklebust | d2ccddf | 2006-05-31 01:13:38 -0400 | [diff] [blame] | 399 | struct nfs_page *pgvec[NFS_SCAN_MAXENTRIES]; |
| 400 | struct nfs_page *req; |
Trond Myklebust | ca52fec | 2007-04-17 17:22:13 -0400 | [diff] [blame] | 401 | pgoff_t idx_end; |
Trond Myklebust | d2ccddf | 2006-05-31 01:13:38 -0400 | [diff] [blame] | 402 | int found, i; |
| 403 | int res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | |
| 405 | res = 0; |
| 406 | if (npages == 0) |
| 407 | idx_end = ~0; |
| 408 | else |
| 409 | idx_end = idx_start + npages - 1; |
| 410 | |
Trond Myklebust | d2ccddf | 2006-05-31 01:13:38 -0400 | [diff] [blame] | 411 | for (;;) { |
| 412 | found = radix_tree_gang_lookup(&nfsi->nfs_page_tree, |
| 413 | (void **)&pgvec[0], idx_start, |
| 414 | NFS_SCAN_MAXENTRIES); |
| 415 | if (found <= 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | break; |
Trond Myklebust | d2ccddf | 2006-05-31 01:13:38 -0400 | [diff] [blame] | 417 | for (i = 0; i < found; i++) { |
| 418 | req = pgvec[i]; |
| 419 | if (req->wb_index > idx_end) |
| 420 | goto out; |
| 421 | idx_start = req->wb_index + 1; |
| 422 | if (req->wb_list_head != head) |
| 423 | continue; |
| 424 | if (nfs_set_page_writeback_locked(req)) { |
| 425 | nfs_list_remove_request(req); |
| 426 | nfs_list_add_request(req, dst); |
| 427 | res++; |
| 428 | } |
| 429 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | } |
Trond Myklebust | d2ccddf | 2006-05-31 01:13:38 -0400 | [diff] [blame] | 432 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | return res; |
| 434 | } |
| 435 | |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 436 | int __init nfs_init_nfspagecache(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | { |
| 438 | nfs_page_cachep = kmem_cache_create("nfs_page", |
| 439 | sizeof(struct nfs_page), |
| 440 | 0, SLAB_HWCACHE_ALIGN, |
| 441 | NULL, NULL); |
| 442 | if (nfs_page_cachep == NULL) |
| 443 | return -ENOMEM; |
| 444 | |
| 445 | return 0; |
| 446 | } |
| 447 | |
David Brownell | 266bee8 | 2006-06-27 12:59:15 -0700 | [diff] [blame] | 448 | void nfs_destroy_nfspagecache(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | { |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 450 | kmem_cache_destroy(nfs_page_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | } |
| 452 | |