| 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> | 
| Trond Myklebust | 1313e60 | 2012-01-17 22:04:24 -0500 | [diff] [blame] | 16 | #include <linux/nfs.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #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 Gortmaker | afeacc8 | 2011-05-26 16:00:52 -0400 | [diff] [blame] | 22 | #include <linux/export.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 |  | 
| Trond Myklebust | 8d5658c | 2007-04-10 09:26:35 -0400 | [diff] [blame] | 24 | #include "internal.h" | 
| Fred Isaman | bae724e | 2011-03-01 01:34:15 +0000 | [diff] [blame] | 25 | #include "pnfs.h" | 
| Trond Myklebust | 8d5658c | 2007-04-10 09:26:35 -0400 | [diff] [blame] | 26 |  | 
| Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 27 | static struct kmem_cache *nfs_page_cachep; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 |  | 
|  | 29 | static inline struct nfs_page * | 
|  | 30 | nfs_page_alloc(void) | 
|  | 31 | { | 
| Jesper Juhl | 72895b1 | 2010-12-09 23:17:15 +0100 | [diff] [blame] | 32 | struct nfs_page	*p = kmem_cache_zalloc(nfs_page_cachep, GFP_KERNEL); | 
|  | 33 | if (p) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | INIT_LIST_HEAD(&p->wb_list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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. | 
| Chuck Lever | c02f557 | 2011-10-25 12:17:43 -0400 | [diff] [blame] | 46 | * @ctx: open context to use | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | struct nfs_page		*req; | 
|  | 62 |  | 
| Trond Myklebust | 18eb884 | 2010-05-13 12:51:02 -0400 | [diff] [blame] | 63 | /* try to allocate the request struct */ | 
|  | 64 | req = nfs_page_alloc(); | 
|  | 65 | if (req == NULL) | 
|  | 66 | return ERR_PTR(-ENOMEM); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 |  | 
| Jeff Layton | 015f021 | 2010-10-28 10:10:37 -0400 | [diff] [blame] | 68 | /* 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |  | 
| Trond Myklebust | 4d65c52 | 2011-03-25 14:15:11 -0400 | [diff] [blame] | 110 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | * nfs_clear_request - Free up all resources allocated to the request | 
|  | 112 | * @req: | 
|  | 113 | * | 
| Trond Myklebust | bb6fbc4 | 2010-03-11 09:19:35 -0500 | [diff] [blame] | 114 | * Release page and open context resources associated with a read/write | 
|  | 115 | * request after it has completed. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | */ | 
| Trond Myklebust | 4d65c52 | 2011-03-25 14:15:11 -0400 | [diff] [blame] | 117 | static void nfs_clear_request(struct nfs_page *req) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | { | 
| Trond Myklebust | cd52ed3 | 2006-03-20 13:44:04 -0500 | [diff] [blame] | 119 | struct page *page = req->wb_page; | 
| Trond Myklebust | bb6fbc4 | 2010-03-11 09:19:35 -0500 | [diff] [blame] | 120 | struct nfs_open_context *ctx = req->wb_context; | 
| Trond Myklebust | f11ac8d | 2010-06-25 16:35:53 -0400 | [diff] [blame] | 121 | struct nfs_lock_context *l_ctx = req->wb_lock_context; | 
| Trond Myklebust | bb6fbc4 | 2010-03-11 09:19:35 -0500 | [diff] [blame] | 122 |  | 
| Trond Myklebust | cd52ed3 | 2006-03-20 13:44:04 -0500 | [diff] [blame] | 123 | if (page != NULL) { | 
| Trond Myklebust | cd52ed3 | 2006-03-20 13:44:04 -0500 | [diff] [blame] | 124 | page_cache_release(page); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | req->wb_page = NULL; | 
|  | 126 | } | 
| Trond Myklebust | f11ac8d | 2010-06-25 16:35:53 -0400 | [diff] [blame] | 127 | if (l_ctx != NULL) { | 
|  | 128 | nfs_put_lock_context(l_ctx); | 
|  | 129 | req->wb_lock_context = NULL; | 
|  | 130 | } | 
| Trond Myklebust | bb6fbc4 | 2010-03-11 09:19:35 -0500 | [diff] [blame] | 131 | if (ctx != NULL) { | 
|  | 132 | put_nfs_open_context(ctx); | 
|  | 133 | req->wb_context = NULL; | 
|  | 134 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | } | 
|  | 136 |  | 
|  | 137 |  | 
|  | 138 | /** | 
|  | 139 | * nfs_release_request - Release the count on an NFS read/write request | 
|  | 140 | * @req: request to release | 
|  | 141 | * | 
|  | 142 | * Note: Should never be called with the spinlock held! | 
|  | 143 | */ | 
| Trond Myklebust | c03b402 | 2007-06-17 13:26:38 -0400 | [diff] [blame] | 144 | static void nfs_free_request(struct kref *kref) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | { | 
| Trond Myklebust | c03b402 | 2007-06-17 13:26:38 -0400 | [diff] [blame] | 146 | struct nfs_page *req = container_of(kref, struct nfs_page, wb_kref); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 |  | 
| Trond Myklebust | bb6fbc4 | 2010-03-11 09:19:35 -0500 | [diff] [blame] | 148 | /* Release struct file and open context */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | nfs_clear_request(req); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | nfs_page_free(req); | 
|  | 151 | } | 
|  | 152 |  | 
| Trond Myklebust | c03b402 | 2007-06-17 13:26:38 -0400 | [diff] [blame] | 153 | void nfs_release_request(struct nfs_page *req) | 
|  | 154 | { | 
|  | 155 | kref_put(&req->wb_kref, nfs_free_request); | 
|  | 156 | } | 
|  | 157 |  | 
| Trond Myklebust | 9f557cd | 2010-02-03 08:27:22 -0500 | [diff] [blame] | 158 | static int nfs_wait_bit_uninterruptible(void *word) | 
|  | 159 | { | 
|  | 160 | io_schedule(); | 
|  | 161 | return 0; | 
|  | 162 | } | 
|  | 163 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | /** | 
|  | 165 | * nfs_wait_on_request - Wait for a request to complete. | 
|  | 166 | * @req: request to wait upon. | 
|  | 167 | * | 
| Matthew Wilcox | 150030b | 2007-12-06 16:24:39 -0500 | [diff] [blame] | 168 | * Interruptible by fatal signals only. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | * The user is responsible for holding a count on the request. | 
|  | 170 | */ | 
|  | 171 | int | 
|  | 172 | nfs_wait_on_request(struct nfs_page *req) | 
|  | 173 | { | 
| Trond Myklebust | 9f557cd | 2010-02-03 08:27:22 -0500 | [diff] [blame] | 174 | return wait_on_bit(&req->wb_flags, PG_BUSY, | 
|  | 175 | nfs_wait_bit_uninterruptible, | 
|  | 176 | TASK_UNINTERRUPTIBLE); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | } | 
|  | 178 |  | 
| Benny Halevy | 19345cb | 2011-06-19 18:33:46 -0400 | [diff] [blame] | 179 | bool nfs_generic_pg_test(struct nfs_pageio_descriptor *desc, struct nfs_page *prev, struct nfs_page *req) | 
| Boaz Harrosh | 5b36c7d | 2011-05-29 11:45:39 +0300 | [diff] [blame] | 180 | { | 
|  | 181 | /* | 
|  | 182 | * FIXME: ideally we should be able to coalesce all requests | 
|  | 183 | * that are not block boundary aligned, but currently this | 
|  | 184 | * is problematic for the case of bsize < PAGE_CACHE_SIZE, | 
|  | 185 | * since nfs_flush_multi and nfs_pagein_multi assume you | 
|  | 186 | * can have only one struct nfs_page. | 
|  | 187 | */ | 
|  | 188 | if (desc->pg_bsize < PAGE_SIZE) | 
|  | 189 | return 0; | 
|  | 190 |  | 
|  | 191 | return desc->pg_count + req->wb_bytes <= desc->pg_bsize; | 
|  | 192 | } | 
| Benny Halevy | 19345cb | 2011-06-19 18:33:46 -0400 | [diff] [blame] | 193 | EXPORT_SYMBOL_GPL(nfs_generic_pg_test); | 
| Boaz Harrosh | 5b36c7d | 2011-05-29 11:45:39 +0300 | [diff] [blame] | 194 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | /** | 
| Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 196 | * nfs_pageio_init - initialise a page io descriptor | 
|  | 197 | * @desc: pointer to descriptor | 
| Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 198 | * @inode: pointer to inode | 
|  | 199 | * @doio: pointer to io function | 
|  | 200 | * @bsize: io block size | 
|  | 201 | * @io_flags: extra parameters for the io function | 
| Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 202 | */ | 
| Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 203 | void nfs_pageio_init(struct nfs_pageio_descriptor *desc, | 
|  | 204 | struct inode *inode, | 
| Trond Myklebust | 1751c36 | 2011-06-10 13:30:23 -0400 | [diff] [blame] | 205 | const struct nfs_pageio_ops *pg_ops, | 
| Trond Myklebust | 84dde76 | 2007-05-04 14:44:06 -0400 | [diff] [blame] | 206 | size_t bsize, | 
| Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 207 | int io_flags) | 
| Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 208 | { | 
|  | 209 | INIT_LIST_HEAD(&desc->pg_list); | 
| Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 210 | desc->pg_bytes_written = 0; | 
| Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 211 | desc->pg_count = 0; | 
|  | 212 | desc->pg_bsize = bsize; | 
|  | 213 | desc->pg_base = 0; | 
| Trond Myklebust | b31268a | 2011-03-21 17:02:00 -0400 | [diff] [blame] | 214 | desc->pg_moreio = 0; | 
| Trond Myklebust | d9156f9 | 2011-07-12 13:42:02 -0400 | [diff] [blame] | 215 | desc->pg_recoalesce = 0; | 
| Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 216 | desc->pg_inode = inode; | 
| Trond Myklebust | 1751c36 | 2011-06-10 13:30:23 -0400 | [diff] [blame] | 217 | desc->pg_ops = pg_ops; | 
| Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 218 | desc->pg_ioflags = io_flags; | 
|  | 219 | desc->pg_error = 0; | 
| Fred Isaman | 94ad1c8 | 2011-03-01 01:34:14 +0000 | [diff] [blame] | 220 | desc->pg_lseg = NULL; | 
| Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 221 | } | 
|  | 222 |  | 
|  | 223 | /** | 
|  | 224 | * nfs_can_coalesce_requests - test two requests for compatibility | 
|  | 225 | * @prev: pointer to nfs_page | 
|  | 226 | * @req: pointer to nfs_page | 
|  | 227 | * | 
|  | 228 | * The nfs_page structures 'prev' and 'req' are compared to ensure that the | 
|  | 229 | * page data area they describe is contiguous, and that their RPC | 
|  | 230 | * credentials, NFSv4 open state, and lockowners are the same. | 
|  | 231 | * | 
|  | 232 | * Return 'true' if this is the case, else return 'false'. | 
|  | 233 | */ | 
| Benny Halevy | 18ad0a9 | 2011-05-25 21:03:56 +0300 | [diff] [blame] | 234 | static bool nfs_can_coalesce_requests(struct nfs_page *prev, | 
|  | 235 | struct nfs_page *req, | 
|  | 236 | struct nfs_pageio_descriptor *pgio) | 
| Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 237 | { | 
|  | 238 | if (req->wb_context->cred != prev->wb_context->cred) | 
| Benny Halevy | 18ad0a9 | 2011-05-25 21:03:56 +0300 | [diff] [blame] | 239 | return false; | 
| Trond Myklebust | f11ac8d | 2010-06-25 16:35:53 -0400 | [diff] [blame] | 240 | if (req->wb_lock_context->lockowner != prev->wb_lock_context->lockowner) | 
| Benny Halevy | 18ad0a9 | 2011-05-25 21:03:56 +0300 | [diff] [blame] | 241 | return false; | 
| Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 242 | if (req->wb_context->state != prev->wb_context->state) | 
| Benny Halevy | 18ad0a9 | 2011-05-25 21:03:56 +0300 | [diff] [blame] | 243 | return false; | 
| Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 244 | if (req->wb_index != (prev->wb_index + 1)) | 
| Benny Halevy | 18ad0a9 | 2011-05-25 21:03:56 +0300 | [diff] [blame] | 245 | return false; | 
| Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 246 | if (req->wb_pgbase != 0) | 
| Benny Halevy | 18ad0a9 | 2011-05-25 21:03:56 +0300 | [diff] [blame] | 247 | return false; | 
| Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 248 | if (prev->wb_pgbase + prev->wb_bytes != PAGE_CACHE_SIZE) | 
| Benny Halevy | 18ad0a9 | 2011-05-25 21:03:56 +0300 | [diff] [blame] | 249 | return false; | 
| Trond Myklebust | 1751c36 | 2011-06-10 13:30:23 -0400 | [diff] [blame] | 250 | return pgio->pg_ops->pg_test(pgio, prev, req); | 
| Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 251 | } | 
|  | 252 |  | 
|  | 253 | /** | 
| Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 254 | * 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] | 255 | * @desc: destination io descriptor | 
|  | 256 | * @req: request | 
|  | 257 | * | 
|  | 258 | * Returns true if the request 'req' was successfully coalesced into the | 
|  | 259 | * existing list of pages 'desc'. | 
|  | 260 | */ | 
| Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 261 | static int nfs_pageio_do_add_request(struct nfs_pageio_descriptor *desc, | 
|  | 262 | struct nfs_page *req) | 
| Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 263 | { | 
| Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 264 | if (desc->pg_count != 0) { | 
|  | 265 | struct nfs_page *prev; | 
|  | 266 |  | 
| Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 267 | prev = nfs_list_entry(desc->pg_list.prev); | 
| Fred Isaman | 94ad1c8 | 2011-03-01 01:34:14 +0000 | [diff] [blame] | 268 | if (!nfs_can_coalesce_requests(prev, req, desc)) | 
| Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 269 | return 0; | 
| Boaz Harrosh | 5b36c7d | 2011-05-29 11:45:39 +0300 | [diff] [blame] | 270 | } else { | 
| Trond Myklebust | d8007d4 | 2011-06-10 13:30:23 -0400 | [diff] [blame] | 271 | if (desc->pg_ops->pg_init) | 
|  | 272 | desc->pg_ops->pg_init(desc, req); | 
| Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 273 | desc->pg_base = req->wb_pgbase; | 
| Boaz Harrosh | 5b36c7d | 2011-05-29 11:45:39 +0300 | [diff] [blame] | 274 | } | 
| Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 275 | nfs_list_remove_request(req); | 
|  | 276 | nfs_list_add_request(req, &desc->pg_list); | 
| Boaz Harrosh | 5b36c7d | 2011-05-29 11:45:39 +0300 | [diff] [blame] | 277 | desc->pg_count += req->wb_bytes; | 
| Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 278 | return 1; | 
|  | 279 | } | 
|  | 280 |  | 
| Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 281 | /* | 
|  | 282 | * Helper for nfs_pageio_add_request and nfs_pageio_complete | 
|  | 283 | */ | 
|  | 284 | static void nfs_pageio_doio(struct nfs_pageio_descriptor *desc) | 
|  | 285 | { | 
|  | 286 | if (!list_empty(&desc->pg_list)) { | 
| Trond Myklebust | 1751c36 | 2011-06-10 13:30:23 -0400 | [diff] [blame] | 287 | int error = desc->pg_ops->pg_doio(desc); | 
| Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 288 | if (error < 0) | 
|  | 289 | desc->pg_error = error; | 
|  | 290 | else | 
|  | 291 | desc->pg_bytes_written += desc->pg_count; | 
|  | 292 | } | 
|  | 293 | if (list_empty(&desc->pg_list)) { | 
|  | 294 | desc->pg_count = 0; | 
|  | 295 | desc->pg_base = 0; | 
|  | 296 | } | 
|  | 297 | } | 
|  | 298 |  | 
|  | 299 | /** | 
|  | 300 | * nfs_pageio_add_request - Attempt to coalesce a request into a page list. | 
|  | 301 | * @desc: destination io descriptor | 
|  | 302 | * @req: request | 
|  | 303 | * | 
|  | 304 | * Returns true if the request 'req' was successfully coalesced into the | 
|  | 305 | * existing list of pages 'desc'. | 
|  | 306 | */ | 
| Trond Myklebust | d9156f9 | 2011-07-12 13:42:02 -0400 | [diff] [blame] | 307 | static int __nfs_pageio_add_request(struct nfs_pageio_descriptor *desc, | 
| Trond Myklebust | 8b09bee | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 308 | struct nfs_page *req) | 
| Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 309 | { | 
|  | 310 | while (!nfs_pageio_do_add_request(desc, req)) { | 
| Trond Myklebust | b31268a | 2011-03-21 17:02:00 -0400 | [diff] [blame] | 311 | desc->pg_moreio = 1; | 
| Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 312 | nfs_pageio_doio(desc); | 
|  | 313 | if (desc->pg_error < 0) | 
|  | 314 | return 0; | 
| Trond Myklebust | b31268a | 2011-03-21 17:02:00 -0400 | [diff] [blame] | 315 | desc->pg_moreio = 0; | 
| Trond Myklebust | d9156f9 | 2011-07-12 13:42:02 -0400 | [diff] [blame] | 316 | if (desc->pg_recoalesce) | 
|  | 317 | return 0; | 
| Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 318 | } | 
|  | 319 | return 1; | 
|  | 320 | } | 
|  | 321 |  | 
| Trond Myklebust | d9156f9 | 2011-07-12 13:42:02 -0400 | [diff] [blame] | 322 | static int nfs_do_recoalesce(struct nfs_pageio_descriptor *desc) | 
|  | 323 | { | 
|  | 324 | LIST_HEAD(head); | 
|  | 325 |  | 
|  | 326 | do { | 
|  | 327 | list_splice_init(&desc->pg_list, &head); | 
|  | 328 | desc->pg_bytes_written -= desc->pg_count; | 
|  | 329 | desc->pg_count = 0; | 
|  | 330 | desc->pg_base = 0; | 
|  | 331 | desc->pg_recoalesce = 0; | 
|  | 332 |  | 
|  | 333 | while (!list_empty(&head)) { | 
|  | 334 | struct nfs_page *req; | 
|  | 335 |  | 
|  | 336 | req = list_first_entry(&head, struct nfs_page, wb_list); | 
|  | 337 | nfs_list_remove_request(req); | 
|  | 338 | if (__nfs_pageio_add_request(desc, req)) | 
|  | 339 | continue; | 
|  | 340 | if (desc->pg_error < 0) | 
|  | 341 | return 0; | 
|  | 342 | break; | 
|  | 343 | } | 
|  | 344 | } while (desc->pg_recoalesce); | 
|  | 345 | return 1; | 
|  | 346 | } | 
|  | 347 |  | 
|  | 348 | int nfs_pageio_add_request(struct nfs_pageio_descriptor *desc, | 
|  | 349 | struct nfs_page *req) | 
|  | 350 | { | 
|  | 351 | int ret; | 
|  | 352 |  | 
|  | 353 | do { | 
|  | 354 | ret = __nfs_pageio_add_request(desc, req); | 
|  | 355 | if (ret) | 
|  | 356 | break; | 
|  | 357 | if (desc->pg_error < 0) | 
|  | 358 | break; | 
|  | 359 | ret = nfs_do_recoalesce(desc); | 
|  | 360 | } while (ret); | 
|  | 361 | return ret; | 
|  | 362 | } | 
|  | 363 |  | 
| Trond Myklebust | d8a5ad7 | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 364 | /** | 
| Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 365 | * nfs_pageio_complete - Complete I/O on an nfs_pageio_descriptor | 
|  | 366 | * @desc: pointer to io descriptor | 
|  | 367 | */ | 
|  | 368 | void nfs_pageio_complete(struct nfs_pageio_descriptor *desc) | 
|  | 369 | { | 
| Trond Myklebust | d9156f9 | 2011-07-12 13:42:02 -0400 | [diff] [blame] | 370 | for (;;) { | 
|  | 371 | nfs_pageio_doio(desc); | 
|  | 372 | if (!desc->pg_recoalesce) | 
|  | 373 | break; | 
|  | 374 | if (!nfs_do_recoalesce(desc)) | 
|  | 375 | break; | 
|  | 376 | } | 
| Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 377 | } | 
|  | 378 |  | 
| Trond Myklebust | 7fe7f84 | 2007-05-20 10:18:27 -0400 | [diff] [blame] | 379 | /** | 
|  | 380 | * nfs_pageio_cond_complete - Conditional I/O completion | 
|  | 381 | * @desc: pointer to io descriptor | 
|  | 382 | * @index: page index | 
|  | 383 | * | 
|  | 384 | * It is important to ensure that processes don't try to take locks | 
|  | 385 | * on non-contiguous ranges of pages as that might deadlock. This | 
|  | 386 | * function should be called before attempting to wait on a locked | 
|  | 387 | * nfs_page. It will complete the I/O if the page index 'index' | 
|  | 388 | * is not contiguous with the existing list of pages in 'desc'. | 
|  | 389 | */ | 
|  | 390 | void nfs_pageio_cond_complete(struct nfs_pageio_descriptor *desc, pgoff_t index) | 
|  | 391 | { | 
|  | 392 | if (!list_empty(&desc->pg_list)) { | 
|  | 393 | struct nfs_page *prev = nfs_list_entry(desc->pg_list.prev); | 
|  | 394 | if (index != prev->wb_index + 1) | 
| Trond Myklebust | d9156f9 | 2011-07-12 13:42:02 -0400 | [diff] [blame] | 395 | nfs_pageio_complete(desc); | 
| Trond Myklebust | 7fe7f84 | 2007-05-20 10:18:27 -0400 | [diff] [blame] | 396 | } | 
|  | 397 | } | 
|  | 398 |  | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 399 | int __init nfs_init_nfspagecache(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | { | 
|  | 401 | nfs_page_cachep = kmem_cache_create("nfs_page", | 
|  | 402 | sizeof(struct nfs_page), | 
|  | 403 | 0, SLAB_HWCACHE_ALIGN, | 
| Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 404 | NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | if (nfs_page_cachep == NULL) | 
|  | 406 | return -ENOMEM; | 
|  | 407 |  | 
|  | 408 | return 0; | 
|  | 409 | } | 
|  | 410 |  | 
| David Brownell | 266bee8 | 2006-06-27 12:59:15 -0700 | [diff] [blame] | 411 | void nfs_destroy_nfspagecache(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | { | 
| Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 413 | kmem_cache_destroy(nfs_page_cachep); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | } | 
|  | 415 |  |