| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * linux/fs/nfs/write.c | 
|  | 3 | * | 
| Trond Myklebust | 7c85d90 | 2006-12-13 15:23:48 -0500 | [diff] [blame] | 4 | * Write file data over NFS. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * | 
|  | 6 | * Copyright (C) 1996, 1997, Olaf Kirch <okir@monad.swb.de> | 
|  | 7 | */ | 
|  | 8 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/types.h> | 
|  | 10 | #include <linux/slab.h> | 
|  | 11 | #include <linux/mm.h> | 
|  | 12 | #include <linux/pagemap.h> | 
|  | 13 | #include <linux/file.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/writeback.h> | 
| Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 15 | #include <linux/swap.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 |  | 
|  | 17 | #include <linux/sunrpc/clnt.h> | 
|  | 18 | #include <linux/nfs_fs.h> | 
|  | 19 | #include <linux/nfs_mount.h> | 
|  | 20 | #include <linux/nfs_page.h> | 
| Andrew Morton | 3fcfab1 | 2006-10-19 23:28:16 -0700 | [diff] [blame] | 21 | #include <linux/backing-dev.h> | 
|  | 22 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <asm/uaccess.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 |  | 
|  | 25 | #include "delegation.h" | 
| Trond Myklebust | 49a70f2 | 2006-12-05 00:35:38 -0500 | [diff] [blame] | 26 | #include "internal.h" | 
| Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 27 | #include "iostat.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 |  | 
|  | 29 | #define NFSDBG_FACILITY		NFSDBG_PAGECACHE | 
|  | 30 |  | 
|  | 31 | #define MIN_POOL_WRITE		(32) | 
|  | 32 | #define MIN_POOL_COMMIT		(4) | 
|  | 33 |  | 
|  | 34 | /* | 
|  | 35 | * Local function declarations | 
|  | 36 | */ | 
| Trond Myklebust | c63c7b0 | 2007-04-02 19:29:52 -0400 | [diff] [blame] | 37 | static void nfs_pageio_init_write(struct nfs_pageio_descriptor *desc, | 
|  | 38 | struct inode *inode, int ioflags); | 
| Fred Isaman | f8512ad | 2008-03-19 11:24:39 -0400 | [diff] [blame] | 39 | static void nfs_redirty_request(struct nfs_page *req); | 
| Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 40 | static const struct rpc_call_ops nfs_write_partial_ops; | 
|  | 41 | static const struct rpc_call_ops nfs_write_full_ops; | 
|  | 42 | static const struct rpc_call_ops nfs_commit_ops; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 |  | 
| Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 44 | static struct kmem_cache *nfs_wdata_cachep; | 
| Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 45 | static mempool_t *nfs_wdata_mempool; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | static mempool_t *nfs_commit_mempool; | 
|  | 47 |  | 
| Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 48 | struct nfs_write_data *nfs_commitdata_alloc(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | { | 
| Christoph Lameter | e6b4f8d | 2006-12-06 20:33:14 -0800 | [diff] [blame] | 50 | struct nfs_write_data *p = mempool_alloc(nfs_commit_mempool, GFP_NOFS); | 
| Chuck Lever | 40859d7 | 2005-11-30 18:09:02 -0500 | [diff] [blame] | 51 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | if (p) { | 
|  | 53 | memset(p, 0, sizeof(*p)); | 
|  | 54 | INIT_LIST_HEAD(&p->pages); | 
|  | 55 | } | 
|  | 56 | return p; | 
|  | 57 | } | 
|  | 58 |  | 
| Trond Myklebust | 5e4424a | 2008-02-25 21:53:49 -0800 | [diff] [blame] | 59 | void nfs_commit_free(struct nfs_write_data *p) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | { | 
| Chuck Lever | 40859d7 | 2005-11-30 18:09:02 -0500 | [diff] [blame] | 61 | if (p && (p->pagevec != &p->page_array[0])) | 
|  | 62 | kfree(p->pagevec); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | mempool_free(p, nfs_commit_mempool); | 
|  | 64 | } | 
|  | 65 |  | 
| Trond Myklebust | 8d5658c | 2007-04-10 09:26:35 -0400 | [diff] [blame] | 66 | struct nfs_write_data *nfs_writedata_alloc(unsigned int pagecount) | 
| Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 67 | { | 
| Christoph Lameter | e6b4f8d | 2006-12-06 20:33:14 -0800 | [diff] [blame] | 68 | struct nfs_write_data *p = mempool_alloc(nfs_wdata_mempool, GFP_NOFS); | 
| Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 69 |  | 
|  | 70 | if (p) { | 
|  | 71 | memset(p, 0, sizeof(*p)); | 
|  | 72 | INIT_LIST_HEAD(&p->pages); | 
| Trond Myklebust | e9f7bee | 2006-09-08 09:48:54 -0700 | [diff] [blame] | 73 | p->npages = pagecount; | 
| Chuck Lever | 0d0b5cb | 2006-05-25 01:40:53 -0400 | [diff] [blame] | 74 | if (pagecount <= ARRAY_SIZE(p->page_array)) | 
|  | 75 | p->pagevec = p->page_array; | 
| Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 76 | else { | 
| Chuck Lever | 0d0b5cb | 2006-05-25 01:40:53 -0400 | [diff] [blame] | 77 | p->pagevec = kcalloc(pagecount, sizeof(struct page *), GFP_NOFS); | 
|  | 78 | if (!p->pagevec) { | 
| Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 79 | mempool_free(p, nfs_wdata_mempool); | 
|  | 80 | p = NULL; | 
|  | 81 | } | 
|  | 82 | } | 
|  | 83 | } | 
|  | 84 | return p; | 
|  | 85 | } | 
|  | 86 |  | 
| Trond Myklebust | 5e4424a | 2008-02-25 21:53:49 -0800 | [diff] [blame] | 87 | static void nfs_writedata_free(struct nfs_write_data *p) | 
| Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 88 | { | 
|  | 89 | if (p && (p->pagevec != &p->page_array[0])) | 
|  | 90 | kfree(p->pagevec); | 
|  | 91 | mempool_free(p, nfs_wdata_mempool); | 
|  | 92 | } | 
|  | 93 |  | 
| Trond Myklebust | 383ba71 | 2008-02-19 20:04:20 -0500 | [diff] [blame] | 94 | void nfs_writedata_release(void *data) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | { | 
| Trond Myklebust | 383ba71 | 2008-02-19 20:04:20 -0500 | [diff] [blame] | 96 | struct nfs_write_data *wdata = data; | 
|  | 97 |  | 
|  | 98 | put_nfs_open_context(wdata->args.context); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | nfs_writedata_free(wdata); | 
|  | 100 | } | 
|  | 101 |  | 
| Trond Myklebust | 7b159fc | 2007-07-25 14:09:54 -0400 | [diff] [blame] | 102 | static void nfs_context_set_write_error(struct nfs_open_context *ctx, int error) | 
|  | 103 | { | 
|  | 104 | ctx->error = error; | 
|  | 105 | smp_wmb(); | 
|  | 106 | set_bit(NFS_CONTEXT_ERROR_WRITE, &ctx->flags); | 
|  | 107 | } | 
|  | 108 |  | 
| Trond Myklebust | 277459d | 2006-12-05 00:35:35 -0500 | [diff] [blame] | 109 | static struct nfs_page *nfs_page_find_request_locked(struct page *page) | 
|  | 110 | { | 
|  | 111 | struct nfs_page *req = NULL; | 
|  | 112 |  | 
|  | 113 | if (PagePrivate(page)) { | 
|  | 114 | req = (struct nfs_page *)page_private(page); | 
|  | 115 | if (req != NULL) | 
| Trond Myklebust | c03b402 | 2007-06-17 13:26:38 -0400 | [diff] [blame] | 116 | kref_get(&req->wb_kref); | 
| Trond Myklebust | 277459d | 2006-12-05 00:35:35 -0500 | [diff] [blame] | 117 | } | 
|  | 118 | return req; | 
|  | 119 | } | 
|  | 120 |  | 
|  | 121 | static struct nfs_page *nfs_page_find_request(struct page *page) | 
|  | 122 | { | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 123 | struct inode *inode = page->mapping->host; | 
| Trond Myklebust | 277459d | 2006-12-05 00:35:35 -0500 | [diff] [blame] | 124 | struct nfs_page *req = NULL; | 
| Trond Myklebust | 277459d | 2006-12-05 00:35:35 -0500 | [diff] [blame] | 125 |  | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 126 | spin_lock(&inode->i_lock); | 
| Trond Myklebust | 277459d | 2006-12-05 00:35:35 -0500 | [diff] [blame] | 127 | req = nfs_page_find_request_locked(page); | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 128 | spin_unlock(&inode->i_lock); | 
| Trond Myklebust | 277459d | 2006-12-05 00:35:35 -0500 | [diff] [blame] | 129 | return req; | 
|  | 130 | } | 
|  | 131 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | /* Adjust the file length if we're writing beyond the end */ | 
|  | 133 | static void nfs_grow_file(struct page *page, unsigned int offset, unsigned int count) | 
|  | 134 | { | 
|  | 135 | struct inode *inode = page->mapping->host; | 
| Trond Myklebust | a3d0145 | 2008-06-11 12:21:19 -0400 | [diff] [blame] | 136 | loff_t end, i_size; | 
|  | 137 | pgoff_t end_index; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 |  | 
| Trond Myklebust | a3d0145 | 2008-06-11 12:21:19 -0400 | [diff] [blame] | 139 | spin_lock(&inode->i_lock); | 
|  | 140 | i_size = i_size_read(inode); | 
|  | 141 | end_index = (i_size - 1) >> PAGE_CACHE_SHIFT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | if (i_size > 0 && page->index < end_index) | 
| Trond Myklebust | a3d0145 | 2008-06-11 12:21:19 -0400 | [diff] [blame] | 143 | goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | end = ((loff_t)page->index << PAGE_CACHE_SHIFT) + ((loff_t)offset+count); | 
|  | 145 | if (i_size >= end) | 
| Trond Myklebust | a3d0145 | 2008-06-11 12:21:19 -0400 | [diff] [blame] | 146 | goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | i_size_write(inode, end); | 
| Trond Myklebust | a3d0145 | 2008-06-11 12:21:19 -0400 | [diff] [blame] | 148 | nfs_inc_stats(inode, NFSIOS_EXTENDWRITE); | 
|  | 149 | out: | 
|  | 150 | spin_unlock(&inode->i_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | } | 
|  | 152 |  | 
| Trond Myklebust | a301b77 | 2007-02-06 11:07:15 -0800 | [diff] [blame] | 153 | /* A writeback failed: mark the page as bad, and invalidate the page cache */ | 
|  | 154 | static void nfs_set_pageerror(struct page *page) | 
|  | 155 | { | 
|  | 156 | SetPageError(page); | 
|  | 157 | nfs_zap_mapping(page->mapping->host, page->mapping); | 
|  | 158 | } | 
|  | 159 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | /* We can set the PG_uptodate flag if we see that a write request | 
|  | 161 | * covers the full page. | 
|  | 162 | */ | 
|  | 163 | static void nfs_mark_uptodate(struct page *page, unsigned int base, unsigned int count) | 
|  | 164 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | if (PageUptodate(page)) | 
|  | 166 | return; | 
|  | 167 | if (base != 0) | 
|  | 168 | return; | 
| Trond Myklebust | 49a70f2 | 2006-12-05 00:35:38 -0500 | [diff] [blame] | 169 | if (count != nfs_page_length(page)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | return; | 
| Trond Myklebust | 49a70f2 | 2006-12-05 00:35:38 -0500 | [diff] [blame] | 171 | SetPageUptodate(page); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | } | 
|  | 173 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | static int wb_priority(struct writeback_control *wbc) | 
|  | 175 | { | 
|  | 176 | if (wbc->for_reclaim) | 
| Trond Myklebust | c63c7b0 | 2007-04-02 19:29:52 -0400 | [diff] [blame] | 177 | return FLUSH_HIGHPRI | FLUSH_STABLE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | if (wbc->for_kupdate) | 
|  | 179 | return FLUSH_LOWPRI; | 
|  | 180 | return 0; | 
|  | 181 | } | 
|  | 182 |  | 
|  | 183 | /* | 
| Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 184 | * NFS congestion control | 
|  | 185 | */ | 
|  | 186 |  | 
|  | 187 | int nfs_congestion_kb; | 
|  | 188 |  | 
|  | 189 | #define NFS_CONGESTION_ON_THRESH 	(nfs_congestion_kb >> (PAGE_SHIFT-10)) | 
|  | 190 | #define NFS_CONGESTION_OFF_THRESH	\ | 
|  | 191 | (NFS_CONGESTION_ON_THRESH - (NFS_CONGESTION_ON_THRESH >> 2)) | 
|  | 192 |  | 
| Trond Myklebust | 5a6d41b | 2007-04-14 19:10:12 -0400 | [diff] [blame] | 193 | static int nfs_set_page_writeback(struct page *page) | 
| Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 194 | { | 
| Trond Myklebust | 5a6d41b | 2007-04-14 19:10:12 -0400 | [diff] [blame] | 195 | int ret = test_set_page_writeback(page); | 
|  | 196 |  | 
|  | 197 | if (!ret) { | 
| Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 198 | struct inode *inode = page->mapping->host; | 
|  | 199 | struct nfs_server *nfss = NFS_SERVER(inode); | 
|  | 200 |  | 
| Peter Zijlstra | 277866a | 2007-05-08 00:35:12 -0700 | [diff] [blame] | 201 | if (atomic_long_inc_return(&nfss->writeback) > | 
| Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 202 | NFS_CONGESTION_ON_THRESH) | 
|  | 203 | set_bdi_congested(&nfss->backing_dev_info, WRITE); | 
|  | 204 | } | 
| Trond Myklebust | 5a6d41b | 2007-04-14 19:10:12 -0400 | [diff] [blame] | 205 | return ret; | 
| Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 206 | } | 
|  | 207 |  | 
|  | 208 | static void nfs_end_page_writeback(struct page *page) | 
|  | 209 | { | 
|  | 210 | struct inode *inode = page->mapping->host; | 
|  | 211 | struct nfs_server *nfss = NFS_SERVER(inode); | 
|  | 212 |  | 
|  | 213 | end_page_writeback(page); | 
| Peter Zijlstra | c4dc4be | 2007-10-16 23:25:41 -0700 | [diff] [blame] | 214 | if (atomic_long_dec_return(&nfss->writeback) < NFS_CONGESTION_OFF_THRESH) | 
| Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 215 | clear_bdi_congested(&nfss->backing_dev_info, WRITE); | 
| Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 216 | } | 
|  | 217 |  | 
|  | 218 | /* | 
| Trond Myklebust | e261f51 | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 219 | * Find an associated nfs write request, and prepare to flush it out | 
| Trond Myklebust | 9cccef9 | 2007-07-22 17:09:05 -0400 | [diff] [blame] | 220 | * May return an error if the user signalled nfs_wait_on_request(). | 
| Trond Myklebust | e261f51 | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 221 | */ | 
| Trond Myklebust | c63c7b0 | 2007-04-02 19:29:52 -0400 | [diff] [blame] | 222 | static int nfs_page_async_flush(struct nfs_pageio_descriptor *pgio, | 
|  | 223 | struct page *page) | 
| Trond Myklebust | e261f51 | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 224 | { | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 225 | struct inode *inode = page->mapping->host; | 
| Trond Myklebust | e261f51 | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 226 | struct nfs_page *req; | 
| Trond Myklebust | e261f51 | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 227 | int ret; | 
|  | 228 |  | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 229 | spin_lock(&inode->i_lock); | 
| Trond Myklebust | e261f51 | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 230 | for(;;) { | 
|  | 231 | req = nfs_page_find_request_locked(page); | 
|  | 232 | if (req == NULL) { | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 233 | spin_unlock(&inode->i_lock); | 
| Trond Myklebust | 9cccef9 | 2007-07-22 17:09:05 -0400 | [diff] [blame] | 234 | return 0; | 
| Trond Myklebust | e261f51 | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 235 | } | 
| Trond Myklebust | acee478 | 2008-01-22 17:13:07 -0500 | [diff] [blame] | 236 | if (nfs_set_page_tag_locked(req)) | 
| Trond Myklebust | e261f51 | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 237 | break; | 
|  | 238 | /* Note: If we hold the page lock, as is the case in nfs_writepage, | 
| Trond Myklebust | acee478 | 2008-01-22 17:13:07 -0500 | [diff] [blame] | 239 | *	 then the call to nfs_set_page_tag_locked() will always | 
| Trond Myklebust | e261f51 | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 240 | *	 succeed provided that someone hasn't already marked the | 
|  | 241 | *	 request as dirty (in which case we don't care). | 
|  | 242 | */ | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 243 | spin_unlock(&inode->i_lock); | 
| Trond Myklebust | e261f51 | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 244 | ret = nfs_wait_on_request(req); | 
|  | 245 | nfs_release_request(req); | 
|  | 246 | if (ret != 0) | 
|  | 247 | return ret; | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 248 | spin_lock(&inode->i_lock); | 
| Trond Myklebust | e261f51 | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 249 | } | 
| Trond Myklebust | e468bae | 2008-06-13 13:25:22 -0400 | [diff] [blame] | 250 | if (test_bit(PG_CLEAN, &req->wb_flags)) { | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 251 | spin_unlock(&inode->i_lock); | 
| Trond Myklebust | e468bae | 2008-06-13 13:25:22 -0400 | [diff] [blame] | 252 | BUG(); | 
| Trond Myklebust | 612c938 | 2007-04-20 16:12:45 -0400 | [diff] [blame] | 253 | } | 
| Trond Myklebust | c63c7b0 | 2007-04-02 19:29:52 -0400 | [diff] [blame] | 254 | if (nfs_set_page_writeback(page) != 0) { | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 255 | spin_unlock(&inode->i_lock); | 
| Trond Myklebust | c63c7b0 | 2007-04-02 19:29:52 -0400 | [diff] [blame] | 256 | BUG(); | 
|  | 257 | } | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 258 | spin_unlock(&inode->i_lock); | 
| Fred Isaman | f8512ad | 2008-03-19 11:24:39 -0400 | [diff] [blame] | 259 | if (!nfs_pageio_add_request(pgio, req)) { | 
|  | 260 | nfs_redirty_request(req); | 
| Fred Isaman | f8512ad | 2008-03-19 11:24:39 -0400 | [diff] [blame] | 261 | return pgio->pg_error; | 
|  | 262 | } | 
| Trond Myklebust | 9cccef9 | 2007-07-22 17:09:05 -0400 | [diff] [blame] | 263 | return 0; | 
| Trond Myklebust | e261f51 | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 264 | } | 
|  | 265 |  | 
| Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 266 | static int nfs_do_writepage(struct page *page, struct writeback_control *wbc, struct nfs_pageio_descriptor *pgio) | 
|  | 267 | { | 
|  | 268 | struct inode *inode = page->mapping->host; | 
|  | 269 |  | 
|  | 270 | nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGE); | 
|  | 271 | nfs_add_stats(inode, NFSIOS_WRITEPAGES, 1); | 
|  | 272 |  | 
|  | 273 | nfs_pageio_cond_complete(pgio, page->index); | 
|  | 274 | return nfs_page_async_flush(pgio, page); | 
|  | 275 | } | 
|  | 276 |  | 
| Trond Myklebust | e261f51 | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 277 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | * Write an mmapped page to the server. | 
|  | 279 | */ | 
| Trond Myklebust | 4d770cc | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 280 | static int nfs_writepage_locked(struct page *page, struct writeback_control *wbc) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | { | 
| Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 282 | struct nfs_pageio_descriptor pgio; | 
| Trond Myklebust | e261f51 | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 283 | int err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 |  | 
| Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 285 | nfs_pageio_init_write(&pgio, page->mapping->host, wb_priority(wbc)); | 
|  | 286 | err = nfs_do_writepage(page, wbc, &pgio); | 
|  | 287 | nfs_pageio_complete(&pgio); | 
|  | 288 | if (err < 0) | 
|  | 289 | return err; | 
|  | 290 | if (pgio.pg_error < 0) | 
|  | 291 | return pgio.pg_error; | 
|  | 292 | return 0; | 
| Trond Myklebust | 4d770cc | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 293 | } | 
|  | 294 |  | 
|  | 295 | int nfs_writepage(struct page *page, struct writeback_control *wbc) | 
|  | 296 | { | 
| Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 297 | int ret; | 
| Trond Myklebust | 4d770cc | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 298 |  | 
| Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 299 | ret = nfs_writepage_locked(page, wbc); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | unlock_page(page); | 
| Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 301 | return ret; | 
|  | 302 | } | 
|  | 303 |  | 
|  | 304 | static int nfs_writepages_callback(struct page *page, struct writeback_control *wbc, void *data) | 
|  | 305 | { | 
|  | 306 | int ret; | 
|  | 307 |  | 
|  | 308 | ret = nfs_do_writepage(page, wbc, data); | 
|  | 309 | unlock_page(page); | 
|  | 310 | return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | } | 
|  | 312 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | int nfs_writepages(struct address_space *mapping, struct writeback_control *wbc) | 
|  | 314 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | struct inode *inode = mapping->host; | 
| Trond Myklebust | c63c7b0 | 2007-04-02 19:29:52 -0400 | [diff] [blame] | 316 | struct nfs_pageio_descriptor pgio; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | int err; | 
|  | 318 |  | 
| Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 319 | nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGES); | 
|  | 320 |  | 
| Trond Myklebust | c63c7b0 | 2007-04-02 19:29:52 -0400 | [diff] [blame] | 321 | nfs_pageio_init_write(&pgio, inode, wb_priority(wbc)); | 
| Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 322 | err = write_cache_pages(mapping, wbc, nfs_writepages_callback, &pgio); | 
| Trond Myklebust | c63c7b0 | 2007-04-02 19:29:52 -0400 | [diff] [blame] | 323 | nfs_pageio_complete(&pgio); | 
| Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 324 | if (err < 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | return err; | 
| Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 326 | if (pgio.pg_error < 0) | 
| Trond Myklebust | c63c7b0 | 2007-04-02 19:29:52 -0400 | [diff] [blame] | 327 | return pgio.pg_error; | 
|  | 328 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | } | 
|  | 330 |  | 
|  | 331 | /* | 
|  | 332 | * Insert a write request into an inode | 
|  | 333 | */ | 
| Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 334 | static int nfs_inode_add_request(struct inode *inode, struct nfs_page *req) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | { | 
|  | 336 | struct nfs_inode *nfsi = NFS_I(inode); | 
|  | 337 | int error; | 
|  | 338 |  | 
| Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 339 | error = radix_tree_preload(GFP_NOFS); | 
|  | 340 | if (error != 0) | 
|  | 341 | goto out; | 
|  | 342 |  | 
|  | 343 | /* Lock the request! */ | 
|  | 344 | nfs_lock_request_dontget(req); | 
|  | 345 |  | 
|  | 346 | spin_lock(&inode->i_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | error = radix_tree_insert(&nfsi->nfs_page_tree, req->wb_index, req); | 
| Nick Piggin | 2785259 | 2008-02-04 23:48:37 -0800 | [diff] [blame] | 348 | BUG_ON(error); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | if (!nfsi->npages) { | 
|  | 350 | igrab(inode); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | if (nfs_have_delegation(inode, FMODE_WRITE)) | 
|  | 352 | nfsi->change_attr++; | 
|  | 353 | } | 
| Trond Myklebust | deb7d63 | 2006-03-20 13:44:50 -0500 | [diff] [blame] | 354 | SetPagePrivate(req->wb_page); | 
| Trond Myklebust | 277459d | 2006-12-05 00:35:35 -0500 | [diff] [blame] | 355 | set_page_private(req->wb_page, (unsigned long)req); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | nfsi->npages++; | 
| Trond Myklebust | c03b402 | 2007-06-17 13:26:38 -0400 | [diff] [blame] | 357 | kref_get(&req->wb_kref); | 
| Nick Piggin | 2785259 | 2008-02-04 23:48:37 -0800 | [diff] [blame] | 358 | radix_tree_tag_set(&nfsi->nfs_page_tree, req->wb_index, | 
|  | 359 | NFS_PAGE_TAG_LOCKED); | 
| Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 360 | spin_unlock(&inode->i_lock); | 
|  | 361 | radix_tree_preload_end(); | 
|  | 362 | out: | 
|  | 363 | return error; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | } | 
|  | 365 |  | 
|  | 366 | /* | 
| Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 367 | * Remove a write request from an inode | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | */ | 
|  | 369 | static void nfs_inode_remove_request(struct nfs_page *req) | 
|  | 370 | { | 
| Trond Myklebust | 88be9f9 | 2007-06-05 10:42:27 -0400 | [diff] [blame] | 371 | struct inode *inode = req->wb_context->path.dentry->d_inode; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | struct nfs_inode *nfsi = NFS_I(inode); | 
|  | 373 |  | 
|  | 374 | BUG_ON (!NFS_WBACK_BUSY(req)); | 
|  | 375 |  | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 376 | spin_lock(&inode->i_lock); | 
| Trond Myklebust | 277459d | 2006-12-05 00:35:35 -0500 | [diff] [blame] | 377 | set_page_private(req->wb_page, 0); | 
| Trond Myklebust | deb7d63 | 2006-03-20 13:44:50 -0500 | [diff] [blame] | 378 | ClearPagePrivate(req->wb_page); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | radix_tree_delete(&nfsi->nfs_page_tree, req->wb_index); | 
|  | 380 | nfsi->npages--; | 
|  | 381 | if (!nfsi->npages) { | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 382 | spin_unlock(&inode->i_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | iput(inode); | 
|  | 384 | } else | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 385 | spin_unlock(&inode->i_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | nfs_clear_request(req); | 
|  | 387 | nfs_release_request(req); | 
|  | 388 | } | 
|  | 389 |  | 
| Trond Myklebust | 61822ab | 2006-12-05 00:35:42 -0500 | [diff] [blame] | 390 | static void | 
| Fred | 6d884e8 | 2008-03-19 11:24:38 -0400 | [diff] [blame] | 391 | nfs_mark_request_dirty(struct nfs_page *req) | 
| Trond Myklebust | 61822ab | 2006-12-05 00:35:42 -0500 | [diff] [blame] | 392 | { | 
| Trond Myklebust | 61822ab | 2006-12-05 00:35:42 -0500 | [diff] [blame] | 393 | __set_page_dirty_nobuffers(req->wb_page); | 
|  | 394 | } | 
|  | 395 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | #if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4) | 
|  | 397 | /* | 
|  | 398 | * Add a request to the inode's commit list. | 
|  | 399 | */ | 
|  | 400 | static void | 
|  | 401 | nfs_mark_request_commit(struct nfs_page *req) | 
|  | 402 | { | 
| Trond Myklebust | 88be9f9 | 2007-06-05 10:42:27 -0400 | [diff] [blame] | 403 | struct inode *inode = req->wb_context->path.dentry->d_inode; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | struct nfs_inode *nfsi = NFS_I(inode); | 
|  | 405 |  | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 406 | spin_lock(&inode->i_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | nfsi->ncommit++; | 
| Trond Myklebust | e468bae | 2008-06-13 13:25:22 -0400 | [diff] [blame] | 408 | set_bit(PG_CLEAN, &(req)->wb_flags); | 
| Trond Myklebust | 5c36968 | 2007-06-17 15:27:42 -0400 | [diff] [blame] | 409 | radix_tree_tag_set(&nfsi->nfs_page_tree, | 
|  | 410 | req->wb_index, | 
|  | 411 | NFS_PAGE_TAG_COMMIT); | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 412 | spin_unlock(&inode->i_lock); | 
| Christoph Lameter | fd39fc8 | 2006-06-30 01:55:40 -0700 | [diff] [blame] | 413 | inc_zone_page_state(req->wb_page, NR_UNSTABLE_NFS); | 
| Peter Zijlstra | c9e51e4 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 414 | inc_bdi_stat(req->wb_page->mapping->backing_dev_info, BDI_RECLAIMABLE); | 
| Trond Myklebust | a180304 | 2006-12-05 00:45:19 -0500 | [diff] [blame] | 415 | __mark_inode_dirty(inode, I_DIRTY_DATASYNC); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | } | 
| Trond Myklebust | 8e821ca | 2007-04-20 16:12:34 -0400 | [diff] [blame] | 417 |  | 
| Trond Myklebust | e468bae | 2008-06-13 13:25:22 -0400 | [diff] [blame] | 418 | static int | 
|  | 419 | nfs_clear_request_commit(struct nfs_page *req) | 
|  | 420 | { | 
|  | 421 | struct page *page = req->wb_page; | 
|  | 422 |  | 
|  | 423 | if (test_and_clear_bit(PG_CLEAN, &(req)->wb_flags)) { | 
|  | 424 | dec_zone_page_state(page, NR_UNSTABLE_NFS); | 
|  | 425 | dec_bdi_stat(page->mapping->backing_dev_info, BDI_RECLAIMABLE); | 
|  | 426 | return 1; | 
|  | 427 | } | 
|  | 428 | return 0; | 
|  | 429 | } | 
|  | 430 |  | 
| Trond Myklebust | 8e821ca | 2007-04-20 16:12:34 -0400 | [diff] [blame] | 431 | static inline | 
|  | 432 | int nfs_write_need_commit(struct nfs_write_data *data) | 
|  | 433 | { | 
|  | 434 | return data->verf.committed != NFS_FILE_SYNC; | 
|  | 435 | } | 
|  | 436 |  | 
|  | 437 | static inline | 
|  | 438 | int nfs_reschedule_unstable_write(struct nfs_page *req) | 
|  | 439 | { | 
| Trond Myklebust | e468bae | 2008-06-13 13:25:22 -0400 | [diff] [blame] | 440 | if (test_and_clear_bit(PG_NEED_COMMIT, &req->wb_flags)) { | 
| Trond Myklebust | 8e821ca | 2007-04-20 16:12:34 -0400 | [diff] [blame] | 441 | nfs_mark_request_commit(req); | 
|  | 442 | return 1; | 
|  | 443 | } | 
|  | 444 | if (test_and_clear_bit(PG_NEED_RESCHED, &req->wb_flags)) { | 
| Fred | 6d884e8 | 2008-03-19 11:24:38 -0400 | [diff] [blame] | 445 | nfs_mark_request_dirty(req); | 
| Trond Myklebust | 8e821ca | 2007-04-20 16:12:34 -0400 | [diff] [blame] | 446 | return 1; | 
|  | 447 | } | 
|  | 448 | return 0; | 
|  | 449 | } | 
|  | 450 | #else | 
|  | 451 | static inline void | 
|  | 452 | nfs_mark_request_commit(struct nfs_page *req) | 
|  | 453 | { | 
|  | 454 | } | 
|  | 455 |  | 
| Trond Myklebust | e468bae | 2008-06-13 13:25:22 -0400 | [diff] [blame] | 456 | static inline int | 
|  | 457 | nfs_clear_request_commit(struct nfs_page *req) | 
|  | 458 | { | 
|  | 459 | return 0; | 
|  | 460 | } | 
|  | 461 |  | 
| Trond Myklebust | 8e821ca | 2007-04-20 16:12:34 -0400 | [diff] [blame] | 462 | static inline | 
|  | 463 | int nfs_write_need_commit(struct nfs_write_data *data) | 
|  | 464 | { | 
|  | 465 | return 0; | 
|  | 466 | } | 
|  | 467 |  | 
|  | 468 | static inline | 
|  | 469 | int nfs_reschedule_unstable_write(struct nfs_page *req) | 
|  | 470 | { | 
|  | 471 | return 0; | 
|  | 472 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | #endif | 
|  | 474 |  | 
|  | 475 | /* | 
|  | 476 | * Wait for a request to complete. | 
|  | 477 | * | 
| Matthew Wilcox | 150030b | 2007-12-06 16:24:39 -0500 | [diff] [blame] | 478 | * Interruptible by fatal signals only. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | */ | 
| Trond Myklebust | ca52fec | 2007-04-17 17:22:13 -0400 | [diff] [blame] | 480 | static int nfs_wait_on_requests_locked(struct inode *inode, pgoff_t idx_start, unsigned int npages) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | { | 
|  | 482 | struct nfs_inode *nfsi = NFS_I(inode); | 
|  | 483 | struct nfs_page *req; | 
| Trond Myklebust | ca52fec | 2007-04-17 17:22:13 -0400 | [diff] [blame] | 484 | pgoff_t idx_end, next; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | unsigned int		res = 0; | 
|  | 486 | int			error; | 
|  | 487 |  | 
|  | 488 | if (npages == 0) | 
|  | 489 | idx_end = ~0; | 
|  | 490 | else | 
|  | 491 | idx_end = idx_start + npages - 1; | 
|  | 492 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | next = idx_start; | 
| Trond Myklebust | 9fd367f | 2007-06-17 15:10:24 -0400 | [diff] [blame] | 494 | while (radix_tree_gang_lookup_tag(&nfsi->nfs_page_tree, (void **)&req, next, 1, NFS_PAGE_TAG_LOCKED)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | if (req->wb_index > idx_end) | 
|  | 496 | break; | 
|  | 497 |  | 
|  | 498 | next = req->wb_index + 1; | 
| Trond Myklebust | c6a556b | 2005-06-22 17:16:30 +0000 | [diff] [blame] | 499 | BUG_ON(!NFS_WBACK_BUSY(req)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 |  | 
| Trond Myklebust | c03b402 | 2007-06-17 13:26:38 -0400 | [diff] [blame] | 501 | kref_get(&req->wb_kref); | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 502 | spin_unlock(&inode->i_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | error = nfs_wait_on_request(req); | 
|  | 504 | nfs_release_request(req); | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 505 | spin_lock(&inode->i_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | if (error < 0) | 
|  | 507 | return error; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | res++; | 
|  | 509 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | return res; | 
|  | 511 | } | 
|  | 512 |  | 
| Trond Myklebust | 83715ad | 2006-07-05 13:17:12 -0400 | [diff] [blame] | 513 | static void nfs_cancel_commit_list(struct list_head *head) | 
|  | 514 | { | 
|  | 515 | struct nfs_page *req; | 
|  | 516 |  | 
|  | 517 | while(!list_empty(head)) { | 
|  | 518 | req = nfs_list_entry(head->next); | 
|  | 519 | nfs_list_remove_request(req); | 
| Trond Myklebust | e468bae | 2008-06-13 13:25:22 -0400 | [diff] [blame] | 520 | nfs_clear_request_commit(req); | 
| Trond Myklebust | 83715ad | 2006-07-05 13:17:12 -0400 | [diff] [blame] | 521 | nfs_inode_remove_request(req); | 
| Trond Myklebust | b6dff26 | 2006-10-19 23:28:38 -0700 | [diff] [blame] | 522 | nfs_unlock_request(req); | 
| Trond Myklebust | 83715ad | 2006-07-05 13:17:12 -0400 | [diff] [blame] | 523 | } | 
|  | 524 | } | 
|  | 525 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | #if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4) | 
|  | 527 | /* | 
|  | 528 | * nfs_scan_commit - Scan an inode for commit requests | 
|  | 529 | * @inode: NFS inode to scan | 
|  | 530 | * @dst: destination list | 
|  | 531 | * @idx_start: lower bound of page->index to scan. | 
|  | 532 | * @npages: idx_start + npages sets the upper bound to scan. | 
|  | 533 | * | 
|  | 534 | * Moves requests from the inode's 'commit' request list. | 
|  | 535 | * The requests are *not* checked to ensure that they form a contiguous set. | 
|  | 536 | */ | 
|  | 537 | static int | 
| Trond Myklebust | ca52fec | 2007-04-17 17:22:13 -0400 | [diff] [blame] | 538 | nfs_scan_commit(struct inode *inode, struct list_head *dst, pgoff_t idx_start, unsigned int npages) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | { | 
|  | 540 | struct nfs_inode *nfsi = NFS_I(inode); | 
| Trond Myklebust | 3da28eb | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 541 | int res = 0; | 
|  | 542 |  | 
|  | 543 | if (nfsi->ncommit != 0) { | 
| Trond Myklebust | 5c36968 | 2007-06-17 15:27:42 -0400 | [diff] [blame] | 544 | res = nfs_scan_list(nfsi, dst, idx_start, npages, | 
|  | 545 | NFS_PAGE_TAG_COMMIT); | 
| Trond Myklebust | 3da28eb | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 546 | nfsi->ncommit -= res; | 
| Trond Myklebust | 3da28eb | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 547 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | return res; | 
|  | 549 | } | 
| Trond Myklebust | c42de9d | 2006-03-20 13:44:51 -0500 | [diff] [blame] | 550 | #else | 
| Trond Myklebust | ca52fec | 2007-04-17 17:22:13 -0400 | [diff] [blame] | 551 | static inline int nfs_scan_commit(struct inode *inode, struct list_head *dst, pgoff_t idx_start, unsigned int npages) | 
| Trond Myklebust | c42de9d | 2006-03-20 13:44:51 -0500 | [diff] [blame] | 552 | { | 
|  | 553 | return 0; | 
|  | 554 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | #endif | 
|  | 556 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | /* | 
| Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 558 | * Search for an existing write request, and attempt to update | 
|  | 559 | * it to reflect a new dirty region on a given page. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | * | 
| Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 561 | * If the attempt fails, then the existing request is flushed out | 
|  | 562 | * to disk. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | */ | 
| Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 564 | static struct nfs_page *nfs_try_to_update_request(struct inode *inode, | 
|  | 565 | struct page *page, | 
|  | 566 | unsigned int offset, | 
|  | 567 | unsigned int bytes) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | { | 
| Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 569 | struct nfs_page *req; | 
|  | 570 | unsigned int rqend; | 
|  | 571 | unsigned int end; | 
|  | 572 | int error; | 
|  | 573 |  | 
|  | 574 | if (!PagePrivate(page)) | 
|  | 575 | return NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 |  | 
|  | 577 | end = offset + bytes; | 
| Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 578 | spin_lock(&inode->i_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | for (;;) { | 
| Trond Myklebust | 277459d | 2006-12-05 00:35:35 -0500 | [diff] [blame] | 581 | req = nfs_page_find_request_locked(page); | 
| Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 582 | if (req == NULL) | 
|  | 583 | goto out_unlock; | 
| Trond Myklebust | 277459d | 2006-12-05 00:35:35 -0500 | [diff] [blame] | 584 |  | 
| Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 585 | rqend = req->wb_offset + req->wb_bytes; | 
|  | 586 | /* | 
|  | 587 | * Tell the caller to flush out the request if | 
|  | 588 | * the offsets are non-contiguous. | 
|  | 589 | * Note: nfs_flush_incompatible() will already | 
|  | 590 | * have flushed out requests having wrong owners. | 
|  | 591 | */ | 
| Trond Myklebust | e468bae | 2008-06-13 13:25:22 -0400 | [diff] [blame] | 592 | if (offset > rqend | 
| Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 593 | || end < req->wb_offset) | 
|  | 594 | goto out_flushme; | 
|  | 595 |  | 
|  | 596 | if (nfs_set_page_tag_locked(req)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 |  | 
| Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 599 | /* The request is locked, so wait and then retry */ | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 600 | spin_unlock(&inode->i_lock); | 
| Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 601 | error = nfs_wait_on_request(req); | 
|  | 602 | nfs_release_request(req); | 
|  | 603 | if (error != 0) | 
|  | 604 | goto out_err; | 
|  | 605 | spin_lock(&inode->i_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | } | 
|  | 607 |  | 
| Trond Myklebust | e468bae | 2008-06-13 13:25:22 -0400 | [diff] [blame] | 608 | if (nfs_clear_request_commit(req)) | 
|  | 609 | radix_tree_tag_clear(&NFS_I(inode)->nfs_page_tree, | 
|  | 610 | req->wb_index, NFS_PAGE_TAG_COMMIT); | 
|  | 611 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | /* Okay, the request matches. Update the region */ | 
|  | 613 | if (offset < req->wb_offset) { | 
|  | 614 | req->wb_offset = offset; | 
|  | 615 | req->wb_pgbase = offset; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | if (end > rqend) | 
|  | 618 | req->wb_bytes = end - req->wb_offset; | 
| Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 619 | else | 
|  | 620 | req->wb_bytes = rqend - req->wb_offset; | 
|  | 621 | out_unlock: | 
|  | 622 | spin_unlock(&inode->i_lock); | 
|  | 623 | return req; | 
|  | 624 | out_flushme: | 
|  | 625 | spin_unlock(&inode->i_lock); | 
|  | 626 | nfs_release_request(req); | 
|  | 627 | error = nfs_wb_page(inode, page); | 
|  | 628 | out_err: | 
|  | 629 | return ERR_PTR(error); | 
|  | 630 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 |  | 
| Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 632 | /* | 
|  | 633 | * Try to update an existing write request, or create one if there is none. | 
|  | 634 | * | 
|  | 635 | * Note: Should always be called with the Page Lock held to prevent races | 
|  | 636 | * if we have to add a new request. Also assumes that the caller has | 
|  | 637 | * already called nfs_flush_incompatible() if necessary. | 
|  | 638 | */ | 
|  | 639 | static struct nfs_page * nfs_setup_write_request(struct nfs_open_context* ctx, | 
|  | 640 | struct page *page, unsigned int offset, unsigned int bytes) | 
|  | 641 | { | 
|  | 642 | struct inode *inode = page->mapping->host; | 
|  | 643 | struct nfs_page	*req; | 
|  | 644 | int error; | 
|  | 645 |  | 
|  | 646 | req = nfs_try_to_update_request(inode, page, offset, bytes); | 
|  | 647 | if (req != NULL) | 
|  | 648 | goto out; | 
|  | 649 | req = nfs_create_request(ctx, inode, page, offset, bytes); | 
|  | 650 | if (IS_ERR(req)) | 
|  | 651 | goto out; | 
|  | 652 | error = nfs_inode_add_request(inode, req); | 
|  | 653 | if (error != 0) { | 
|  | 654 | nfs_release_request(req); | 
|  | 655 | req = ERR_PTR(error); | 
|  | 656 | } | 
| Trond Myklebust | efc91ed | 2008-06-10 18:31:00 -0400 | [diff] [blame] | 657 | out: | 
| Trond Myklebust | 61e930a | 2007-10-18 17:08:05 -0400 | [diff] [blame] | 658 | return req; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | } | 
|  | 660 |  | 
| Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 661 | static int nfs_writepage_setup(struct nfs_open_context *ctx, struct page *page, | 
|  | 662 | unsigned int offset, unsigned int count) | 
|  | 663 | { | 
|  | 664 | struct nfs_page	*req; | 
|  | 665 |  | 
|  | 666 | req = nfs_setup_write_request(ctx, page, offset, count); | 
|  | 667 | if (IS_ERR(req)) | 
|  | 668 | return PTR_ERR(req); | 
|  | 669 | /* Update file length */ | 
|  | 670 | nfs_grow_file(page, offset, count); | 
|  | 671 | nfs_mark_uptodate(page, req->wb_pgbase, req->wb_bytes); | 
|  | 672 | nfs_clear_page_tag_locked(req); | 
|  | 673 | return 0; | 
|  | 674 | } | 
|  | 675 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | int nfs_flush_incompatible(struct file *file, struct page *page) | 
|  | 677 | { | 
| Trond Myklebust | cd3758e | 2007-08-10 17:44:32 -0400 | [diff] [blame] | 678 | struct nfs_open_context *ctx = nfs_file_open_context(file); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | struct nfs_page	*req; | 
| Trond Myklebust | 1a54533 | 2006-12-05 00:35:40 -0500 | [diff] [blame] | 680 | int do_flush, status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | /* | 
|  | 682 | * Look for a request corresponding to this page. If there | 
|  | 683 | * is one, and it belongs to another file, we flush it out | 
|  | 684 | * before we try to copy anything into the page. Do this | 
|  | 685 | * due to the lack of an ACCESS-type call in NFSv2. | 
|  | 686 | * Also do the same if we find a request from an existing | 
|  | 687 | * dropped page. | 
|  | 688 | */ | 
| Trond Myklebust | 1a54533 | 2006-12-05 00:35:40 -0500 | [diff] [blame] | 689 | do { | 
|  | 690 | req = nfs_page_find_request(page); | 
|  | 691 | if (req == NULL) | 
|  | 692 | return 0; | 
| Trond Myklebust | e468bae | 2008-06-13 13:25:22 -0400 | [diff] [blame] | 693 | do_flush = req->wb_page != page || req->wb_context != ctx; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | nfs_release_request(req); | 
| Trond Myklebust | 1a54533 | 2006-12-05 00:35:40 -0500 | [diff] [blame] | 695 | if (!do_flush) | 
|  | 696 | return 0; | 
|  | 697 | status = nfs_wb_page(page->mapping->host, page); | 
|  | 698 | } while (status == 0); | 
|  | 699 | return status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | } | 
|  | 701 |  | 
|  | 702 | /* | 
| Trond Myklebust | 5d47a35 | 2008-02-07 17:24:07 -0500 | [diff] [blame] | 703 | * If the page cache is marked as unsafe or invalid, then we can't rely on | 
|  | 704 | * the PageUptodate() flag. In this case, we will need to turn off | 
|  | 705 | * write optimisations that depend on the page contents being correct. | 
|  | 706 | */ | 
|  | 707 | static int nfs_write_pageuptodate(struct page *page, struct inode *inode) | 
|  | 708 | { | 
|  | 709 | return PageUptodate(page) && | 
|  | 710 | !(NFS_I(inode)->cache_validity & (NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA)); | 
|  | 711 | } | 
|  | 712 |  | 
|  | 713 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | * Update and possibly write a cached page of an NFS file. | 
|  | 715 | * | 
|  | 716 | * XXX: Keep an eye on generic_file_read to make sure it doesn't do bad | 
|  | 717 | * things with a page scheduled for an RPC call (e.g. invalidate it). | 
|  | 718 | */ | 
|  | 719 | int nfs_updatepage(struct file *file, struct page *page, | 
|  | 720 | unsigned int offset, unsigned int count) | 
|  | 721 | { | 
| Trond Myklebust | cd3758e | 2007-08-10 17:44:32 -0400 | [diff] [blame] | 722 | struct nfs_open_context *ctx = nfs_file_open_context(file); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | struct inode	*inode = page->mapping->host; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | int		status = 0; | 
|  | 725 |  | 
| Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 726 | nfs_inc_stats(inode, NFSIOS_VFSUPDATEPAGE); | 
|  | 727 |  | 
| Chuck Lever | 48186c7 | 2008-06-11 17:56:05 -0400 | [diff] [blame] | 728 | dprintk("NFS:       nfs_updatepage(%s/%s %d@%lld)\n", | 
| Josef "Jeff" Sipek | 01cce93 | 2006-12-08 02:36:40 -0800 | [diff] [blame] | 729 | file->f_path.dentry->d_parent->d_name.name, | 
|  | 730 | file->f_path.dentry->d_name.name, count, | 
| Chuck Lever | 48186c7 | 2008-06-11 17:56:05 -0400 | [diff] [blame] | 731 | (long long)(page_offset(page) + offset)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | /* If we're not using byte range locks, and we know the page | 
| Trond Myklebust | 5d47a35 | 2008-02-07 17:24:07 -0500 | [diff] [blame] | 734 | * is up to date, it may be more efficient to extend the write | 
|  | 735 | * to cover the entire page in order to avoid fragmentation | 
|  | 736 | * inefficiencies. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | */ | 
| Trond Myklebust | 5d47a35 | 2008-02-07 17:24:07 -0500 | [diff] [blame] | 738 | if (nfs_write_pageuptodate(page, inode) && | 
|  | 739 | inode->i_flock == NULL && | 
| Trond Myklebust | 4b5621f | 2008-02-25 15:56:29 -0800 | [diff] [blame] | 740 | !(file->f_flags & O_SYNC)) { | 
| Trond Myklebust | 49a70f2 | 2006-12-05 00:35:38 -0500 | [diff] [blame] | 741 | count = max(count + offset, nfs_page_length(page)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | offset = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | } | 
|  | 744 |  | 
| Trond Myklebust | e21195a | 2006-12-05 00:35:39 -0500 | [diff] [blame] | 745 | status = nfs_writepage_setup(ctx, page, offset, count); | 
| Trond Myklebust | 03fa9e8 | 2008-06-05 16:02:35 -0400 | [diff] [blame] | 746 | if (status < 0) | 
|  | 747 | nfs_set_pageerror(page); | 
|  | 748 | else | 
|  | 749 | __set_page_dirty_nobuffers(page); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 |  | 
| Chuck Lever | 48186c7 | 2008-06-11 17:56:05 -0400 | [diff] [blame] | 751 | dprintk("NFS:       nfs_updatepage returns %d (isize %lld)\n", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | status, (long long)i_size_read(inode)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | return status; | 
|  | 754 | } | 
|  | 755 |  | 
|  | 756 | static void nfs_writepage_release(struct nfs_page *req) | 
|  | 757 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 |  | 
| Trond Myklebust | 7e5f614 | 2008-05-25 12:59:19 -0400 | [diff] [blame] | 759 | if (PageError(req->wb_page) || !nfs_reschedule_unstable_write(req)) { | 
| Trond Myklebust | 8e821ca | 2007-04-20 16:12:34 -0400 | [diff] [blame] | 760 | nfs_end_page_writeback(req->wb_page); | 
|  | 761 | nfs_inode_remove_request(req); | 
|  | 762 | } else | 
|  | 763 | nfs_end_page_writeback(req->wb_page); | 
| Trond Myklebust | 9fd367f | 2007-06-17 15:10:24 -0400 | [diff] [blame] | 764 | nfs_clear_page_tag_locked(req); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | } | 
|  | 766 |  | 
| Trond Myklebust | 3ff7576 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 767 | static int flush_task_priority(int how) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | { | 
|  | 769 | switch (how & (FLUSH_HIGHPRI|FLUSH_LOWPRI)) { | 
|  | 770 | case FLUSH_HIGHPRI: | 
|  | 771 | return RPC_PRIORITY_HIGH; | 
|  | 772 | case FLUSH_LOWPRI: | 
|  | 773 | return RPC_PRIORITY_LOW; | 
|  | 774 | } | 
|  | 775 | return RPC_PRIORITY_NORMAL; | 
|  | 776 | } | 
|  | 777 |  | 
|  | 778 | /* | 
|  | 779 | * Set up the argument/result storage required for the RPC call. | 
|  | 780 | */ | 
| Trond Myklebust | dbae4c7 | 2008-04-14 14:54:53 -0400 | [diff] [blame] | 781 | static int nfs_write_rpcsetup(struct nfs_page *req, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | struct nfs_write_data *data, | 
| Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 783 | const struct rpc_call_ops *call_ops, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | unsigned int count, unsigned int offset, | 
|  | 785 | int how) | 
|  | 786 | { | 
| Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 787 | struct inode *inode = req->wb_context->path.dentry->d_inode; | 
|  | 788 | int flags = (how & FLUSH_SYNC) ? 0 : RPC_TASK_ASYNC; | 
| Trond Myklebust | 3ff7576 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 789 | int priority = flush_task_priority(how); | 
| Trond Myklebust | 0773769 | 2007-10-25 18:42:54 -0400 | [diff] [blame] | 790 | struct rpc_task *task; | 
| Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 791 | struct rpc_message msg = { | 
|  | 792 | .rpc_argp = &data->args, | 
|  | 793 | .rpc_resp = &data->res, | 
|  | 794 | .rpc_cred = req->wb_context->cred, | 
|  | 795 | }; | 
| Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 796 | struct rpc_task_setup task_setup_data = { | 
|  | 797 | .rpc_client = NFS_CLIENT(inode), | 
| Trond Myklebust | 0773769 | 2007-10-25 18:42:54 -0400 | [diff] [blame] | 798 | .task = &data->task, | 
| Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 799 | .rpc_message = &msg, | 
| Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 800 | .callback_ops = call_ops, | 
|  | 801 | .callback_data = data, | 
| Trond Myklebust | 101070c | 2008-02-19 20:04:23 -0500 | [diff] [blame] | 802 | .workqueue = nfsiod_workqueue, | 
| Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 803 | .flags = flags, | 
| Trond Myklebust | 3ff7576 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 804 | .priority = priority, | 
| Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 805 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 |  | 
|  | 807 | /* Set up the RPC argument and reply structs | 
|  | 808 | * NB: take care not to mess about with data->commit et al. */ | 
|  | 809 |  | 
|  | 810 | data->req = req; | 
| Trond Myklebust | 88be9f9 | 2007-06-05 10:42:27 -0400 | [diff] [blame] | 811 | data->inode = inode = req->wb_context->path.dentry->d_inode; | 
| Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 812 | data->cred = msg.rpc_cred; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 |  | 
|  | 814 | data->args.fh     = NFS_FH(inode); | 
|  | 815 | data->args.offset = req_offset(req) + offset; | 
|  | 816 | data->args.pgbase = req->wb_pgbase + offset; | 
|  | 817 | data->args.pages  = data->pagevec; | 
|  | 818 | data->args.count  = count; | 
| Trond Myklebust | 383ba71 | 2008-02-19 20:04:20 -0500 | [diff] [blame] | 819 | data->args.context = get_nfs_open_context(req->wb_context); | 
| Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 820 | data->args.stable  = NFS_UNSTABLE; | 
|  | 821 | if (how & FLUSH_STABLE) { | 
|  | 822 | data->args.stable = NFS_DATA_SYNC; | 
|  | 823 | if (!NFS_I(inode)->ncommit) | 
|  | 824 | data->args.stable = NFS_FILE_SYNC; | 
|  | 825 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 |  | 
|  | 827 | data->res.fattr   = &data->fattr; | 
|  | 828 | data->res.count   = count; | 
|  | 829 | data->res.verf    = &data->verf; | 
| Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 830 | nfs_fattr_init(&data->fattr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 |  | 
| Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 832 | /* Set up the initial task struct.  */ | 
| Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 833 | NFS_PROTO(inode)->write_setup(data, &msg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 |  | 
| Chuck Lever | a3f565b | 2007-01-31 12:14:01 -0500 | [diff] [blame] | 835 | dprintk("NFS: %5u initiated write call " | 
| Chuck Lever | 48186c7 | 2008-06-11 17:56:05 -0400 | [diff] [blame] | 836 | "(req %s/%lld, %u bytes @ offset %llu)\n", | 
| Chuck Lever | 0bbacc4 | 2005-11-01 16:53:32 -0500 | [diff] [blame] | 837 | data->task.tk_pid, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | inode->i_sb->s_id, | 
|  | 839 | (long long)NFS_FILEID(inode), | 
|  | 840 | count, | 
|  | 841 | (unsigned long long)data->args.offset); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 |  | 
| Trond Myklebust | 0773769 | 2007-10-25 18:42:54 -0400 | [diff] [blame] | 843 | task = rpc_run_task(&task_setup_data); | 
| Trond Myklebust | dbae4c7 | 2008-04-14 14:54:53 -0400 | [diff] [blame] | 844 | if (IS_ERR(task)) | 
|  | 845 | return PTR_ERR(task); | 
|  | 846 | rpc_put_task(task); | 
|  | 847 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | } | 
|  | 849 |  | 
| Fred | 6d884e8 | 2008-03-19 11:24:38 -0400 | [diff] [blame] | 850 | /* If a nfs_flush_* function fails, it should remove reqs from @head and | 
|  | 851 | * call this on each, which will prepare them to be retried on next | 
|  | 852 | * writeback using standard nfs. | 
|  | 853 | */ | 
|  | 854 | static void nfs_redirty_request(struct nfs_page *req) | 
|  | 855 | { | 
|  | 856 | nfs_mark_request_dirty(req); | 
|  | 857 | nfs_end_page_writeback(req->wb_page); | 
|  | 858 | nfs_clear_page_tag_locked(req); | 
|  | 859 | } | 
|  | 860 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | /* | 
|  | 862 | * Generate multiple small requests to write out a single | 
|  | 863 | * contiguous dirty area on one page. | 
|  | 864 | */ | 
| Trond Myklebust | 8d5658c | 2007-04-10 09:26:35 -0400 | [diff] [blame] | 865 | static int nfs_flush_multi(struct inode *inode, struct list_head *head, unsigned int npages, size_t count, int how) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | { | 
|  | 867 | struct nfs_page *req = nfs_list_entry(head->next); | 
|  | 868 | struct page *page = req->wb_page; | 
|  | 869 | struct nfs_write_data *data; | 
| Trond Myklebust | e9f7bee | 2006-09-08 09:48:54 -0700 | [diff] [blame] | 870 | size_t wsize = NFS_SERVER(inode)->wsize, nbytes; | 
|  | 871 | unsigned int offset; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | int requests = 0; | 
| Trond Myklebust | dbae4c7 | 2008-04-14 14:54:53 -0400 | [diff] [blame] | 873 | int ret = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | LIST_HEAD(list); | 
|  | 875 |  | 
|  | 876 | nfs_list_remove_request(req); | 
|  | 877 |  | 
| Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 878 | nbytes = count; | 
| Trond Myklebust | e9f7bee | 2006-09-08 09:48:54 -0700 | [diff] [blame] | 879 | do { | 
|  | 880 | size_t len = min(nbytes, wsize); | 
|  | 881 |  | 
| Trond Myklebust | 8d5658c | 2007-04-10 09:26:35 -0400 | [diff] [blame] | 882 | data = nfs_writedata_alloc(1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | if (!data) | 
|  | 884 | goto out_bad; | 
|  | 885 | list_add(&data->pages, &list); | 
|  | 886 | requests++; | 
| Trond Myklebust | e9f7bee | 2006-09-08 09:48:54 -0700 | [diff] [blame] | 887 | nbytes -= len; | 
|  | 888 | } while (nbytes != 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | atomic_set(&req->wb_complete, requests); | 
|  | 890 |  | 
|  | 891 | ClearPageError(page); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | offset = 0; | 
| Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 893 | nbytes = count; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | do { | 
| Trond Myklebust | dbae4c7 | 2008-04-14 14:54:53 -0400 | [diff] [blame] | 895 | int ret2; | 
|  | 896 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 | data = list_entry(list.next, struct nfs_write_data, pages); | 
|  | 898 | list_del_init(&data->pages); | 
|  | 899 |  | 
|  | 900 | data->pagevec[0] = page; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 |  | 
| Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 902 | if (nbytes < wsize) | 
|  | 903 | wsize = nbytes; | 
| Trond Myklebust | dbae4c7 | 2008-04-14 14:54:53 -0400 | [diff] [blame] | 904 | ret2 = nfs_write_rpcsetup(req, data, &nfs_write_partial_ops, | 
| Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 905 | wsize, offset, how); | 
| Trond Myklebust | dbae4c7 | 2008-04-14 14:54:53 -0400 | [diff] [blame] | 906 | if (ret == 0) | 
|  | 907 | ret = ret2; | 
| Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 908 | offset += wsize; | 
|  | 909 | nbytes -= wsize; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | } while (nbytes != 0); | 
|  | 911 |  | 
| Trond Myklebust | dbae4c7 | 2008-04-14 14:54:53 -0400 | [diff] [blame] | 912 | return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 |  | 
|  | 914 | out_bad: | 
|  | 915 | while (!list_empty(&list)) { | 
|  | 916 | data = list_entry(list.next, struct nfs_write_data, pages); | 
|  | 917 | list_del(&data->pages); | 
| Trond Myklebust | 8aca67f | 2006-11-13 16:23:44 -0500 | [diff] [blame] | 918 | nfs_writedata_release(data); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | } | 
| Trond Myklebust | 61822ab | 2006-12-05 00:35:42 -0500 | [diff] [blame] | 920 | nfs_redirty_request(req); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | return -ENOMEM; | 
|  | 922 | } | 
|  | 923 |  | 
|  | 924 | /* | 
|  | 925 | * Create an RPC task for the given write request and kick it. | 
|  | 926 | * The page must have been locked by the caller. | 
|  | 927 | * | 
|  | 928 | * It may happen that the page we're passed is not marked dirty. | 
|  | 929 | * This is the case if nfs_updatepage detects a conflicting request | 
|  | 930 | * that has been written but not committed. | 
|  | 931 | */ | 
| Trond Myklebust | 8d5658c | 2007-04-10 09:26:35 -0400 | [diff] [blame] | 932 | static int nfs_flush_one(struct inode *inode, struct list_head *head, unsigned int npages, size_t count, int how) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | { | 
|  | 934 | struct nfs_page		*req; | 
|  | 935 | struct page		**pages; | 
|  | 936 | struct nfs_write_data	*data; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 |  | 
| Trond Myklebust | 8d5658c | 2007-04-10 09:26:35 -0400 | [diff] [blame] | 938 | data = nfs_writedata_alloc(npages); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | if (!data) | 
|  | 940 | goto out_bad; | 
|  | 941 |  | 
|  | 942 | pages = data->pagevec; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | while (!list_empty(head)) { | 
|  | 944 | req = nfs_list_entry(head->next); | 
|  | 945 | nfs_list_remove_request(req); | 
|  | 946 | nfs_list_add_request(req, &data->pages); | 
|  | 947 | ClearPageError(req->wb_page); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | *pages++ = req->wb_page; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | } | 
|  | 950 | req = nfs_list_entry(data->pages.next); | 
|  | 951 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | /* Set up the argument struct */ | 
| Trond Myklebust | dbae4c7 | 2008-04-14 14:54:53 -0400 | [diff] [blame] | 953 | return nfs_write_rpcsetup(req, data, &nfs_write_full_ops, count, 0, how); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | out_bad: | 
|  | 955 | while (!list_empty(head)) { | 
| Trond Myklebust | 10afec9 | 2007-05-14 17:16:04 -0400 | [diff] [blame] | 956 | req = nfs_list_entry(head->next); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | nfs_list_remove_request(req); | 
| Trond Myklebust | 61822ab | 2006-12-05 00:35:42 -0500 | [diff] [blame] | 958 | nfs_redirty_request(req); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | } | 
|  | 960 | return -ENOMEM; | 
|  | 961 | } | 
|  | 962 |  | 
| Trond Myklebust | c63c7b0 | 2007-04-02 19:29:52 -0400 | [diff] [blame] | 963 | static void nfs_pageio_init_write(struct nfs_pageio_descriptor *pgio, | 
|  | 964 | struct inode *inode, int ioflags) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | { | 
| Chuck Lever | bf4285e | 2007-12-20 14:54:57 -0500 | [diff] [blame] | 966 | size_t wsize = NFS_SERVER(inode)->wsize; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 |  | 
| Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 968 | if (wsize < PAGE_CACHE_SIZE) | 
| Trond Myklebust | c63c7b0 | 2007-04-02 19:29:52 -0400 | [diff] [blame] | 969 | nfs_pageio_init(pgio, inode, nfs_flush_multi, wsize, ioflags); | 
| Trond Myklebust | bcb71bb | 2007-04-02 18:48:28 -0400 | [diff] [blame] | 970 | else | 
| Trond Myklebust | c63c7b0 | 2007-04-02 19:29:52 -0400 | [diff] [blame] | 971 | nfs_pageio_init(pgio, inode, nfs_flush_one, wsize, ioflags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | } | 
|  | 973 |  | 
|  | 974 | /* | 
|  | 975 | * Handle a write reply that flushed part of a page. | 
|  | 976 | */ | 
| Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 977 | static void nfs_writeback_done_partial(struct rpc_task *task, void *calldata) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | { | 
| Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 979 | struct nfs_write_data	*data = calldata; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 |  | 
| Chuck Lever | 48186c7 | 2008-06-11 17:56:05 -0400 | [diff] [blame] | 981 | dprintk("NFS: %5u write(%s/%lld %d@%lld)", | 
|  | 982 | task->tk_pid, | 
|  | 983 | data->req->wb_context->path.dentry->d_inode->i_sb->s_id, | 
|  | 984 | (long long) | 
|  | 985 | NFS_FILEID(data->req->wb_context->path.dentry->d_inode), | 
|  | 986 | data->req->wb_bytes, (long long)req_offset(data->req)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 |  | 
| Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 988 | nfs_writeback_done(task, data); | 
|  | 989 | } | 
| Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 990 |  | 
| Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 991 | static void nfs_writeback_release_partial(void *calldata) | 
|  | 992 | { | 
|  | 993 | struct nfs_write_data	*data = calldata; | 
|  | 994 | struct nfs_page		*req = data->req; | 
|  | 995 | struct page		*page = req->wb_page; | 
|  | 996 | int status = data->task.tk_status; | 
|  | 997 |  | 
|  | 998 | if (status < 0) { | 
| Trond Myklebust | a301b77 | 2007-02-06 11:07:15 -0800 | [diff] [blame] | 999 | nfs_set_pageerror(page); | 
| Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1000 | nfs_context_set_write_error(req->wb_context, status); | 
|  | 1001 | dprintk(", error = %d\n", status); | 
| Trond Myklebust | 8e821ca | 2007-04-20 16:12:34 -0400 | [diff] [blame] | 1002 | goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | } | 
|  | 1004 |  | 
| Trond Myklebust | 8e821ca | 2007-04-20 16:12:34 -0400 | [diff] [blame] | 1005 | if (nfs_write_need_commit(data)) { | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 1006 | struct inode *inode = page->mapping->host; | 
| Trond Myklebust | 8e821ca | 2007-04-20 16:12:34 -0400 | [diff] [blame] | 1007 |  | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 1008 | spin_lock(&inode->i_lock); | 
| Trond Myklebust | 8e821ca | 2007-04-20 16:12:34 -0400 | [diff] [blame] | 1009 | if (test_bit(PG_NEED_RESCHED, &req->wb_flags)) { | 
|  | 1010 | /* Do nothing we need to resend the writes */ | 
|  | 1011 | } else if (!test_and_set_bit(PG_NEED_COMMIT, &req->wb_flags)) { | 
|  | 1012 | memcpy(&req->wb_verf, &data->verf, sizeof(req->wb_verf)); | 
|  | 1013 | dprintk(" defer commit\n"); | 
|  | 1014 | } else if (memcmp(&req->wb_verf, &data->verf, sizeof(req->wb_verf))) { | 
|  | 1015 | set_bit(PG_NEED_RESCHED, &req->wb_flags); | 
|  | 1016 | clear_bit(PG_NEED_COMMIT, &req->wb_flags); | 
|  | 1017 | dprintk(" server reboot detected\n"); | 
|  | 1018 | } | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 1019 | spin_unlock(&inode->i_lock); | 
| Trond Myklebust | 8e821ca | 2007-04-20 16:12:34 -0400 | [diff] [blame] | 1020 | } else | 
|  | 1021 | dprintk(" OK\n"); | 
|  | 1022 |  | 
|  | 1023 | out: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | if (atomic_dec_and_test(&req->wb_complete)) | 
|  | 1025 | nfs_writepage_release(req); | 
| Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1026 | nfs_writedata_release(calldata); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | } | 
|  | 1028 |  | 
| Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1029 | static const struct rpc_call_ops nfs_write_partial_ops = { | 
|  | 1030 | .rpc_call_done = nfs_writeback_done_partial, | 
| Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1031 | .rpc_release = nfs_writeback_release_partial, | 
| Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1032 | }; | 
|  | 1033 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | /* | 
|  | 1035 | * Handle a write reply that flushes a whole page. | 
|  | 1036 | * | 
|  | 1037 | * FIXME: There is an inherent race with invalidate_inode_pages and | 
|  | 1038 | *	  writebacks since the page->count is kept > 1 for as long | 
|  | 1039 | *	  as the page has a write request pending. | 
|  | 1040 | */ | 
| Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1041 | static void nfs_writeback_done_full(struct rpc_task *task, void *calldata) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | { | 
| Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1043 | struct nfs_write_data	*data = calldata; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 |  | 
| Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1045 | nfs_writeback_done(task, data); | 
|  | 1046 | } | 
|  | 1047 |  | 
|  | 1048 | static void nfs_writeback_release_full(void *calldata) | 
|  | 1049 | { | 
|  | 1050 | struct nfs_write_data	*data = calldata; | 
|  | 1051 | int status = data->task.tk_status; | 
| Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1052 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | /* Update attributes as result of writeback. */ | 
|  | 1054 | while (!list_empty(&data->pages)) { | 
| Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1055 | struct nfs_page *req = nfs_list_entry(data->pages.next); | 
|  | 1056 | struct page *page = req->wb_page; | 
|  | 1057 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | nfs_list_remove_request(req); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 |  | 
| Chuck Lever | 48186c7 | 2008-06-11 17:56:05 -0400 | [diff] [blame] | 1060 | dprintk("NFS: %5u write (%s/%lld %d@%lld)", | 
|  | 1061 | data->task.tk_pid, | 
| Trond Myklebust | 88be9f9 | 2007-06-05 10:42:27 -0400 | [diff] [blame] | 1062 | req->wb_context->path.dentry->d_inode->i_sb->s_id, | 
|  | 1063 | (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode), | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | req->wb_bytes, | 
|  | 1065 | (long long)req_offset(req)); | 
|  | 1066 |  | 
| Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1067 | if (status < 0) { | 
| Trond Myklebust | a301b77 | 2007-02-06 11:07:15 -0800 | [diff] [blame] | 1068 | nfs_set_pageerror(page); | 
| Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1069 | nfs_context_set_write_error(req->wb_context, status); | 
|  | 1070 | dprintk(", error = %d\n", status); | 
| Trond Myklebust | 8e821ca | 2007-04-20 16:12:34 -0400 | [diff] [blame] | 1071 | goto remove_request; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 |  | 
| Trond Myklebust | 8e821ca | 2007-04-20 16:12:34 -0400 | [diff] [blame] | 1074 | if (nfs_write_need_commit(data)) { | 
|  | 1075 | memcpy(&req->wb_verf, &data->verf, sizeof(req->wb_verf)); | 
|  | 1076 | nfs_mark_request_commit(req); | 
|  | 1077 | nfs_end_page_writeback(page); | 
|  | 1078 | dprintk(" marked for commit\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | goto next; | 
|  | 1080 | } | 
| Trond Myklebust | 8e821ca | 2007-04-20 16:12:34 -0400 | [diff] [blame] | 1081 | dprintk(" OK\n"); | 
|  | 1082 | remove_request: | 
|  | 1083 | nfs_end_page_writeback(page); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | nfs_inode_remove_request(req); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1085 | next: | 
| Trond Myklebust | 9fd367f | 2007-06-17 15:10:24 -0400 | [diff] [blame] | 1086 | nfs_clear_page_tag_locked(req); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | } | 
| Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1088 | nfs_writedata_release(calldata); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | } | 
|  | 1090 |  | 
| Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1091 | static const struct rpc_call_ops nfs_write_full_ops = { | 
|  | 1092 | .rpc_call_done = nfs_writeback_done_full, | 
| Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1093 | .rpc_release = nfs_writeback_release_full, | 
| Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1094 | }; | 
|  | 1095 |  | 
|  | 1096 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | /* | 
|  | 1098 | * This function is called when the WRITE call is complete. | 
|  | 1099 | */ | 
| Chuck Lever | 462d5b3 | 2006-03-20 13:44:32 -0500 | [diff] [blame] | 1100 | int nfs_writeback_done(struct rpc_task *task, struct nfs_write_data *data) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1101 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | struct nfs_writeargs	*argp = &data->args; | 
|  | 1103 | struct nfs_writeres	*resp = &data->res; | 
| Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1104 | int status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 |  | 
| Chuck Lever | a3f565b | 2007-01-31 12:14:01 -0500 | [diff] [blame] | 1106 | dprintk("NFS: %5u nfs_writeback_done (status %d)\n", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1107 | task->tk_pid, task->tk_status); | 
|  | 1108 |  | 
| Chuck Lever | f551e44 | 2006-09-20 14:33:04 -0400 | [diff] [blame] | 1109 | /* | 
|  | 1110 | * ->write_done will attempt to use post-op attributes to detect | 
|  | 1111 | * conflicting writes by other clients.  A strict interpretation | 
|  | 1112 | * of close-to-open would allow us to continue caching even if | 
|  | 1113 | * another writer had changed the file, but some applications | 
|  | 1114 | * depend on tighter cache coherency when writing. | 
|  | 1115 | */ | 
| Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1116 | status = NFS_PROTO(data->inode)->write_done(task, data); | 
|  | 1117 | if (status != 0) | 
|  | 1118 | return status; | 
| Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 1119 | nfs_add_stats(data->inode, NFSIOS_SERVERWRITTENBYTES, resp->count); | 
|  | 1120 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | #if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4) | 
|  | 1122 | if (resp->verf->committed < argp->stable && task->tk_status >= 0) { | 
|  | 1123 | /* We tried a write call, but the server did not | 
|  | 1124 | * commit data to stable storage even though we | 
|  | 1125 | * requested it. | 
|  | 1126 | * Note: There is a known bug in Tru64 < 5.0 in which | 
|  | 1127 | *	 the server reports NFS_DATA_SYNC, but performs | 
|  | 1128 | *	 NFS_FILE_SYNC. We therefore implement this checking | 
|  | 1129 | *	 as a dprintk() in order to avoid filling syslog. | 
|  | 1130 | */ | 
|  | 1131 | static unsigned long    complain; | 
|  | 1132 |  | 
|  | 1133 | if (time_before(complain, jiffies)) { | 
| Chuck Lever | 48186c7 | 2008-06-11 17:56:05 -0400 | [diff] [blame] | 1134 | dprintk("NFS:       faulty NFS server %s:" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | " (committed = %d) != (stable = %d)\n", | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1136 | NFS_SERVER(data->inode)->nfs_client->cl_hostname, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1137 | resp->verf->committed, argp->stable); | 
|  | 1138 | complain = jiffies + 300 * HZ; | 
|  | 1139 | } | 
|  | 1140 | } | 
|  | 1141 | #endif | 
|  | 1142 | /* Is this a short write? */ | 
|  | 1143 | if (task->tk_status >= 0 && resp->count < argp->count) { | 
|  | 1144 | static unsigned long    complain; | 
|  | 1145 |  | 
| Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 1146 | nfs_inc_stats(data->inode, NFSIOS_SHORTWRITE); | 
|  | 1147 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1148 | /* Has the server at least made some progress? */ | 
|  | 1149 | if (resp->count != 0) { | 
|  | 1150 | /* Was this an NFSv2 write or an NFSv3 stable write? */ | 
|  | 1151 | if (resp->verf->committed != NFS_UNSTABLE) { | 
|  | 1152 | /* Resend from where the server left off */ | 
|  | 1153 | argp->offset += resp->count; | 
|  | 1154 | argp->pgbase += resp->count; | 
|  | 1155 | argp->count -= resp->count; | 
|  | 1156 | } else { | 
|  | 1157 | /* Resend as a stable write in order to avoid | 
|  | 1158 | * headaches in the case of a server crash. | 
|  | 1159 | */ | 
|  | 1160 | argp->stable = NFS_FILE_SYNC; | 
|  | 1161 | } | 
|  | 1162 | rpc_restart_call(task); | 
| Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1163 | return -EAGAIN; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | } | 
|  | 1165 | if (time_before(complain, jiffies)) { | 
|  | 1166 | printk(KERN_WARNING | 
|  | 1167 | "NFS: Server wrote zero bytes, expected %u.\n", | 
|  | 1168 | argp->count); | 
|  | 1169 | complain = jiffies + 300 * HZ; | 
|  | 1170 | } | 
|  | 1171 | /* Can't do anything about it except throw an error. */ | 
|  | 1172 | task->tk_status = -EIO; | 
|  | 1173 | } | 
| Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1174 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | } | 
|  | 1176 |  | 
|  | 1177 |  | 
|  | 1178 | #if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4) | 
| Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1179 | void nfs_commitdata_release(void *data) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | { | 
| Trond Myklebust | 383ba71 | 2008-02-19 20:04:20 -0500 | [diff] [blame] | 1181 | struct nfs_write_data *wdata = data; | 
|  | 1182 |  | 
|  | 1183 | put_nfs_open_context(wdata->args.context); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1184 | nfs_commit_free(wdata); | 
|  | 1185 | } | 
|  | 1186 |  | 
|  | 1187 | /* | 
|  | 1188 | * Set up the argument/result storage required for the RPC call. | 
|  | 1189 | */ | 
| Trond Myklebust | dbae4c7 | 2008-04-14 14:54:53 -0400 | [diff] [blame] | 1190 | static int nfs_commit_rpcsetup(struct list_head *head, | 
| Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1191 | struct nfs_write_data *data, | 
|  | 1192 | int how) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1193 | { | 
| Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 1194 | struct nfs_page *first = nfs_list_entry(head->next); | 
|  | 1195 | struct inode *inode = first->wb_context->path.dentry->d_inode; | 
|  | 1196 | int flags = (how & FLUSH_SYNC) ? 0 : RPC_TASK_ASYNC; | 
| Trond Myklebust | 3ff7576 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 1197 | int priority = flush_task_priority(how); | 
| Trond Myklebust | 0773769 | 2007-10-25 18:42:54 -0400 | [diff] [blame] | 1198 | struct rpc_task *task; | 
| Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 1199 | struct rpc_message msg = { | 
|  | 1200 | .rpc_argp = &data->args, | 
|  | 1201 | .rpc_resp = &data->res, | 
|  | 1202 | .rpc_cred = first->wb_context->cred, | 
|  | 1203 | }; | 
| Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 1204 | struct rpc_task_setup task_setup_data = { | 
| Trond Myklebust | 0773769 | 2007-10-25 18:42:54 -0400 | [diff] [blame] | 1205 | .task = &data->task, | 
| Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 1206 | .rpc_client = NFS_CLIENT(inode), | 
| Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 1207 | .rpc_message = &msg, | 
| Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 1208 | .callback_ops = &nfs_commit_ops, | 
|  | 1209 | .callback_data = data, | 
| Trond Myklebust | 101070c | 2008-02-19 20:04:23 -0500 | [diff] [blame] | 1210 | .workqueue = nfsiod_workqueue, | 
| Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 1211 | .flags = flags, | 
| Trond Myklebust | 3ff7576 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 1212 | .priority = priority, | 
| Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 1213 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1214 |  | 
|  | 1215 | /* Set up the RPC argument and reply structs | 
|  | 1216 | * NB: take care not to mess about with data->commit et al. */ | 
|  | 1217 |  | 
|  | 1218 | list_splice_init(head, &data->pages); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1219 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | data->inode	  = inode; | 
| Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 1221 | data->cred	  = msg.rpc_cred; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 |  | 
|  | 1223 | data->args.fh     = NFS_FH(data->inode); | 
| Trond Myklebust | 3da28eb | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 1224 | /* Note: we always request a commit of the entire inode */ | 
|  | 1225 | data->args.offset = 0; | 
|  | 1226 | data->args.count  = 0; | 
| Trond Myklebust | 383ba71 | 2008-02-19 20:04:20 -0500 | [diff] [blame] | 1227 | data->args.context = get_nfs_open_context(first->wb_context); | 
| Trond Myklebust | 3da28eb | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 1228 | data->res.count   = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1229 | data->res.fattr   = &data->fattr; | 
|  | 1230 | data->res.verf    = &data->verf; | 
| Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 1231 | nfs_fattr_init(&data->fattr); | 
| Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1232 |  | 
|  | 1233 | /* Set up the initial task struct.  */ | 
| Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 1234 | NFS_PROTO(inode)->commit_setup(data, &msg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 |  | 
| Chuck Lever | a3f565b | 2007-01-31 12:14:01 -0500 | [diff] [blame] | 1236 | dprintk("NFS: %5u initiated commit call\n", data->task.tk_pid); | 
| Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 1237 |  | 
| Trond Myklebust | 0773769 | 2007-10-25 18:42:54 -0400 | [diff] [blame] | 1238 | task = rpc_run_task(&task_setup_data); | 
| Trond Myklebust | dbae4c7 | 2008-04-14 14:54:53 -0400 | [diff] [blame] | 1239 | if (IS_ERR(task)) | 
|  | 1240 | return PTR_ERR(task); | 
|  | 1241 | rpc_put_task(task); | 
|  | 1242 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1243 | } | 
|  | 1244 |  | 
|  | 1245 | /* | 
|  | 1246 | * Commit dirty pages | 
|  | 1247 | */ | 
|  | 1248 | static int | 
| Chuck Lever | 40859d7 | 2005-11-30 18:09:02 -0500 | [diff] [blame] | 1249 | nfs_commit_list(struct inode *inode, struct list_head *head, int how) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1250 | { | 
|  | 1251 | struct nfs_write_data	*data; | 
|  | 1252 | struct nfs_page         *req; | 
|  | 1253 |  | 
| Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1254 | data = nfs_commitdata_alloc(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1255 |  | 
|  | 1256 | if (!data) | 
|  | 1257 | goto out_bad; | 
|  | 1258 |  | 
|  | 1259 | /* Set up the argument struct */ | 
| Trond Myklebust | dbae4c7 | 2008-04-14 14:54:53 -0400 | [diff] [blame] | 1260 | return nfs_commit_rpcsetup(head, data, how); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1261 | out_bad: | 
|  | 1262 | while (!list_empty(head)) { | 
|  | 1263 | req = nfs_list_entry(head->next); | 
|  | 1264 | nfs_list_remove_request(req); | 
|  | 1265 | nfs_mark_request_commit(req); | 
| Trond Myklebust | 83715ad | 2006-07-05 13:17:12 -0400 | [diff] [blame] | 1266 | dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS); | 
| Peter Zijlstra | c9e51e4 | 2007-10-16 23:25:47 -0700 | [diff] [blame] | 1267 | dec_bdi_stat(req->wb_page->mapping->backing_dev_info, | 
|  | 1268 | BDI_RECLAIMABLE); | 
| Trond Myklebust | 9fd367f | 2007-06-17 15:10:24 -0400 | [diff] [blame] | 1269 | nfs_clear_page_tag_locked(req); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1270 | } | 
|  | 1271 | return -ENOMEM; | 
|  | 1272 | } | 
|  | 1273 |  | 
|  | 1274 | /* | 
|  | 1275 | * COMMIT call returned | 
|  | 1276 | */ | 
| Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1277 | static void nfs_commit_done(struct rpc_task *task, void *calldata) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | { | 
| Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 1279 | struct nfs_write_data	*data = calldata; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1280 |  | 
| Chuck Lever | a3f565b | 2007-01-31 12:14:01 -0500 | [diff] [blame] | 1281 | dprintk("NFS: %5u nfs_commit_done (status %d)\n", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1282 | task->tk_pid, task->tk_status); | 
|  | 1283 |  | 
| Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1284 | /* Call the NFS version-specific code */ | 
|  | 1285 | if (NFS_PROTO(data->inode)->commit_done(task, data) != 0) | 
|  | 1286 | return; | 
| Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1287 | } | 
|  | 1288 |  | 
|  | 1289 | static void nfs_commit_release(void *calldata) | 
|  | 1290 | { | 
|  | 1291 | struct nfs_write_data	*data = calldata; | 
|  | 1292 | struct nfs_page		*req; | 
|  | 1293 | int status = data->task.tk_status; | 
| Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1294 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1295 | while (!list_empty(&data->pages)) { | 
|  | 1296 | req = nfs_list_entry(data->pages.next); | 
|  | 1297 | nfs_list_remove_request(req); | 
| Trond Myklebust | e468bae | 2008-06-13 13:25:22 -0400 | [diff] [blame] | 1298 | nfs_clear_request_commit(req); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 |  | 
| Chuck Lever | 48186c7 | 2008-06-11 17:56:05 -0400 | [diff] [blame] | 1300 | dprintk("NFS:       commit (%s/%lld %d@%lld)", | 
| Trond Myklebust | 88be9f9 | 2007-06-05 10:42:27 -0400 | [diff] [blame] | 1301 | req->wb_context->path.dentry->d_inode->i_sb->s_id, | 
|  | 1302 | (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode), | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1303 | req->wb_bytes, | 
|  | 1304 | (long long)req_offset(req)); | 
| Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1305 | if (status < 0) { | 
|  | 1306 | nfs_context_set_write_error(req->wb_context, status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | nfs_inode_remove_request(req); | 
| Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1308 | dprintk(", error = %d\n", status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1309 | goto next; | 
|  | 1310 | } | 
|  | 1311 |  | 
|  | 1312 | /* Okay, COMMIT succeeded, apparently. Check the verifier | 
|  | 1313 | * returned by the server against all stored verfs. */ | 
|  | 1314 | if (!memcmp(req->wb_verf.verifier, data->verf.verifier, sizeof(data->verf.verifier))) { | 
|  | 1315 | /* We have a match */ | 
|  | 1316 | nfs_inode_remove_request(req); | 
|  | 1317 | dprintk(" OK\n"); | 
|  | 1318 | goto next; | 
|  | 1319 | } | 
|  | 1320 | /* We have a mismatch. Write the page again */ | 
|  | 1321 | dprintk(" mismatch\n"); | 
| Fred | 6d884e8 | 2008-03-19 11:24:38 -0400 | [diff] [blame] | 1322 | nfs_mark_request_dirty(req); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | next: | 
| Trond Myklebust | 9fd367f | 2007-06-17 15:10:24 -0400 | [diff] [blame] | 1324 | nfs_clear_page_tag_locked(req); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1325 | } | 
| Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1326 | nfs_commitdata_release(calldata); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1327 | } | 
| Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1328 |  | 
|  | 1329 | static const struct rpc_call_ops nfs_commit_ops = { | 
|  | 1330 | .rpc_call_done = nfs_commit_done, | 
|  | 1331 | .rpc_release = nfs_commit_release, | 
|  | 1332 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1333 |  | 
| Trond Myklebust | 3da28eb | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 1334 | int nfs_commit_inode(struct inode *inode, int how) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1335 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1336 | LIST_HEAD(head); | 
| Trond Myklebust | 7d46a49 | 2006-03-20 13:44:50 -0500 | [diff] [blame] | 1337 | int res; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1338 |  | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 1339 | spin_lock(&inode->i_lock); | 
| Trond Myklebust | 3da28eb | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 1340 | res = nfs_scan_commit(inode, &head, 0, 0); | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 1341 | spin_unlock(&inode->i_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1342 | if (res) { | 
| Trond Myklebust | 7d46a49 | 2006-03-20 13:44:50 -0500 | [diff] [blame] | 1343 | int error = nfs_commit_list(inode, &head, how); | 
| Trond Myklebust | 3da28eb | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 1344 | if (error < 0) | 
|  | 1345 | return error; | 
|  | 1346 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1347 | return res; | 
|  | 1348 | } | 
| Trond Myklebust | c63c7b0 | 2007-04-02 19:29:52 -0400 | [diff] [blame] | 1349 | #else | 
|  | 1350 | static inline int nfs_commit_list(struct inode *inode, struct list_head *head, int how) | 
|  | 1351 | { | 
|  | 1352 | return 0; | 
|  | 1353 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | #endif | 
|  | 1355 |  | 
| Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 1356 | long nfs_sync_mapping_wait(struct address_space *mapping, struct writeback_control *wbc, int how) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1357 | { | 
| Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 1358 | struct inode *inode = mapping->host; | 
| Trond Myklebust | ca52fec | 2007-04-17 17:22:13 -0400 | [diff] [blame] | 1359 | pgoff_t idx_start, idx_end; | 
| Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 1360 | unsigned int npages = 0; | 
| Trond Myklebust | c42de9d | 2006-03-20 13:44:51 -0500 | [diff] [blame] | 1361 | LIST_HEAD(head); | 
| Trond Myklebust | 70b9ecb | 2006-01-03 09:55:34 +0100 | [diff] [blame] | 1362 | int nocommit = how & FLUSH_NOCOMMIT; | 
| Trond Myklebust | 3f44254 | 2006-09-17 14:46:44 -0400 | [diff] [blame] | 1363 | long pages, ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1364 |  | 
| Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 1365 | /* FIXME */ | 
|  | 1366 | if (wbc->range_cyclic) | 
|  | 1367 | idx_start = 0; | 
|  | 1368 | else { | 
|  | 1369 | idx_start = wbc->range_start >> PAGE_CACHE_SHIFT; | 
|  | 1370 | idx_end = wbc->range_end >> PAGE_CACHE_SHIFT; | 
|  | 1371 | if (idx_end > idx_start) { | 
| Trond Myklebust | ca52fec | 2007-04-17 17:22:13 -0400 | [diff] [blame] | 1372 | pgoff_t l_npages = 1 + idx_end - idx_start; | 
| Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 1373 | npages = l_npages; | 
|  | 1374 | if (sizeof(npages) != sizeof(l_npages) && | 
| Trond Myklebust | ca52fec | 2007-04-17 17:22:13 -0400 | [diff] [blame] | 1375 | (pgoff_t)npages != l_npages) | 
| Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 1376 | npages = 0; | 
|  | 1377 | } | 
|  | 1378 | } | 
| Trond Myklebust | c42de9d | 2006-03-20 13:44:51 -0500 | [diff] [blame] | 1379 | how &= ~FLUSH_NOCOMMIT; | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 1380 | spin_lock(&inode->i_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1381 | do { | 
| Trond Myklebust | c42de9d | 2006-03-20 13:44:51 -0500 | [diff] [blame] | 1382 | ret = nfs_wait_on_requests_locked(inode, idx_start, npages); | 
|  | 1383 | if (ret != 0) | 
| Trond Myklebust | 70b9ecb | 2006-01-03 09:55:34 +0100 | [diff] [blame] | 1384 | continue; | 
| Trond Myklebust | c42de9d | 2006-03-20 13:44:51 -0500 | [diff] [blame] | 1385 | if (nocommit) | 
|  | 1386 | break; | 
| Trond Myklebust | d2ccddf | 2006-05-31 01:13:38 -0400 | [diff] [blame] | 1387 | pages = nfs_scan_commit(inode, &head, idx_start, npages); | 
| Trond Myklebust | 724c439 | 2007-04-17 17:22:13 -0400 | [diff] [blame] | 1388 | if (pages == 0) | 
| Trond Myklebust | c42de9d | 2006-03-20 13:44:51 -0500 | [diff] [blame] | 1389 | break; | 
| Trond Myklebust | d2ccddf | 2006-05-31 01:13:38 -0400 | [diff] [blame] | 1390 | if (how & FLUSH_INVALIDATE) { | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 1391 | spin_unlock(&inode->i_lock); | 
| Trond Myklebust | 83715ad | 2006-07-05 13:17:12 -0400 | [diff] [blame] | 1392 | nfs_cancel_commit_list(&head); | 
| Trond Myklebust | e8e058e | 2006-11-15 17:31:56 -0500 | [diff] [blame] | 1393 | ret = pages; | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 1394 | spin_lock(&inode->i_lock); | 
| Trond Myklebust | d2ccddf | 2006-05-31 01:13:38 -0400 | [diff] [blame] | 1395 | continue; | 
|  | 1396 | } | 
|  | 1397 | pages += nfs_scan_commit(inode, &head, 0, 0); | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 1398 | spin_unlock(&inode->i_lock); | 
| Trond Myklebust | c42de9d | 2006-03-20 13:44:51 -0500 | [diff] [blame] | 1399 | ret = nfs_commit_list(inode, &head, how); | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 1400 | spin_lock(&inode->i_lock); | 
|  | 1401 |  | 
| Trond Myklebust | c42de9d | 2006-03-20 13:44:51 -0500 | [diff] [blame] | 1402 | } while (ret >= 0); | 
| Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 1403 | spin_unlock(&inode->i_lock); | 
| Trond Myklebust | c42de9d | 2006-03-20 13:44:51 -0500 | [diff] [blame] | 1404 | return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1405 | } | 
|  | 1406 |  | 
| Trond Myklebust | 34901f7 | 2007-07-25 14:09:54 -0400 | [diff] [blame] | 1407 | static int __nfs_write_mapping(struct address_space *mapping, struct writeback_control *wbc, int how) | 
| Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 1408 | { | 
| Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 1409 | int ret; | 
|  | 1410 |  | 
| Trond Myklebust | 34901f7 | 2007-07-25 14:09:54 -0400 | [diff] [blame] | 1411 | ret = nfs_writepages(mapping, wbc); | 
| Trond Myklebust | 61822ab | 2006-12-05 00:35:42 -0500 | [diff] [blame] | 1412 | if (ret < 0) | 
|  | 1413 | goto out; | 
| Trond Myklebust | 34901f7 | 2007-07-25 14:09:54 -0400 | [diff] [blame] | 1414 | ret = nfs_sync_mapping_wait(mapping, wbc, how); | 
| Trond Myklebust | ed90ef5 | 2007-07-20 13:13:28 -0400 | [diff] [blame] | 1415 | if (ret < 0) | 
|  | 1416 | goto out; | 
|  | 1417 | return 0; | 
| Trond Myklebust | 61822ab | 2006-12-05 00:35:42 -0500 | [diff] [blame] | 1418 | out: | 
| Trond Myklebust | e507d9e | 2006-12-05 00:35:42 -0500 | [diff] [blame] | 1419 | __mark_inode_dirty(mapping->host, I_DIRTY_PAGES); | 
| Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 1420 | return ret; | 
|  | 1421 | } | 
|  | 1422 |  | 
| Trond Myklebust | 34901f7 | 2007-07-25 14:09:54 -0400 | [diff] [blame] | 1423 | /* Two pass sync: first using WB_SYNC_NONE, then WB_SYNC_ALL */ | 
|  | 1424 | static int nfs_write_mapping(struct address_space *mapping, int how) | 
|  | 1425 | { | 
|  | 1426 | struct writeback_control wbc = { | 
|  | 1427 | .bdi = mapping->backing_dev_info, | 
|  | 1428 | .sync_mode = WB_SYNC_NONE, | 
|  | 1429 | .nr_to_write = LONG_MAX, | 
| Trond Myklebust | d7fb120 | 2008-10-06 20:08:56 -0400 | [diff] [blame] | 1430 | .range_start = 0, | 
|  | 1431 | .range_end = LLONG_MAX, | 
| Trond Myklebust | 34901f7 | 2007-07-25 14:09:54 -0400 | [diff] [blame] | 1432 | .for_writepages = 1, | 
| Trond Myklebust | 34901f7 | 2007-07-25 14:09:54 -0400 | [diff] [blame] | 1433 | }; | 
|  | 1434 | int ret; | 
|  | 1435 |  | 
|  | 1436 | ret = __nfs_write_mapping(mapping, &wbc, how); | 
|  | 1437 | if (ret < 0) | 
|  | 1438 | return ret; | 
|  | 1439 | wbc.sync_mode = WB_SYNC_ALL; | 
|  | 1440 | return __nfs_write_mapping(mapping, &wbc, how); | 
|  | 1441 | } | 
|  | 1442 |  | 
| Trond Myklebust | ed90ef5 | 2007-07-20 13:13:28 -0400 | [diff] [blame] | 1443 | /* | 
|  | 1444 | * flush the inode to disk. | 
|  | 1445 | */ | 
|  | 1446 | int nfs_wb_all(struct inode *inode) | 
| Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 1447 | { | 
| Trond Myklebust | ed90ef5 | 2007-07-20 13:13:28 -0400 | [diff] [blame] | 1448 | return nfs_write_mapping(inode->i_mapping, 0); | 
|  | 1449 | } | 
| Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 1450 |  | 
| Trond Myklebust | ed90ef5 | 2007-07-20 13:13:28 -0400 | [diff] [blame] | 1451 | int nfs_wb_nocommit(struct inode *inode) | 
|  | 1452 | { | 
|  | 1453 | return nfs_write_mapping(inode->i_mapping, FLUSH_NOCOMMIT); | 
| Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 1454 | } | 
|  | 1455 |  | 
| Trond Myklebust | 1b3b4a1 | 2007-08-28 10:29:36 -0400 | [diff] [blame] | 1456 | int nfs_wb_page_cancel(struct inode *inode, struct page *page) | 
|  | 1457 | { | 
|  | 1458 | struct nfs_page *req; | 
|  | 1459 | loff_t range_start = page_offset(page); | 
|  | 1460 | loff_t range_end = range_start + (loff_t)(PAGE_CACHE_SIZE - 1); | 
|  | 1461 | struct writeback_control wbc = { | 
|  | 1462 | .bdi = page->mapping->backing_dev_info, | 
|  | 1463 | .sync_mode = WB_SYNC_ALL, | 
|  | 1464 | .nr_to_write = LONG_MAX, | 
|  | 1465 | .range_start = range_start, | 
|  | 1466 | .range_end = range_end, | 
|  | 1467 | }; | 
|  | 1468 | int ret = 0; | 
|  | 1469 |  | 
|  | 1470 | BUG_ON(!PageLocked(page)); | 
|  | 1471 | for (;;) { | 
|  | 1472 | req = nfs_page_find_request(page); | 
|  | 1473 | if (req == NULL) | 
|  | 1474 | goto out; | 
| Trond Myklebust | e468bae | 2008-06-13 13:25:22 -0400 | [diff] [blame] | 1475 | if (test_bit(PG_CLEAN, &req->wb_flags)) { | 
| Trond Myklebust | 1b3b4a1 | 2007-08-28 10:29:36 -0400 | [diff] [blame] | 1476 | nfs_release_request(req); | 
|  | 1477 | break; | 
|  | 1478 | } | 
|  | 1479 | if (nfs_lock_request_dontget(req)) { | 
|  | 1480 | nfs_inode_remove_request(req); | 
|  | 1481 | /* | 
|  | 1482 | * In case nfs_inode_remove_request has marked the | 
|  | 1483 | * page as being dirty | 
|  | 1484 | */ | 
|  | 1485 | cancel_dirty_page(page, PAGE_CACHE_SIZE); | 
|  | 1486 | nfs_unlock_request(req); | 
|  | 1487 | break; | 
|  | 1488 | } | 
|  | 1489 | ret = nfs_wait_on_request(req); | 
|  | 1490 | if (ret < 0) | 
|  | 1491 | goto out; | 
|  | 1492 | } | 
|  | 1493 | if (!PagePrivate(page)) | 
|  | 1494 | return 0; | 
|  | 1495 | ret = nfs_sync_mapping_wait(page->mapping, &wbc, FLUSH_INVALIDATE); | 
|  | 1496 | out: | 
|  | 1497 | return ret; | 
|  | 1498 | } | 
|  | 1499 |  | 
| Adrian Bunk | 5334eb1 | 2007-11-21 15:04:31 -0800 | [diff] [blame] | 1500 | static int nfs_wb_page_priority(struct inode *inode, struct page *page, | 
|  | 1501 | int how) | 
| Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 1502 | { | 
|  | 1503 | loff_t range_start = page_offset(page); | 
|  | 1504 | loff_t range_end = range_start + (loff_t)(PAGE_CACHE_SIZE - 1); | 
| Trond Myklebust | 4d770cc | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 1505 | struct writeback_control wbc = { | 
|  | 1506 | .bdi = page->mapping->backing_dev_info, | 
|  | 1507 | .sync_mode = WB_SYNC_ALL, | 
|  | 1508 | .nr_to_write = LONG_MAX, | 
|  | 1509 | .range_start = range_start, | 
|  | 1510 | .range_end = range_end, | 
|  | 1511 | }; | 
|  | 1512 | int ret; | 
| Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 1513 |  | 
| Trond Myklebust | 73e3302 | 2008-04-11 16:03:54 -0400 | [diff] [blame] | 1514 | do { | 
|  | 1515 | if (clear_page_dirty_for_io(page)) { | 
|  | 1516 | ret = nfs_writepage_locked(page, &wbc); | 
|  | 1517 | if (ret < 0) | 
|  | 1518 | goto out_error; | 
|  | 1519 | } else if (!PagePrivate(page)) | 
|  | 1520 | break; | 
|  | 1521 | ret = nfs_sync_mapping_wait(page->mapping, &wbc, how); | 
| Trond Myklebust | 4d770cc | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 1522 | if (ret < 0) | 
| Trond Myklebust | 73e3302 | 2008-04-11 16:03:54 -0400 | [diff] [blame] | 1523 | goto out_error; | 
|  | 1524 | } while (PagePrivate(page)); | 
|  | 1525 | return 0; | 
|  | 1526 | out_error: | 
| Trond Myklebust | e507d9e | 2006-12-05 00:35:42 -0500 | [diff] [blame] | 1527 | __mark_inode_dirty(inode, I_DIRTY_PAGES); | 
| Trond Myklebust | 4d770cc | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 1528 | return ret; | 
| Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 1529 | } | 
|  | 1530 |  | 
|  | 1531 | /* | 
|  | 1532 | * Write back all requests on one page - we do this before reading it. | 
|  | 1533 | */ | 
|  | 1534 | int nfs_wb_page(struct inode *inode, struct page* page) | 
|  | 1535 | { | 
| Trond Myklebust | 4d770cc | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 1536 | return nfs_wb_page_priority(inode, page, FLUSH_STABLE); | 
| Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 1537 | } | 
|  | 1538 |  | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 1539 | int __init nfs_init_writepagecache(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1540 | { | 
|  | 1541 | nfs_wdata_cachep = kmem_cache_create("nfs_write_data", | 
|  | 1542 | sizeof(struct nfs_write_data), | 
|  | 1543 | 0, SLAB_HWCACHE_ALIGN, | 
| Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 1544 | NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1545 | if (nfs_wdata_cachep == NULL) | 
|  | 1546 | return -ENOMEM; | 
|  | 1547 |  | 
| Matthew Dobson | 93d2341 | 2006-03-26 01:37:50 -0800 | [diff] [blame] | 1548 | nfs_wdata_mempool = mempool_create_slab_pool(MIN_POOL_WRITE, | 
|  | 1549 | nfs_wdata_cachep); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1550 | if (nfs_wdata_mempool == NULL) | 
|  | 1551 | return -ENOMEM; | 
|  | 1552 |  | 
| Matthew Dobson | 93d2341 | 2006-03-26 01:37:50 -0800 | [diff] [blame] | 1553 | nfs_commit_mempool = mempool_create_slab_pool(MIN_POOL_COMMIT, | 
|  | 1554 | nfs_wdata_cachep); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1555 | if (nfs_commit_mempool == NULL) | 
|  | 1556 | return -ENOMEM; | 
|  | 1557 |  | 
| Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 1558 | /* | 
|  | 1559 | * NFS congestion size, scale with available memory. | 
|  | 1560 | * | 
|  | 1561 | *  64MB:    8192k | 
|  | 1562 | * 128MB:   11585k | 
|  | 1563 | * 256MB:   16384k | 
|  | 1564 | * 512MB:   23170k | 
|  | 1565 | *   1GB:   32768k | 
|  | 1566 | *   2GB:   46340k | 
|  | 1567 | *   4GB:   65536k | 
|  | 1568 | *   8GB:   92681k | 
|  | 1569 | *  16GB:  131072k | 
|  | 1570 | * | 
|  | 1571 | * This allows larger machines to have larger/more transfers. | 
|  | 1572 | * Limit the default to 256M | 
|  | 1573 | */ | 
|  | 1574 | nfs_congestion_kb = (16*int_sqrt(totalram_pages)) << (PAGE_SHIFT-10); | 
|  | 1575 | if (nfs_congestion_kb > 256*1024) | 
|  | 1576 | nfs_congestion_kb = 256*1024; | 
|  | 1577 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1578 | return 0; | 
|  | 1579 | } | 
|  | 1580 |  | 
| David Brownell | 266bee8 | 2006-06-27 12:59:15 -0700 | [diff] [blame] | 1581 | void nfs_destroy_writepagecache(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1582 | { | 
|  | 1583 | mempool_destroy(nfs_commit_mempool); | 
|  | 1584 | mempool_destroy(nfs_wdata_mempool); | 
| Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 1585 | kmem_cache_destroy(nfs_wdata_cachep); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1586 | } | 
|  | 1587 |  |