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