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