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 | |
Trond Myklebust | f4ce129 | 2013-08-19 18:59:33 -0400 | [diff] [blame] | 34 | #include "nfstrace.h" |
| 35 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #define NFSDBG_FACILITY NFSDBG_PAGECACHE |
| 37 | |
| 38 | #define MIN_POOL_WRITE (32) |
| 39 | #define MIN_POOL_COMMIT (4) |
| 40 | |
| 41 | /* |
| 42 | * Local function declarations |
| 43 | */ |
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_commit_ops; |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 46 | static const struct nfs_pgio_completion_ops nfs_async_write_completion_ops; |
Fred Isaman | f453a54 | 2012-04-20 14:47:54 -0400 | [diff] [blame] | 47 | static const struct nfs_commit_completion_ops nfs_commit_completion_ops; |
Anna Schumaker | 4a0de55 | 2014-05-06 09:12:30 -0400 | [diff] [blame] | 48 | static const struct nfs_rw_ops nfs_rw_write_ops; |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 49 | static void nfs_clear_request_commit(struct nfs_page *req); |
Weston Andros Adamson | 02d1426 | 2014-07-17 20:42:17 -0400 | [diff] [blame] | 50 | static void nfs_init_cinfo_from_inode(struct nfs_commit_info *cinfo, |
| 51 | struct inode *inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 53 | static struct kmem_cache *nfs_wdata_cachep; |
Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 54 | static mempool_t *nfs_wdata_mempool; |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 55 | static struct kmem_cache *nfs_cdata_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | static mempool_t *nfs_commit_mempool; |
| 57 | |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 58 | struct nfs_commit_data *nfs_commitdata_alloc(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | { |
Mel Gorman | 192e501 | 2012-07-31 16:45:16 -0700 | [diff] [blame] | 60 | struct nfs_commit_data *p = mempool_alloc(nfs_commit_mempool, GFP_NOIO); |
Chuck Lever | 40859d7 | 2005-11-30 18:09:02 -0500 | [diff] [blame] | 61 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | if (p) { |
| 63 | memset(p, 0, sizeof(*p)); |
| 64 | INIT_LIST_HEAD(&p->pages); |
| 65 | } |
| 66 | return p; |
| 67 | } |
Fred Isaman | e0c2b38 | 2011-03-23 13:27:53 +0000 | [diff] [blame] | 68 | EXPORT_SYMBOL_GPL(nfs_commitdata_alloc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 70 | void nfs_commit_free(struct nfs_commit_data *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | { |
| 72 | mempool_free(p, nfs_commit_mempool); |
| 73 | } |
Fred Isaman | e0c2b38 | 2011-03-23 13:27:53 +0000 | [diff] [blame] | 74 | EXPORT_SYMBOL_GPL(nfs_commit_free); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
Weston Andros Adamson | 1e7f3a4 | 2014-06-09 11:48:33 -0400 | [diff] [blame] | 76 | static struct nfs_pgio_header *nfs_writehdr_alloc(void) |
Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 77 | { |
Weston Andros Adamson | 1e7f3a4 | 2014-06-09 11:48:33 -0400 | [diff] [blame] | 78 | struct nfs_pgio_header *p = mempool_alloc(nfs_wdata_mempool, GFP_NOIO); |
Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 79 | |
Anna Schumaker | 4a0de55 | 2014-05-06 09:12:30 -0400 | [diff] [blame] | 80 | if (p) |
Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 81 | memset(p, 0, sizeof(*p)); |
Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 82 | return p; |
| 83 | } |
| 84 | |
Weston Andros Adamson | 1e7f3a4 | 2014-06-09 11:48:33 -0400 | [diff] [blame] | 85 | static void nfs_writehdr_free(struct nfs_pgio_header *hdr) |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 86 | { |
Weston Andros Adamson | 1e7f3a4 | 2014-06-09 11:48:33 -0400 | [diff] [blame] | 87 | mempool_free(hdr, nfs_wdata_mempool); |
Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 88 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
Trond Myklebust | 7b159fc | 2007-07-25 14:09:54 -0400 | [diff] [blame] | 90 | static void nfs_context_set_write_error(struct nfs_open_context *ctx, int error) |
| 91 | { |
| 92 | ctx->error = error; |
| 93 | smp_wmb(); |
| 94 | set_bit(NFS_CONTEXT_ERROR_WRITE, &ctx->flags); |
| 95 | } |
| 96 | |
Weston Andros Adamson | 84d3a9a | 2014-07-11 10:20:47 -0400 | [diff] [blame] | 97 | /* |
Weston Andros Adamson | 02d1426 | 2014-07-17 20:42:17 -0400 | [diff] [blame] | 98 | * nfs_page_search_commits_for_head_request_locked |
| 99 | * |
| 100 | * Search through commit lists on @inode for the head request for @page. |
| 101 | * Must be called while holding the inode (which is cinfo) lock. |
| 102 | * |
| 103 | * Returns the head request if found, or NULL if not found. |
| 104 | */ |
| 105 | static struct nfs_page * |
| 106 | nfs_page_search_commits_for_head_request_locked(struct nfs_inode *nfsi, |
| 107 | struct page *page) |
| 108 | { |
| 109 | struct nfs_page *freq, *t; |
| 110 | struct nfs_commit_info cinfo; |
| 111 | struct inode *inode = &nfsi->vfs_inode; |
| 112 | |
| 113 | nfs_init_cinfo_from_inode(&cinfo, inode); |
| 114 | |
| 115 | /* search through pnfs commit lists */ |
| 116 | freq = pnfs_search_commit_reqs(inode, &cinfo, page); |
| 117 | if (freq) |
| 118 | return freq->wb_head; |
| 119 | |
| 120 | /* Linearly search the commit list for the correct request */ |
| 121 | list_for_each_entry_safe(freq, t, &cinfo.mds->list, wb_list) { |
| 122 | if (freq->wb_page == page) |
| 123 | return freq->wb_head; |
| 124 | } |
| 125 | |
| 126 | return NULL; |
| 127 | } |
| 128 | |
| 129 | /* |
Weston Andros Adamson | 84d3a9a | 2014-07-11 10:20:47 -0400 | [diff] [blame] | 130 | * nfs_page_find_head_request_locked - find head request associated with @page |
| 131 | * |
| 132 | * must be called while holding the inode lock. |
| 133 | * |
| 134 | * returns matching head request with reference held, or NULL if not found. |
| 135 | */ |
Mel Gorman | 29418aa | 2012-07-31 16:45:10 -0700 | [diff] [blame] | 136 | static struct nfs_page * |
Weston Andros Adamson | 84d3a9a | 2014-07-11 10:20:47 -0400 | [diff] [blame] | 137 | nfs_page_find_head_request_locked(struct nfs_inode *nfsi, struct page *page) |
Trond Myklebust | 277459d | 2006-12-05 00:35:35 -0500 | [diff] [blame] | 138 | { |
| 139 | struct nfs_page *req = NULL; |
| 140 | |
Mel Gorman | 29418aa | 2012-07-31 16:45:10 -0700 | [diff] [blame] | 141 | if (PagePrivate(page)) |
Trond Myklebust | 277459d | 2006-12-05 00:35:35 -0500 | [diff] [blame] | 142 | req = (struct nfs_page *)page_private(page); |
Weston Andros Adamson | 02d1426 | 2014-07-17 20:42:17 -0400 | [diff] [blame] | 143 | else if (unlikely(PageSwapCache(page))) |
| 144 | req = nfs_page_search_commits_for_head_request_locked(nfsi, |
| 145 | page); |
Mel Gorman | 29418aa | 2012-07-31 16:45:10 -0700 | [diff] [blame] | 146 | |
Weston Andros Adamson | 84d3a9a | 2014-07-11 10:20:47 -0400 | [diff] [blame] | 147 | if (req) { |
| 148 | WARN_ON_ONCE(req->wb_head != req); |
Mel Gorman | 29418aa | 2012-07-31 16:45:10 -0700 | [diff] [blame] | 149 | kref_get(&req->wb_kref); |
Weston Andros Adamson | 84d3a9a | 2014-07-11 10:20:47 -0400 | [diff] [blame] | 150 | } |
Mel Gorman | 29418aa | 2012-07-31 16:45:10 -0700 | [diff] [blame] | 151 | |
Trond Myklebust | 277459d | 2006-12-05 00:35:35 -0500 | [diff] [blame] | 152 | return req; |
| 153 | } |
| 154 | |
Weston Andros Adamson | 84d3a9a | 2014-07-11 10:20:47 -0400 | [diff] [blame] | 155 | /* |
| 156 | * nfs_page_find_head_request - find head request associated with @page |
| 157 | * |
| 158 | * returns matching head request with reference held, or NULL if not found. |
| 159 | */ |
| 160 | static struct nfs_page *nfs_page_find_head_request(struct page *page) |
Trond Myklebust | 277459d | 2006-12-05 00:35:35 -0500 | [diff] [blame] | 161 | { |
Mel Gorman | d56b4dd | 2012-07-31 16:45:06 -0700 | [diff] [blame] | 162 | struct inode *inode = page_file_mapping(page)->host; |
Trond Myklebust | 277459d | 2006-12-05 00:35:35 -0500 | [diff] [blame] | 163 | struct nfs_page *req = NULL; |
Trond Myklebust | 277459d | 2006-12-05 00:35:35 -0500 | [diff] [blame] | 164 | |
Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 165 | spin_lock(&inode->i_lock); |
Weston Andros Adamson | 84d3a9a | 2014-07-11 10:20:47 -0400 | [diff] [blame] | 166 | req = nfs_page_find_head_request_locked(NFS_I(inode), page); |
Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 167 | spin_unlock(&inode->i_lock); |
Trond Myklebust | 277459d | 2006-12-05 00:35:35 -0500 | [diff] [blame] | 168 | return req; |
| 169 | } |
| 170 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | /* Adjust the file length if we're writing beyond the end */ |
| 172 | static void nfs_grow_file(struct page *page, unsigned int offset, unsigned int count) |
| 173 | { |
Mel Gorman | d56b4dd | 2012-07-31 16:45:06 -0700 | [diff] [blame] | 174 | struct inode *inode = page_file_mapping(page)->host; |
Trond Myklebust | a3d0145 | 2008-06-11 12:21:19 -0400 | [diff] [blame] | 175 | loff_t end, i_size; |
| 176 | pgoff_t end_index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | |
Trond Myklebust | a3d0145 | 2008-06-11 12:21:19 -0400 | [diff] [blame] | 178 | spin_lock(&inode->i_lock); |
| 179 | i_size = i_size_read(inode); |
| 180 | end_index = (i_size - 1) >> PAGE_CACHE_SHIFT; |
Mel Gorman | d56b4dd | 2012-07-31 16:45:06 -0700 | [diff] [blame] | 181 | if (i_size > 0 && page_file_index(page) < end_index) |
Trond Myklebust | a3d0145 | 2008-06-11 12:21:19 -0400 | [diff] [blame] | 182 | goto out; |
Mel Gorman | d56b4dd | 2012-07-31 16:45:06 -0700 | [diff] [blame] | 183 | end = page_file_offset(page) + ((loff_t)offset+count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | if (i_size >= end) |
Trond Myklebust | a3d0145 | 2008-06-11 12:21:19 -0400 | [diff] [blame] | 185 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | i_size_write(inode, end); |
Trond Myklebust | a3d0145 | 2008-06-11 12:21:19 -0400 | [diff] [blame] | 187 | nfs_inc_stats(inode, NFSIOS_EXTENDWRITE); |
| 188 | out: |
| 189 | spin_unlock(&inode->i_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | } |
| 191 | |
Trond Myklebust | a301b77 | 2007-02-06 11:07:15 -0800 | [diff] [blame] | 192 | /* A writeback failed: mark the page as bad, and invalidate the page cache */ |
| 193 | static void nfs_set_pageerror(struct page *page) |
| 194 | { |
Mel Gorman | d56b4dd | 2012-07-31 16:45:06 -0700 | [diff] [blame] | 195 | nfs_zap_mapping(page_file_mapping(page)->host, page_file_mapping(page)); |
Trond Myklebust | a301b77 | 2007-02-06 11:07:15 -0800 | [diff] [blame] | 196 | } |
| 197 | |
Weston Andros Adamson | d72ddcb | 2014-05-15 11:56:48 -0400 | [diff] [blame] | 198 | /* |
| 199 | * nfs_page_group_search_locked |
| 200 | * @head - head request of page group |
| 201 | * @page_offset - offset into page |
| 202 | * |
| 203 | * Search page group with head @head to find a request that contains the |
| 204 | * page offset @page_offset. |
| 205 | * |
| 206 | * Returns a pointer to the first matching nfs request, or NULL if no |
| 207 | * match is found. |
| 208 | * |
| 209 | * Must be called with the page group lock held |
| 210 | */ |
| 211 | static struct nfs_page * |
| 212 | nfs_page_group_search_locked(struct nfs_page *head, unsigned int page_offset) |
| 213 | { |
| 214 | struct nfs_page *req; |
| 215 | |
| 216 | WARN_ON_ONCE(head != head->wb_head); |
| 217 | WARN_ON_ONCE(!test_bit(PG_HEADLOCK, &head->wb_head->wb_flags)); |
| 218 | |
| 219 | req = head; |
| 220 | do { |
| 221 | if (page_offset >= req->wb_pgbase && |
| 222 | page_offset < (req->wb_pgbase + req->wb_bytes)) |
| 223 | return req; |
| 224 | |
| 225 | req = req->wb_this_page; |
| 226 | } while (req != head); |
| 227 | |
| 228 | return NULL; |
| 229 | } |
| 230 | |
| 231 | /* |
| 232 | * nfs_page_group_covers_page |
| 233 | * @head - head request of page group |
| 234 | * |
| 235 | * Return true if the page group with head @head covers the whole page, |
| 236 | * returns false otherwise |
| 237 | */ |
| 238 | static bool nfs_page_group_covers_page(struct nfs_page *req) |
| 239 | { |
| 240 | struct nfs_page *tmp; |
| 241 | unsigned int pos = 0; |
| 242 | unsigned int len = nfs_page_length(req->wb_page); |
| 243 | |
Weston Andros Adamson | e702920 | 2014-07-17 20:42:15 -0400 | [diff] [blame] | 244 | nfs_page_group_lock(req, true); |
Weston Andros Adamson | d72ddcb | 2014-05-15 11:56:48 -0400 | [diff] [blame] | 245 | |
| 246 | do { |
| 247 | tmp = nfs_page_group_search_locked(req->wb_head, pos); |
| 248 | if (tmp) { |
| 249 | /* no way this should happen */ |
| 250 | WARN_ON_ONCE(tmp->wb_pgbase != pos); |
| 251 | pos += tmp->wb_bytes - (pos - tmp->wb_pgbase); |
| 252 | } |
| 253 | } while (tmp && pos < len); |
| 254 | |
| 255 | nfs_page_group_unlock(req); |
| 256 | WARN_ON_ONCE(pos > len); |
| 257 | return pos == len; |
| 258 | } |
| 259 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | /* We can set the PG_uptodate flag if we see that a write request |
| 261 | * covers the full page. |
| 262 | */ |
Weston Andros Adamson | d72ddcb | 2014-05-15 11:56:48 -0400 | [diff] [blame] | 263 | static void nfs_mark_uptodate(struct nfs_page *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | { |
Weston Andros Adamson | d72ddcb | 2014-05-15 11:56:48 -0400 | [diff] [blame] | 265 | if (PageUptodate(req->wb_page)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | return; |
Weston Andros Adamson | d72ddcb | 2014-05-15 11:56:48 -0400 | [diff] [blame] | 267 | if (!nfs_page_group_covers_page(req)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | return; |
Weston Andros Adamson | d72ddcb | 2014-05-15 11:56:48 -0400 | [diff] [blame] | 269 | SetPageUptodate(req->wb_page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | } |
| 271 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | static int wb_priority(struct writeback_control *wbc) |
| 273 | { |
| 274 | if (wbc->for_reclaim) |
Trond Myklebust | c63c7b0 | 2007-04-02 19:29:52 -0400 | [diff] [blame] | 275 | return FLUSH_HIGHPRI | FLUSH_STABLE; |
Wu Fengguang | b17621f | 2009-12-03 13:54:25 +0100 | [diff] [blame] | 276 | if (wbc->for_kupdate || wbc->for_background) |
Trond Myklebust | b31268a | 2011-03-21 17:02:00 -0400 | [diff] [blame] | 277 | return FLUSH_LOWPRI | FLUSH_COND_STABLE; |
| 278 | return FLUSH_COND_STABLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | /* |
Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 282 | * NFS congestion control |
| 283 | */ |
| 284 | |
| 285 | int nfs_congestion_kb; |
| 286 | |
| 287 | #define NFS_CONGESTION_ON_THRESH (nfs_congestion_kb >> (PAGE_SHIFT-10)) |
| 288 | #define NFS_CONGESTION_OFF_THRESH \ |
| 289 | (NFS_CONGESTION_ON_THRESH - (NFS_CONGESTION_ON_THRESH >> 2)) |
| 290 | |
Trond Myklebust | deed85e | 2012-10-15 15:02:01 -0400 | [diff] [blame] | 291 | static void nfs_set_page_writeback(struct page *page) |
Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 292 | { |
Trond Myklebust | deed85e | 2012-10-15 15:02:01 -0400 | [diff] [blame] | 293 | struct nfs_server *nfss = NFS_SERVER(page_file_mapping(page)->host); |
Trond Myklebust | 5a6d41b | 2007-04-14 19:10:12 -0400 | [diff] [blame] | 294 | int ret = test_set_page_writeback(page); |
| 295 | |
Trond Myklebust | deed85e | 2012-10-15 15:02:01 -0400 | [diff] [blame] | 296 | WARN_ON_ONCE(ret != 0); |
Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 297 | |
Trond Myklebust | deed85e | 2012-10-15 15:02:01 -0400 | [diff] [blame] | 298 | if (atomic_long_inc_return(&nfss->writeback) > |
| 299 | NFS_CONGESTION_ON_THRESH) { |
| 300 | set_bdi_congested(&nfss->backing_dev_info, |
| 301 | BLK_RW_ASYNC); |
Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 302 | } |
| 303 | } |
| 304 | |
Weston Andros Adamson | 20633f0 | 2014-05-15 11:56:47 -0400 | [diff] [blame] | 305 | static void nfs_end_page_writeback(struct nfs_page *req) |
Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 306 | { |
Weston Andros Adamson | 20633f0 | 2014-05-15 11:56:47 -0400 | [diff] [blame] | 307 | struct inode *inode = page_file_mapping(req->wb_page)->host; |
Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 308 | struct nfs_server *nfss = NFS_SERVER(inode); |
| 309 | |
Weston Andros Adamson | 20633f0 | 2014-05-15 11:56:47 -0400 | [diff] [blame] | 310 | if (!nfs_page_group_sync_on_bit(req, PG_WB_END)) |
| 311 | return; |
| 312 | |
| 313 | end_page_writeback(req->wb_page); |
Peter Zijlstra | c4dc4be | 2007-10-16 23:25:41 -0700 | [diff] [blame] | 314 | if (atomic_long_dec_return(&nfss->writeback) < NFS_CONGESTION_OFF_THRESH) |
Jens Axboe | 8aa7e84 | 2009-07-09 14:52:32 +0200 | [diff] [blame] | 315 | clear_bdi_congested(&nfss->backing_dev_info, BLK_RW_ASYNC); |
Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 316 | } |
| 317 | |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 318 | |
| 319 | /* nfs_page_group_clear_bits |
| 320 | * @req - an nfs request |
| 321 | * clears all page group related bits from @req |
| 322 | */ |
| 323 | static void |
| 324 | nfs_page_group_clear_bits(struct nfs_page *req) |
Trond Myklebust | e261f51 | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 325 | { |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 326 | clear_bit(PG_TEARDOWN, &req->wb_flags); |
| 327 | clear_bit(PG_UNLOCKPAGE, &req->wb_flags); |
| 328 | clear_bit(PG_UPTODATE, &req->wb_flags); |
| 329 | clear_bit(PG_WB_END, &req->wb_flags); |
| 330 | clear_bit(PG_REMOVE, &req->wb_flags); |
| 331 | } |
| 332 | |
| 333 | |
| 334 | /* |
| 335 | * nfs_unroll_locks_and_wait - unlock all newly locked reqs and wait on @req |
| 336 | * |
| 337 | * this is a helper function for nfs_lock_and_join_requests |
| 338 | * |
| 339 | * @inode - inode associated with request page group, must be holding inode lock |
| 340 | * @head - head request of page group, must be holding head lock |
| 341 | * @req - request that couldn't lock and needs to wait on the req bit lock |
| 342 | * @nonblock - if true, don't actually wait |
| 343 | * |
| 344 | * NOTE: this must be called holding page_group bit lock and inode spin lock |
| 345 | * and BOTH will be released before returning. |
| 346 | * |
| 347 | * returns 0 on success, < 0 on error. |
| 348 | */ |
| 349 | static int |
| 350 | nfs_unroll_locks_and_wait(struct inode *inode, struct nfs_page *head, |
| 351 | struct nfs_page *req, bool nonblock) |
| 352 | __releases(&inode->i_lock) |
| 353 | { |
| 354 | struct nfs_page *tmp; |
Trond Myklebust | e261f51 | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 355 | int ret; |
| 356 | |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 357 | /* relinquish all the locks successfully grabbed this run */ |
| 358 | for (tmp = head ; tmp != req; tmp = tmp->wb_this_page) |
| 359 | nfs_unlock_request(tmp); |
| 360 | |
| 361 | WARN_ON_ONCE(test_bit(PG_TEARDOWN, &req->wb_flags)); |
| 362 | |
| 363 | /* grab a ref on the request that will be waited on */ |
| 364 | kref_get(&req->wb_kref); |
| 365 | |
| 366 | nfs_page_group_unlock(head); |
Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 367 | spin_unlock(&inode->i_lock); |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 368 | |
| 369 | /* release ref from nfs_page_find_head_request_locked */ |
| 370 | nfs_release_request(head); |
| 371 | |
| 372 | if (!nonblock) |
| 373 | ret = nfs_wait_on_request(req); |
| 374 | else |
| 375 | ret = -EAGAIN; |
| 376 | nfs_release_request(req); |
| 377 | |
| 378 | return ret; |
| 379 | } |
| 380 | |
| 381 | /* |
| 382 | * nfs_destroy_unlinked_subrequests - destroy recently unlinked subrequests |
| 383 | * |
| 384 | * @destroy_list - request list (using wb_this_page) terminated by @old_head |
| 385 | * @old_head - the old head of the list |
| 386 | * |
| 387 | * All subrequests must be locked and removed from all lists, so at this point |
| 388 | * they are only "active" in this function, and possibly in nfs_wait_on_request |
| 389 | * with a reference held by some other context. |
| 390 | */ |
| 391 | static void |
| 392 | nfs_destroy_unlinked_subrequests(struct nfs_page *destroy_list, |
| 393 | struct nfs_page *old_head) |
| 394 | { |
| 395 | while (destroy_list) { |
| 396 | struct nfs_page *subreq = destroy_list; |
| 397 | |
| 398 | destroy_list = (subreq->wb_this_page == old_head) ? |
| 399 | NULL : subreq->wb_this_page; |
| 400 | |
| 401 | WARN_ON_ONCE(old_head != subreq->wb_head); |
| 402 | |
| 403 | /* make sure old group is not used */ |
| 404 | subreq->wb_head = subreq; |
| 405 | subreq->wb_this_page = subreq; |
| 406 | |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 407 | /* subreq is now totally disconnected from page group or any |
| 408 | * write / commit lists. last chance to wake any waiters */ |
| 409 | nfs_unlock_request(subreq); |
| 410 | |
| 411 | if (!test_bit(PG_TEARDOWN, &subreq->wb_flags)) { |
| 412 | /* release ref on old head request */ |
| 413 | nfs_release_request(old_head); |
| 414 | |
| 415 | nfs_page_group_clear_bits(subreq); |
| 416 | |
| 417 | /* release the PG_INODE_REF reference */ |
| 418 | if (test_and_clear_bit(PG_INODE_REF, &subreq->wb_flags)) |
| 419 | nfs_release_request(subreq); |
| 420 | else |
| 421 | WARN_ON_ONCE(1); |
| 422 | } else { |
| 423 | WARN_ON_ONCE(test_bit(PG_CLEAN, &subreq->wb_flags)); |
| 424 | /* zombie requests have already released the last |
| 425 | * reference and were waiting on the rest of the |
| 426 | * group to complete. Since it's no longer part of a |
| 427 | * group, simply free the request */ |
| 428 | nfs_page_group_clear_bits(subreq); |
| 429 | nfs_free_request(subreq); |
| 430 | } |
| 431 | } |
| 432 | } |
| 433 | |
| 434 | /* |
| 435 | * nfs_lock_and_join_requests - join all subreqs to the head req and return |
| 436 | * a locked reference, cancelling any pending |
| 437 | * operations for this page. |
| 438 | * |
| 439 | * @page - the page used to lookup the "page group" of nfs_page structures |
| 440 | * @nonblock - if true, don't block waiting for request locks |
| 441 | * |
| 442 | * This function joins all sub requests to the head request by first |
| 443 | * locking all requests in the group, cancelling any pending operations |
| 444 | * and finally updating the head request to cover the whole range covered by |
| 445 | * the (former) group. All subrequests are removed from any write or commit |
| 446 | * lists, unlinked from the group and destroyed. |
| 447 | * |
| 448 | * Returns a locked, referenced pointer to the head request - which after |
| 449 | * this call is guaranteed to be the only request associated with the page. |
| 450 | * Returns NULL if no requests are found for @page, or a ERR_PTR if an |
| 451 | * error was encountered. |
| 452 | */ |
| 453 | static struct nfs_page * |
| 454 | nfs_lock_and_join_requests(struct page *page, bool nonblock) |
| 455 | { |
| 456 | struct inode *inode = page_file_mapping(page)->host; |
| 457 | struct nfs_page *head, *subreq; |
| 458 | struct nfs_page *destroy_list = NULL; |
| 459 | unsigned int total_bytes; |
| 460 | int ret; |
| 461 | |
| 462 | try_again: |
| 463 | total_bytes = 0; |
| 464 | |
| 465 | WARN_ON_ONCE(destroy_list); |
| 466 | |
| 467 | spin_lock(&inode->i_lock); |
| 468 | |
| 469 | /* |
| 470 | * A reference is taken only on the head request which acts as a |
| 471 | * reference to the whole page group - the group will not be destroyed |
| 472 | * until the head reference is released. |
| 473 | */ |
| 474 | head = nfs_page_find_head_request_locked(NFS_I(inode), page); |
| 475 | |
| 476 | if (!head) { |
| 477 | spin_unlock(&inode->i_lock); |
| 478 | return NULL; |
| 479 | } |
| 480 | |
| 481 | /* lock each request in the page group */ |
Weston Andros Adamson | e702920 | 2014-07-17 20:42:15 -0400 | [diff] [blame] | 482 | ret = nfs_page_group_lock(head, false); |
| 483 | if (ret < 0) |
| 484 | return ERR_PTR(ret); |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 485 | subreq = head; |
| 486 | do { |
| 487 | /* |
| 488 | * Subrequests are always contiguous, non overlapping |
| 489 | * and in order. If not, it's a programming error. |
| 490 | */ |
| 491 | WARN_ON_ONCE(subreq->wb_offset != |
| 492 | (head->wb_offset + total_bytes)); |
| 493 | |
| 494 | /* keep track of how many bytes this group covers */ |
| 495 | total_bytes += subreq->wb_bytes; |
| 496 | |
| 497 | if (!nfs_lock_request(subreq)) { |
| 498 | /* releases page group bit lock and |
| 499 | * inode spin lock and all references */ |
| 500 | ret = nfs_unroll_locks_and_wait(inode, head, |
| 501 | subreq, nonblock); |
| 502 | |
| 503 | if (ret == 0) |
| 504 | goto try_again; |
| 505 | |
| 506 | return ERR_PTR(ret); |
| 507 | } |
| 508 | |
| 509 | subreq = subreq->wb_this_page; |
| 510 | } while (subreq != head); |
| 511 | |
| 512 | /* Now that all requests are locked, make sure they aren't on any list. |
| 513 | * Commit list removal accounting is done after locks are dropped */ |
| 514 | subreq = head; |
| 515 | do { |
Weston Andros Adamson | 411a99a | 2014-07-17 20:42:19 -0400 | [diff] [blame] | 516 | nfs_clear_request_commit(subreq); |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 517 | subreq = subreq->wb_this_page; |
| 518 | } while (subreq != head); |
| 519 | |
| 520 | /* unlink subrequests from head, destroy them later */ |
| 521 | if (head->wb_this_page != head) { |
| 522 | /* destroy list will be terminated by head */ |
| 523 | destroy_list = head->wb_this_page; |
| 524 | head->wb_this_page = head; |
| 525 | |
| 526 | /* change head request to cover whole range that |
| 527 | * the former page group covered */ |
| 528 | head->wb_bytes = total_bytes; |
| 529 | } |
| 530 | |
| 531 | /* |
| 532 | * prepare head request to be added to new pgio descriptor |
| 533 | */ |
| 534 | nfs_page_group_clear_bits(head); |
| 535 | |
| 536 | /* |
| 537 | * some part of the group was still on the inode list - otherwise |
| 538 | * the group wouldn't be involved in async write. |
| 539 | * grab a reference for the head request, iff it needs one. |
| 540 | */ |
| 541 | if (!test_and_set_bit(PG_INODE_REF, &head->wb_flags)) |
| 542 | kref_get(&head->wb_kref); |
| 543 | |
| 544 | nfs_page_group_unlock(head); |
| 545 | |
Weston Andros Adamson | 411a99a | 2014-07-17 20:42:19 -0400 | [diff] [blame] | 546 | /* drop lock to clean uprequests on destroy list */ |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 547 | spin_unlock(&inode->i_lock); |
| 548 | |
| 549 | nfs_destroy_unlinked_subrequests(destroy_list, head); |
| 550 | |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 551 | /* still holds ref on head from nfs_page_find_head_request_locked |
| 552 | * and still has lock on head from lock loop */ |
| 553 | return head; |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 554 | } |
| 555 | |
| 556 | /* |
| 557 | * Find an associated nfs write request, and prepare to flush it out |
| 558 | * May return an error if the user signalled nfs_wait_on_request(). |
| 559 | */ |
| 560 | static int nfs_page_async_flush(struct nfs_pageio_descriptor *pgio, |
Trond Myklebust | cfb506e | 2010-07-30 15:31:57 -0400 | [diff] [blame] | 561 | struct page *page, bool nonblock) |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 562 | { |
| 563 | struct nfs_page *req; |
| 564 | int ret = 0; |
| 565 | |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 566 | req = nfs_lock_and_join_requests(page, nonblock); |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 567 | if (!req) |
| 568 | goto out; |
| 569 | ret = PTR_ERR(req); |
| 570 | if (IS_ERR(req)) |
| 571 | goto out; |
| 572 | |
Trond Myklebust | deed85e | 2012-10-15 15:02:01 -0400 | [diff] [blame] | 573 | nfs_set_page_writeback(page); |
| 574 | WARN_ON_ONCE(test_bit(PG_CLEAN, &req->wb_flags)); |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 575 | |
Trond Myklebust | deed85e | 2012-10-15 15:02:01 -0400 | [diff] [blame] | 576 | ret = 0; |
Fred Isaman | f8512ad | 2008-03-19 11:24:39 -0400 | [diff] [blame] | 577 | if (!nfs_pageio_add_request(pgio, req)) { |
| 578 | nfs_redirty_request(req); |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 579 | ret = pgio->pg_error; |
Fred Isaman | f8512ad | 2008-03-19 11:24:39 -0400 | [diff] [blame] | 580 | } |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 581 | out: |
| 582 | return ret; |
Trond Myklebust | e261f51 | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 583 | } |
| 584 | |
Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 585 | static int nfs_do_writepage(struct page *page, struct writeback_control *wbc, struct nfs_pageio_descriptor *pgio) |
| 586 | { |
Mel Gorman | d56b4dd | 2012-07-31 16:45:06 -0700 | [diff] [blame] | 587 | struct inode *inode = page_file_mapping(page)->host; |
Trond Myklebust | cfb506e | 2010-07-30 15:31:57 -0400 | [diff] [blame] | 588 | int ret; |
Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 589 | |
| 590 | nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGE); |
| 591 | nfs_add_stats(inode, NFSIOS_WRITEPAGES, 1); |
| 592 | |
Mel Gorman | d56b4dd | 2012-07-31 16:45:06 -0700 | [diff] [blame] | 593 | nfs_pageio_cond_complete(pgio, page_file_index(page)); |
Wu Fengguang | 1b430be | 2010-10-26 14:21:26 -0700 | [diff] [blame] | 594 | 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] | 595 | if (ret == -EAGAIN) { |
| 596 | redirty_page_for_writepage(wbc, page); |
| 597 | ret = 0; |
| 598 | } |
| 599 | return ret; |
Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 600 | } |
| 601 | |
Trond Myklebust | e261f51 | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 602 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | * Write an mmapped page to the server. |
| 604 | */ |
Trond Myklebust | 4d770cc | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 605 | static int nfs_writepage_locked(struct page *page, struct writeback_control *wbc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | { |
Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 607 | struct nfs_pageio_descriptor pgio; |
Trond Myklebust | e261f51 | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 608 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | |
Christoph Hellwig | a20c93e | 2014-04-16 15:07:21 +0200 | [diff] [blame] | 610 | nfs_pageio_init_write(&pgio, page->mapping->host, wb_priority(wbc), |
| 611 | false, &nfs_async_write_completion_ops); |
Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 612 | err = nfs_do_writepage(page, wbc, &pgio); |
| 613 | nfs_pageio_complete(&pgio); |
| 614 | if (err < 0) |
| 615 | return err; |
| 616 | if (pgio.pg_error < 0) |
| 617 | return pgio.pg_error; |
| 618 | return 0; |
Trond Myklebust | 4d770cc | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 619 | } |
| 620 | |
| 621 | int nfs_writepage(struct page *page, struct writeback_control *wbc) |
| 622 | { |
Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 623 | int ret; |
Trond Myklebust | 4d770cc | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 624 | |
Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 625 | ret = nfs_writepage_locked(page, wbc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | unlock_page(page); |
Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 627 | return ret; |
| 628 | } |
| 629 | |
| 630 | static int nfs_writepages_callback(struct page *page, struct writeback_control *wbc, void *data) |
| 631 | { |
| 632 | int ret; |
| 633 | |
| 634 | ret = nfs_do_writepage(page, wbc, data); |
| 635 | unlock_page(page); |
| 636 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | } |
| 638 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | int nfs_writepages(struct address_space *mapping, struct writeback_control *wbc) |
| 640 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | struct inode *inode = mapping->host; |
Trond Myklebust | 72cb77f | 2009-03-11 14:10:30 -0400 | [diff] [blame] | 642 | unsigned long *bitlock = &NFS_I(inode)->flags; |
Trond Myklebust | c63c7b0 | 2007-04-02 19:29:52 -0400 | [diff] [blame] | 643 | struct nfs_pageio_descriptor pgio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | int err; |
| 645 | |
Trond Myklebust | 72cb77f | 2009-03-11 14:10:30 -0400 | [diff] [blame] | 646 | /* Stop dirtying of new pages while we sync */ |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 647 | err = wait_on_bit_lock_action(bitlock, NFS_INO_FLUSHING, |
Trond Myklebust | 72cb77f | 2009-03-11 14:10:30 -0400 | [diff] [blame] | 648 | nfs_wait_bit_killable, TASK_KILLABLE); |
| 649 | if (err) |
| 650 | goto out_err; |
| 651 | |
Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 652 | nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGES); |
| 653 | |
Christoph Hellwig | a20c93e | 2014-04-16 15:07:21 +0200 | [diff] [blame] | 654 | nfs_pageio_init_write(&pgio, inode, wb_priority(wbc), false, |
| 655 | &nfs_async_write_completion_ops); |
Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 656 | err = write_cache_pages(mapping, wbc, nfs_writepages_callback, &pgio); |
Trond Myklebust | c63c7b0 | 2007-04-02 19:29:52 -0400 | [diff] [blame] | 657 | nfs_pageio_complete(&pgio); |
Trond Myklebust | 72cb77f | 2009-03-11 14:10:30 -0400 | [diff] [blame] | 658 | |
| 659 | clear_bit_unlock(NFS_INO_FLUSHING, bitlock); |
Peter Zijlstra | 4e857c5 | 2014-03-17 18:06:10 +0100 | [diff] [blame] | 660 | smp_mb__after_atomic(); |
Trond Myklebust | 72cb77f | 2009-03-11 14:10:30 -0400 | [diff] [blame] | 661 | wake_up_bit(bitlock, NFS_INO_FLUSHING); |
| 662 | |
Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 663 | if (err < 0) |
Trond Myklebust | 72cb77f | 2009-03-11 14:10:30 -0400 | [diff] [blame] | 664 | goto out_err; |
| 665 | err = pgio.pg_error; |
| 666 | if (err < 0) |
| 667 | goto out_err; |
Trond Myklebust | c63c7b0 | 2007-04-02 19:29:52 -0400 | [diff] [blame] | 668 | return 0; |
Trond Myklebust | 72cb77f | 2009-03-11 14:10:30 -0400 | [diff] [blame] | 669 | out_err: |
| 670 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | } |
| 672 | |
| 673 | /* |
| 674 | * Insert a write request into an inode |
| 675 | */ |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 676 | 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] | 677 | { |
| 678 | struct nfs_inode *nfsi = NFS_I(inode); |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 679 | |
Weston Andros Adamson | 2bfc6e5 | 2014-05-15 11:56:45 -0400 | [diff] [blame] | 680 | WARN_ON_ONCE(req->wb_this_page != req); |
| 681 | |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 682 | /* Lock the request! */ |
Trond Myklebust | 7ad84aa | 2012-05-09 13:19:15 -0400 | [diff] [blame] | 683 | nfs_lock_request(req); |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 684 | |
| 685 | spin_lock(&inode->i_lock); |
Bryan Schumaker | 011e2a7 | 2012-06-20 15:53:43 -0400 | [diff] [blame] | 686 | if (!nfsi->npages && NFS_PROTO(inode)->have_delegation(inode, FMODE_WRITE)) |
Trond Myklebust | a9a4a87 | 2011-10-17 16:08:46 -0700 | [diff] [blame] | 687 | inode->i_version++; |
Mel Gorman | 29418aa | 2012-07-31 16:45:10 -0700 | [diff] [blame] | 688 | /* |
| 689 | * Swap-space should not get truncated. Hence no need to plug the race |
| 690 | * with invalidate/truncate. |
| 691 | */ |
| 692 | if (likely(!PageSwapCache(req->wb_page))) { |
| 693 | set_bit(PG_MAPPED, &req->wb_flags); |
| 694 | SetPagePrivate(req->wb_page); |
| 695 | set_page_private(req->wb_page, (unsigned long)req); |
| 696 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | nfsi->npages++; |
Weston Andros Adamson | 17089a2 | 2014-07-11 10:20:45 -0400 | [diff] [blame] | 698 | /* this a head request for a page group - mark it as having an |
| 699 | * extra reference so sub groups can follow suit */ |
| 700 | WARN_ON(test_and_set_bit(PG_INODE_REF, &req->wb_flags)); |
Trond Myklebust | c03b402 | 2007-06-17 13:26:38 -0400 | [diff] [blame] | 701 | kref_get(&req->wb_kref); |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 702 | spin_unlock(&inode->i_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | } |
| 704 | |
| 705 | /* |
Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 706 | * Remove a write request from an inode |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | */ |
| 708 | static void nfs_inode_remove_request(struct nfs_page *req) |
| 709 | { |
Al Viro | 3d4ff43 | 2011-06-22 18:40:12 -0400 | [diff] [blame] | 710 | struct inode *inode = req->wb_context->dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | struct nfs_inode *nfsi = NFS_I(inode); |
Weston Andros Adamson | 20633f0 | 2014-05-15 11:56:47 -0400 | [diff] [blame] | 712 | struct nfs_page *head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | |
Weston Andros Adamson | 20633f0 | 2014-05-15 11:56:47 -0400 | [diff] [blame] | 714 | if (nfs_page_group_sync_on_bit(req, PG_REMOVE)) { |
| 715 | head = req->wb_head; |
| 716 | |
| 717 | spin_lock(&inode->i_lock); |
| 718 | if (likely(!PageSwapCache(head->wb_page))) { |
| 719 | set_page_private(head->wb_page, 0); |
| 720 | ClearPagePrivate(head->wb_page); |
| 721 | clear_bit(PG_MAPPED, &head->wb_flags); |
| 722 | } |
| 723 | nfsi->npages--; |
| 724 | spin_unlock(&inode->i_lock); |
Mel Gorman | 29418aa | 2012-07-31 16:45:10 -0700 | [diff] [blame] | 725 | } |
Weston Andros Adamson | 17089a2 | 2014-07-11 10:20:45 -0400 | [diff] [blame] | 726 | |
| 727 | if (test_and_clear_bit(PG_INODE_REF, &req->wb_flags)) |
| 728 | nfs_release_request(req); |
Weston Andros Adamson | b412ddf | 2014-07-17 20:42:16 -0400 | [diff] [blame] | 729 | else |
| 730 | WARN_ON_ONCE(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | } |
| 732 | |
Trond Myklebust | 61822ab | 2006-12-05 00:35:42 -0500 | [diff] [blame] | 733 | static void |
Fred | 6d884e8 | 2008-03-19 11:24:38 -0400 | [diff] [blame] | 734 | nfs_mark_request_dirty(struct nfs_page *req) |
Trond Myklebust | 61822ab | 2006-12-05 00:35:42 -0500 | [diff] [blame] | 735 | { |
Trond Myklebust | 61822ab | 2006-12-05 00:35:42 -0500 | [diff] [blame] | 736 | __set_page_dirty_nobuffers(req->wb_page); |
| 737 | } |
| 738 | |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 739 | #if IS_ENABLED(CONFIG_NFS_V3) || IS_ENABLED(CONFIG_NFS_V4) |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 740 | /** |
| 741 | * nfs_request_add_commit_list - add request to a commit list |
| 742 | * @req: pointer to a struct nfs_page |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 743 | * @dst: commit list head |
| 744 | * @cinfo: holds list lock and accounting info |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 745 | * |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 746 | * This sets the PG_CLEAN bit, updates the cinfo count of |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 747 | * number of outstanding requests requiring a commit as well as |
| 748 | * the MM page stats. |
| 749 | * |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 750 | * The caller must _not_ hold the cinfo->lock, but must be |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 751 | * holding the nfs_page lock. |
| 752 | */ |
| 753 | void |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 754 | nfs_request_add_commit_list(struct nfs_page *req, struct list_head *dst, |
| 755 | struct nfs_commit_info *cinfo) |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 756 | { |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 757 | set_bit(PG_CLEAN, &(req)->wb_flags); |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 758 | spin_lock(cinfo->lock); |
| 759 | nfs_list_add_request(req, dst); |
| 760 | cinfo->mds->ncommit++; |
| 761 | spin_unlock(cinfo->lock); |
Fred Isaman | 56f9cd6 | 2012-04-20 14:47:56 -0400 | [diff] [blame] | 762 | if (!cinfo->dreq) { |
| 763 | inc_zone_page_state(req->wb_page, NR_UNSTABLE_NFS); |
Mel Gorman | d56b4dd | 2012-07-31 16:45:06 -0700 | [diff] [blame] | 764 | inc_bdi_stat(page_file_mapping(req->wb_page)->backing_dev_info, |
Fred Isaman | 56f9cd6 | 2012-04-20 14:47:56 -0400 | [diff] [blame] | 765 | BDI_RECLAIMABLE); |
| 766 | __mark_inode_dirty(req->wb_context->dentry->d_inode, |
| 767 | I_DIRTY_DATASYNC); |
| 768 | } |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 769 | } |
| 770 | EXPORT_SYMBOL_GPL(nfs_request_add_commit_list); |
| 771 | |
| 772 | /** |
| 773 | * nfs_request_remove_commit_list - Remove request from a commit list |
| 774 | * @req: pointer to a nfs_page |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 775 | * @cinfo: holds list lock and accounting info |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 776 | * |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 777 | * This clears the PG_CLEAN bit, and updates the cinfo's count of |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 778 | * number of outstanding requests requiring a commit |
| 779 | * It does not update the MM page stats. |
| 780 | * |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 781 | * The caller _must_ hold the cinfo->lock and the nfs_page lock. |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 782 | */ |
| 783 | void |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 784 | nfs_request_remove_commit_list(struct nfs_page *req, |
| 785 | struct nfs_commit_info *cinfo) |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 786 | { |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 787 | if (!test_and_clear_bit(PG_CLEAN, &(req)->wb_flags)) |
| 788 | return; |
| 789 | nfs_list_remove_request(req); |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 790 | cinfo->mds->ncommit--; |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 791 | } |
| 792 | EXPORT_SYMBOL_GPL(nfs_request_remove_commit_list); |
| 793 | |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 794 | static void nfs_init_cinfo_from_inode(struct nfs_commit_info *cinfo, |
| 795 | struct inode *inode) |
| 796 | { |
| 797 | cinfo->lock = &inode->i_lock; |
| 798 | cinfo->mds = &NFS_I(inode)->commit_info; |
| 799 | cinfo->ds = pnfs_get_ds_info(inode); |
Fred Isaman | b359f9d | 2012-04-20 14:47:55 -0400 | [diff] [blame] | 800 | cinfo->dreq = NULL; |
Fred Isaman | f453a54 | 2012-04-20 14:47:54 -0400 | [diff] [blame] | 801 | cinfo->completion_ops = &nfs_commit_completion_ops; |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 802 | } |
| 803 | |
| 804 | void nfs_init_cinfo(struct nfs_commit_info *cinfo, |
| 805 | struct inode *inode, |
| 806 | struct nfs_direct_req *dreq) |
| 807 | { |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 808 | if (dreq) |
| 809 | nfs_init_cinfo_from_dreq(cinfo, dreq); |
| 810 | else |
| 811 | nfs_init_cinfo_from_inode(cinfo, inode); |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 812 | } |
| 813 | EXPORT_SYMBOL_GPL(nfs_init_cinfo); |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 814 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | /* |
| 816 | * Add a request to the inode's commit list. |
| 817 | */ |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 818 | void |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 819 | nfs_mark_request_commit(struct nfs_page *req, struct pnfs_layout_segment *lseg, |
| 820 | struct nfs_commit_info *cinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | { |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 822 | if (pnfs_mark_request_commit(req, lseg, cinfo)) |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 823 | return; |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 824 | nfs_request_add_commit_list(req, &cinfo->mds->list, cinfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | } |
Trond Myklebust | 8e821ca | 2007-04-20 16:12:34 -0400 | [diff] [blame] | 826 | |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 827 | static void |
| 828 | nfs_clear_page_commit(struct page *page) |
| 829 | { |
| 830 | dec_zone_page_state(page, NR_UNSTABLE_NFS); |
Mel Gorman | d56b4dd | 2012-07-31 16:45:06 -0700 | [diff] [blame] | 831 | dec_bdi_stat(page_file_mapping(page)->backing_dev_info, BDI_RECLAIMABLE); |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 832 | } |
| 833 | |
Weston Andros Adamson | 411a99a | 2014-07-17 20:42:19 -0400 | [diff] [blame] | 834 | /* Called holding inode (/cinfo) lock */ |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 835 | static void |
Trond Myklebust | e468bae | 2008-06-13 13:25:22 -0400 | [diff] [blame] | 836 | nfs_clear_request_commit(struct nfs_page *req) |
| 837 | { |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 838 | if (test_bit(PG_CLEAN, &req->wb_flags)) { |
| 839 | struct inode *inode = req->wb_context->dentry->d_inode; |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 840 | struct nfs_commit_info cinfo; |
Trond Myklebust | e468bae | 2008-06-13 13:25:22 -0400 | [diff] [blame] | 841 | |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 842 | nfs_init_cinfo_from_inode(&cinfo, inode); |
| 843 | if (!pnfs_clear_request_commit(req, &cinfo)) { |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 844 | nfs_request_remove_commit_list(req, &cinfo); |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 845 | } |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 846 | nfs_clear_page_commit(req->wb_page); |
Trond Myklebust | e468bae | 2008-06-13 13:25:22 -0400 | [diff] [blame] | 847 | } |
Trond Myklebust | e468bae | 2008-06-13 13:25:22 -0400 | [diff] [blame] | 848 | } |
| 849 | |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 850 | int nfs_write_need_commit(struct nfs_pgio_header *hdr) |
Trond Myklebust | 8e821ca | 2007-04-20 16:12:34 -0400 | [diff] [blame] | 851 | { |
Weston Andros Adamson | c65e625 | 2014-06-09 11:48:36 -0400 | [diff] [blame] | 852 | if (hdr->verf.committed == NFS_DATA_SYNC) |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 853 | return hdr->lseg == NULL; |
Weston Andros Adamson | c65e625 | 2014-06-09 11:48:36 -0400 | [diff] [blame] | 854 | return hdr->verf.committed != NFS_FILE_SYNC; |
Trond Myklebust | 8e821ca | 2007-04-20 16:12:34 -0400 | [diff] [blame] | 855 | } |
| 856 | |
Trond Myklebust | 8e821ca | 2007-04-20 16:12:34 -0400 | [diff] [blame] | 857 | #else |
Bryan Schumaker | 68cd6fa | 2012-04-30 14:30:22 -0400 | [diff] [blame] | 858 | static void nfs_init_cinfo_from_inode(struct nfs_commit_info *cinfo, |
| 859 | struct inode *inode) |
| 860 | { |
| 861 | } |
| 862 | |
| 863 | void nfs_init_cinfo(struct nfs_commit_info *cinfo, |
| 864 | struct inode *inode, |
| 865 | struct nfs_direct_req *dreq) |
| 866 | { |
| 867 | } |
| 868 | |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 869 | void |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 870 | nfs_mark_request_commit(struct nfs_page *req, struct pnfs_layout_segment *lseg, |
| 871 | struct nfs_commit_info *cinfo) |
Trond Myklebust | 8e821ca | 2007-04-20 16:12:34 -0400 | [diff] [blame] | 872 | { |
| 873 | } |
| 874 | |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 875 | static void |
Trond Myklebust | e468bae | 2008-06-13 13:25:22 -0400 | [diff] [blame] | 876 | nfs_clear_request_commit(struct nfs_page *req) |
| 877 | { |
Trond Myklebust | e468bae | 2008-06-13 13:25:22 -0400 | [diff] [blame] | 878 | } |
| 879 | |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 880 | int nfs_write_need_commit(struct nfs_pgio_header *hdr) |
Trond Myklebust | 8e821ca | 2007-04-20 16:12:34 -0400 | [diff] [blame] | 881 | { |
| 882 | return 0; |
| 883 | } |
| 884 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | #endif |
| 886 | |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 887 | static void nfs_write_completion(struct nfs_pgio_header *hdr) |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 888 | { |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 889 | struct nfs_commit_info cinfo; |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 890 | unsigned long bytes = 0; |
| 891 | |
| 892 | if (test_bit(NFS_IOHDR_REDO, &hdr->flags)) |
| 893 | goto out; |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 894 | nfs_init_cinfo_from_inode(&cinfo, hdr->inode); |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 895 | while (!list_empty(&hdr->pages)) { |
| 896 | struct nfs_page *req = nfs_list_entry(hdr->pages.next); |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 897 | |
| 898 | bytes += req->wb_bytes; |
| 899 | nfs_list_remove_request(req); |
| 900 | if (test_bit(NFS_IOHDR_ERROR, &hdr->flags) && |
| 901 | (hdr->good_bytes < bytes)) { |
Trond Myklebust | d1182b3 | 2012-05-09 13:37:43 -0400 | [diff] [blame] | 902 | nfs_set_pageerror(req->wb_page); |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 903 | nfs_context_set_write_error(req->wb_context, hdr->error); |
| 904 | goto remove_req; |
| 905 | } |
Weston Andros Adamson | c65e625 | 2014-06-09 11:48:36 -0400 | [diff] [blame] | 906 | if (nfs_write_need_commit(hdr)) { |
Anna Schumaker | f79d06f | 2014-05-06 09:12:28 -0400 | [diff] [blame] | 907 | memcpy(&req->wb_verf, &hdr->verf.verifier, sizeof(req->wb_verf)); |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 908 | nfs_mark_request_commit(req, hdr->lseg, &cinfo); |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 909 | goto next; |
| 910 | } |
| 911 | remove_req: |
| 912 | nfs_inode_remove_request(req); |
| 913 | next: |
Trond Myklebust | 1d1afcb | 2012-05-09 14:04:55 -0400 | [diff] [blame] | 914 | nfs_unlock_request(req); |
Weston Andros Adamson | 20633f0 | 2014-05-15 11:56:47 -0400 | [diff] [blame] | 915 | nfs_end_page_writeback(req); |
Trond Myklebust | 3aff4eb | 2012-05-09 14:30:35 -0400 | [diff] [blame] | 916 | nfs_release_request(req); |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 917 | } |
| 918 | out: |
| 919 | hdr->release(hdr); |
| 920 | } |
| 921 | |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 922 | #if IS_ENABLED(CONFIG_NFS_V3) || IS_ENABLED(CONFIG_NFS_V4) |
Anna Schumaker | ce59515 | 2014-05-06 09:12:34 -0400 | [diff] [blame] | 923 | unsigned long |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 924 | nfs_reqs_to_commit(struct nfs_commit_info *cinfo) |
Trond Myklebust | fb8a1f1 | 2009-03-11 14:10:29 -0400 | [diff] [blame] | 925 | { |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 926 | return cinfo->mds->ncommit; |
Trond Myklebust | fb8a1f1 | 2009-03-11 14:10:29 -0400 | [diff] [blame] | 927 | } |
| 928 | |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 929 | /* cinfo->lock held by caller */ |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 930 | int |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 931 | nfs_scan_commit_list(struct list_head *src, struct list_head *dst, |
| 932 | struct nfs_commit_info *cinfo, int max) |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 933 | { |
| 934 | struct nfs_page *req, *tmp; |
| 935 | int ret = 0; |
| 936 | |
| 937 | list_for_each_entry_safe(req, tmp, src, wb_list) { |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 938 | if (!nfs_lock_request(req)) |
| 939 | continue; |
Trond Myklebust | 7ad84aa | 2012-05-09 13:19:15 -0400 | [diff] [blame] | 940 | kref_get(&req->wb_kref); |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 941 | if (cond_resched_lock(cinfo->lock)) |
Trond Myklebust | 3b3be88 | 2012-03-17 11:59:30 -0400 | [diff] [blame] | 942 | list_safe_reset_next(req, tmp, wb_list); |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 943 | nfs_request_remove_commit_list(req, cinfo); |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 944 | nfs_list_add_request(req, dst); |
| 945 | ret++; |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 946 | if ((ret == max) && !cinfo->dreq) |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 947 | break; |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 948 | } |
| 949 | return ret; |
| 950 | } |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 951 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | /* |
| 953 | * nfs_scan_commit - Scan an inode for commit requests |
| 954 | * @inode: NFS inode to scan |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 955 | * @dst: mds destination list |
| 956 | * @cinfo: mds and ds lists of reqs ready to commit |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | * |
| 958 | * Moves requests from the inode's 'commit' request list. |
| 959 | * The requests are *not* checked to ensure that they form a contiguous set. |
| 960 | */ |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 961 | int |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 962 | nfs_scan_commit(struct inode *inode, struct list_head *dst, |
| 963 | struct nfs_commit_info *cinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | { |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 965 | int ret = 0; |
Trond Myklebust | fb8a1f1 | 2009-03-11 14:10:29 -0400 | [diff] [blame] | 966 | |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 967 | spin_lock(cinfo->lock); |
| 968 | if (cinfo->mds->ncommit > 0) { |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 969 | const int max = INT_MAX; |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 970 | |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 971 | ret = nfs_scan_commit_list(&cinfo->mds->list, dst, |
| 972 | cinfo, max); |
| 973 | ret += pnfs_scan_commit_lists(inode, cinfo, max - ret); |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 974 | } |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 975 | spin_unlock(cinfo->lock); |
Trond Myklebust | ff778d0 | 2010-02-19 16:53:39 -0800 | [diff] [blame] | 976 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | } |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 978 | |
Trond Myklebust | c42de9d | 2006-03-20 13:44:51 -0500 | [diff] [blame] | 979 | #else |
Anna Schumaker | ce59515 | 2014-05-06 09:12:34 -0400 | [diff] [blame] | 980 | unsigned long nfs_reqs_to_commit(struct nfs_commit_info *cinfo) |
Trond Myklebust | fb8a1f1 | 2009-03-11 14:10:29 -0400 | [diff] [blame] | 981 | { |
| 982 | return 0; |
| 983 | } |
| 984 | |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 985 | int nfs_scan_commit(struct inode *inode, struct list_head *dst, |
| 986 | struct nfs_commit_info *cinfo) |
Trond Myklebust | c42de9d | 2006-03-20 13:44:51 -0500 | [diff] [blame] | 987 | { |
| 988 | return 0; |
| 989 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | #endif |
| 991 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 992 | /* |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 993 | * Search for an existing write request, and attempt to update |
| 994 | * it to reflect a new dirty region on a given page. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | * |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 996 | * If the attempt fails, then the existing request is flushed out |
| 997 | * to disk. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | */ |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 999 | static struct nfs_page *nfs_try_to_update_request(struct inode *inode, |
| 1000 | struct page *page, |
| 1001 | unsigned int offset, |
| 1002 | unsigned int bytes) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | { |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1004 | struct nfs_page *req; |
| 1005 | unsigned int rqend; |
| 1006 | unsigned int end; |
| 1007 | int error; |
| 1008 | |
| 1009 | if (!PagePrivate(page)) |
| 1010 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | |
| 1012 | end = offset + bytes; |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1013 | spin_lock(&inode->i_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | for (;;) { |
Weston Andros Adamson | 84d3a9a | 2014-07-11 10:20:47 -0400 | [diff] [blame] | 1016 | req = nfs_page_find_head_request_locked(NFS_I(inode), page); |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1017 | if (req == NULL) |
| 1018 | goto out_unlock; |
Trond Myklebust | 277459d | 2006-12-05 00:35:35 -0500 | [diff] [blame] | 1019 | |
Weston Andros Adamson | 2bfc6e5 | 2014-05-15 11:56:45 -0400 | [diff] [blame] | 1020 | /* should be handled by nfs_flush_incompatible */ |
| 1021 | WARN_ON_ONCE(req->wb_head != req); |
| 1022 | WARN_ON_ONCE(req->wb_this_page != req); |
| 1023 | |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1024 | rqend = req->wb_offset + req->wb_bytes; |
| 1025 | /* |
| 1026 | * Tell the caller to flush out the request if |
| 1027 | * the offsets are non-contiguous. |
| 1028 | * Note: nfs_flush_incompatible() will already |
| 1029 | * have flushed out requests having wrong owners. |
| 1030 | */ |
Trond Myklebust | e468bae | 2008-06-13 13:25:22 -0400 | [diff] [blame] | 1031 | if (offset > rqend |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1032 | || end < req->wb_offset) |
| 1033 | goto out_flushme; |
| 1034 | |
Trond Myklebust | 7ad84aa | 2012-05-09 13:19:15 -0400 | [diff] [blame] | 1035 | if (nfs_lock_request(req)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1038 | /* The request is locked, so wait and then retry */ |
Trond Myklebust | 587142f | 2007-07-02 09:57:54 -0400 | [diff] [blame] | 1039 | spin_unlock(&inode->i_lock); |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1040 | error = nfs_wait_on_request(req); |
| 1041 | nfs_release_request(req); |
| 1042 | if (error != 0) |
| 1043 | goto out_err; |
| 1044 | spin_lock(&inode->i_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | } |
| 1046 | |
| 1047 | /* Okay, the request matches. Update the region */ |
| 1048 | if (offset < req->wb_offset) { |
| 1049 | req->wb_offset = offset; |
| 1050 | req->wb_pgbase = offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1052 | if (end > rqend) |
| 1053 | req->wb_bytes = end - req->wb_offset; |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1054 | else |
| 1055 | req->wb_bytes = rqend - req->wb_offset; |
| 1056 | out_unlock: |
Fred Isaman | ca138f3 | 2012-04-05 15:26:36 -0400 | [diff] [blame] | 1057 | if (req) |
| 1058 | nfs_clear_request_commit(req); |
Weston Andros Adamson | 411a99a | 2014-07-17 20:42:19 -0400 | [diff] [blame] | 1059 | spin_unlock(&inode->i_lock); |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1060 | return req; |
| 1061 | out_flushme: |
| 1062 | spin_unlock(&inode->i_lock); |
| 1063 | nfs_release_request(req); |
| 1064 | error = nfs_wb_page(inode, page); |
| 1065 | out_err: |
| 1066 | return ERR_PTR(error); |
| 1067 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1069 | /* |
| 1070 | * Try to update an existing write request, or create one if there is none. |
| 1071 | * |
| 1072 | * Note: Should always be called with the Page Lock held to prevent races |
| 1073 | * if we have to add a new request. Also assumes that the caller has |
| 1074 | * already called nfs_flush_incompatible() if necessary. |
| 1075 | */ |
| 1076 | static struct nfs_page * nfs_setup_write_request(struct nfs_open_context* ctx, |
| 1077 | struct page *page, unsigned int offset, unsigned int bytes) |
| 1078 | { |
Mel Gorman | d56b4dd | 2012-07-31 16:45:06 -0700 | [diff] [blame] | 1079 | struct inode *inode = page_file_mapping(page)->host; |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1080 | struct nfs_page *req; |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1081 | |
| 1082 | req = nfs_try_to_update_request(inode, page, offset, bytes); |
| 1083 | if (req != NULL) |
| 1084 | goto out; |
Weston Andros Adamson | 2bfc6e5 | 2014-05-15 11:56:45 -0400 | [diff] [blame] | 1085 | req = nfs_create_request(ctx, page, NULL, offset, bytes); |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1086 | if (IS_ERR(req)) |
| 1087 | goto out; |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 1088 | nfs_inode_add_request(inode, req); |
Trond Myklebust | efc91ed | 2008-06-10 18:31:00 -0400 | [diff] [blame] | 1089 | out: |
Trond Myklebust | 61e930a | 2007-10-18 17:08:05 -0400 | [diff] [blame] | 1090 | return req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | } |
| 1092 | |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1093 | static int nfs_writepage_setup(struct nfs_open_context *ctx, struct page *page, |
| 1094 | unsigned int offset, unsigned int count) |
| 1095 | { |
| 1096 | struct nfs_page *req; |
| 1097 | |
| 1098 | req = nfs_setup_write_request(ctx, page, offset, count); |
| 1099 | if (IS_ERR(req)) |
| 1100 | return PTR_ERR(req); |
| 1101 | /* Update file length */ |
| 1102 | nfs_grow_file(page, offset, count); |
Weston Andros Adamson | d72ddcb | 2014-05-15 11:56:48 -0400 | [diff] [blame] | 1103 | nfs_mark_uptodate(req); |
Trond Myklebust | a6305dd | 2010-04-09 19:07:08 -0400 | [diff] [blame] | 1104 | nfs_mark_request_dirty(req); |
Trond Myklebust | 1d1afcb | 2012-05-09 14:04:55 -0400 | [diff] [blame] | 1105 | nfs_unlock_and_release_request(req); |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1106 | return 0; |
| 1107 | } |
| 1108 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1109 | int nfs_flush_incompatible(struct file *file, struct page *page) |
| 1110 | { |
Trond Myklebust | cd3758e | 2007-08-10 17:44:32 -0400 | [diff] [blame] | 1111 | struct nfs_open_context *ctx = nfs_file_open_context(file); |
Trond Myklebust | 2a36915 | 2012-08-13 18:54:45 -0400 | [diff] [blame] | 1112 | struct nfs_lock_context *l_ctx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | struct nfs_page *req; |
Trond Myklebust | 1a54533 | 2006-12-05 00:35:40 -0500 | [diff] [blame] | 1114 | int do_flush, status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | /* |
| 1116 | * Look for a request corresponding to this page. If there |
| 1117 | * is one, and it belongs to another file, we flush it out |
| 1118 | * before we try to copy anything into the page. Do this |
| 1119 | * due to the lack of an ACCESS-type call in NFSv2. |
| 1120 | * Also do the same if we find a request from an existing |
| 1121 | * dropped page. |
| 1122 | */ |
Trond Myklebust | 1a54533 | 2006-12-05 00:35:40 -0500 | [diff] [blame] | 1123 | do { |
Weston Andros Adamson | 84d3a9a | 2014-07-11 10:20:47 -0400 | [diff] [blame] | 1124 | req = nfs_page_find_head_request(page); |
Trond Myklebust | 1a54533 | 2006-12-05 00:35:40 -0500 | [diff] [blame] | 1125 | if (req == NULL) |
| 1126 | return 0; |
Trond Myklebust | 2a36915 | 2012-08-13 18:54:45 -0400 | [diff] [blame] | 1127 | l_ctx = req->wb_lock_context; |
| 1128 | do_flush = req->wb_page != page || req->wb_context != ctx; |
Weston Andros Adamson | 2bfc6e5 | 2014-05-15 11:56:45 -0400 | [diff] [blame] | 1129 | /* for now, flush if more than 1 request in page_group */ |
| 1130 | do_flush |= req->wb_this_page != req; |
Trond Myklebust | 0f1d260 | 2013-09-05 15:52:51 -0400 | [diff] [blame] | 1131 | if (l_ctx && ctx->dentry->d_inode->i_flock != NULL) { |
Trond Myklebust | 2a36915 | 2012-08-13 18:54:45 -0400 | [diff] [blame] | 1132 | do_flush |= l_ctx->lockowner.l_owner != current->files |
| 1133 | || l_ctx->lockowner.l_pid != current->tgid; |
| 1134 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | nfs_release_request(req); |
Trond Myklebust | 1a54533 | 2006-12-05 00:35:40 -0500 | [diff] [blame] | 1136 | if (!do_flush) |
| 1137 | return 0; |
Mel Gorman | d56b4dd | 2012-07-31 16:45:06 -0700 | [diff] [blame] | 1138 | status = nfs_wb_page(page_file_mapping(page)->host, page); |
Trond Myklebust | 1a54533 | 2006-12-05 00:35:40 -0500 | [diff] [blame] | 1139 | } while (status == 0); |
| 1140 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1141 | } |
| 1142 | |
| 1143 | /* |
Andy Adamson | dc24826 | 2013-08-14 11:59:16 -0400 | [diff] [blame] | 1144 | * Avoid buffered writes when a open context credential's key would |
| 1145 | * expire soon. |
| 1146 | * |
| 1147 | * Returns -EACCES if the key will expire within RPC_KEY_EXPIRE_FAIL. |
| 1148 | * |
| 1149 | * Return 0 and set a credential flag which triggers the inode to flush |
| 1150 | * and performs NFS_FILE_SYNC writes if the key will expired within |
| 1151 | * RPC_KEY_EXPIRE_TIMEO. |
| 1152 | */ |
| 1153 | int |
| 1154 | nfs_key_timeout_notify(struct file *filp, struct inode *inode) |
| 1155 | { |
| 1156 | struct nfs_open_context *ctx = nfs_file_open_context(filp); |
| 1157 | struct rpc_auth *auth = NFS_SERVER(inode)->client->cl_auth; |
| 1158 | |
| 1159 | return rpcauth_key_timeout_notify(auth, ctx->cred); |
| 1160 | } |
| 1161 | |
| 1162 | /* |
| 1163 | * Test if the open context credential key is marked to expire soon. |
| 1164 | */ |
| 1165 | bool nfs_ctx_key_to_expire(struct nfs_open_context *ctx) |
| 1166 | { |
| 1167 | return rpcauth_cred_key_to_expire(ctx->cred); |
| 1168 | } |
| 1169 | |
| 1170 | /* |
Trond Myklebust | 5d47a35 | 2008-02-07 17:24:07 -0500 | [diff] [blame] | 1171 | * If the page cache is marked as unsafe or invalid, then we can't rely on |
| 1172 | * the PageUptodate() flag. In this case, we will need to turn off |
| 1173 | * write optimisations that depend on the page contents being correct. |
| 1174 | */ |
Trond Myklebust | 8d197a5 | 2012-04-29 12:50:01 -0400 | [diff] [blame] | 1175 | static bool nfs_write_pageuptodate(struct page *page, struct inode *inode) |
Trond Myklebust | 5d47a35 | 2008-02-07 17:24:07 -0500 | [diff] [blame] | 1176 | { |
Jeff Layton | d529ef8 | 2014-01-27 13:46:15 -0500 | [diff] [blame] | 1177 | struct nfs_inode *nfsi = NFS_I(inode); |
| 1178 | |
Trond Myklebust | 8d197a5 | 2012-04-29 12:50:01 -0400 | [diff] [blame] | 1179 | if (nfs_have_delegated_attributes(inode)) |
| 1180 | goto out; |
Scott Mayhew | 18dd78c | 2014-06-20 08:44:42 -0400 | [diff] [blame] | 1181 | if (nfsi->cache_validity & NFS_INO_REVAL_PAGECACHE) |
Jeff Layton | d529ef8 | 2014-01-27 13:46:15 -0500 | [diff] [blame] | 1182 | return false; |
Jeff Layton | 4db72b4 | 2014-01-28 13:47:46 -0500 | [diff] [blame] | 1183 | smp_rmb(); |
Jeff Layton | d529ef8 | 2014-01-27 13:46:15 -0500 | [diff] [blame] | 1184 | if (test_bit(NFS_INO_INVALIDATING, &nfsi->flags)) |
Trond Myklebust | 8d197a5 | 2012-04-29 12:50:01 -0400 | [diff] [blame] | 1185 | return false; |
| 1186 | out: |
Scott Mayhew | 18dd78c | 2014-06-20 08:44:42 -0400 | [diff] [blame] | 1187 | if (nfsi->cache_validity & NFS_INO_INVALID_DATA) |
| 1188 | return false; |
Trond Myklebust | 8d197a5 | 2012-04-29 12:50:01 -0400 | [diff] [blame] | 1189 | return PageUptodate(page) != 0; |
Trond Myklebust | 5d47a35 | 2008-02-07 17:24:07 -0500 | [diff] [blame] | 1190 | } |
| 1191 | |
Scott Mayhew | c755966 | 2013-07-05 17:33:19 -0400 | [diff] [blame] | 1192 | /* If we know the page is up to date, and we're not using byte range locks (or |
| 1193 | * if we have the whole file locked for writing), it may be more efficient to |
| 1194 | * extend the write to cover the entire page in order to avoid fragmentation |
| 1195 | * inefficiencies. |
| 1196 | * |
Scott Mayhew | 263b450 | 2014-01-17 15:12:05 -0500 | [diff] [blame] | 1197 | * If the file is opened for synchronous writes then we can just skip the rest |
| 1198 | * of the checks. |
Scott Mayhew | c755966 | 2013-07-05 17:33:19 -0400 | [diff] [blame] | 1199 | */ |
| 1200 | static int nfs_can_extend_write(struct file *file, struct page *page, struct inode *inode) |
| 1201 | { |
| 1202 | if (file->f_flags & O_DSYNC) |
| 1203 | return 0; |
Scott Mayhew | 263b450 | 2014-01-17 15:12:05 -0500 | [diff] [blame] | 1204 | if (!nfs_write_pageuptodate(page, inode)) |
| 1205 | return 0; |
Scott Mayhew | c755966 | 2013-07-05 17:33:19 -0400 | [diff] [blame] | 1206 | if (NFS_PROTO(inode)->have_delegation(inode, FMODE_WRITE)) |
| 1207 | return 1; |
Scott Mayhew | 263b450 | 2014-01-17 15:12:05 -0500 | [diff] [blame] | 1208 | if (inode->i_flock == NULL || (inode->i_flock->fl_start == 0 && |
Scott Mayhew | c755966 | 2013-07-05 17:33:19 -0400 | [diff] [blame] | 1209 | inode->i_flock->fl_end == OFFSET_MAX && |
Scott Mayhew | 263b450 | 2014-01-17 15:12:05 -0500 | [diff] [blame] | 1210 | inode->i_flock->fl_type != F_RDLCK)) |
Scott Mayhew | c755966 | 2013-07-05 17:33:19 -0400 | [diff] [blame] | 1211 | return 1; |
| 1212 | return 0; |
| 1213 | } |
| 1214 | |
Trond Myklebust | 5d47a35 | 2008-02-07 17:24:07 -0500 | [diff] [blame] | 1215 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | * Update and possibly write a cached page of an NFS file. |
| 1217 | * |
| 1218 | * XXX: Keep an eye on generic_file_read to make sure it doesn't do bad |
| 1219 | * things with a page scheduled for an RPC call (e.g. invalidate it). |
| 1220 | */ |
| 1221 | int nfs_updatepage(struct file *file, struct page *page, |
| 1222 | unsigned int offset, unsigned int count) |
| 1223 | { |
Trond Myklebust | cd3758e | 2007-08-10 17:44:32 -0400 | [diff] [blame] | 1224 | struct nfs_open_context *ctx = nfs_file_open_context(file); |
Mel Gorman | d56b4dd | 2012-07-31 16:45:06 -0700 | [diff] [blame] | 1225 | struct inode *inode = page_file_mapping(page)->host; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1226 | int status = 0; |
| 1227 | |
Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 1228 | nfs_inc_stats(inode, NFSIOS_VFSUPDATEPAGE); |
| 1229 | |
Al Viro | 6de1472 | 2013-09-16 10:53:17 -0400 | [diff] [blame] | 1230 | dprintk("NFS: nfs_updatepage(%pD2 %d@%lld)\n", |
| 1231 | file, count, (long long)(page_file_offset(page) + offset)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | |
Scott Mayhew | c755966 | 2013-07-05 17:33:19 -0400 | [diff] [blame] | 1233 | if (nfs_can_extend_write(file, page, inode)) { |
Trond Myklebust | 49a70f2 | 2006-12-05 00:35:38 -0500 | [diff] [blame] | 1234 | count = max(count + offset, nfs_page_length(page)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 | offset = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1236 | } |
| 1237 | |
Trond Myklebust | e21195a | 2006-12-05 00:35:39 -0500 | [diff] [blame] | 1238 | status = nfs_writepage_setup(ctx, page, offset, count); |
Trond Myklebust | 03fa9e8 | 2008-06-05 16:02:35 -0400 | [diff] [blame] | 1239 | if (status < 0) |
| 1240 | nfs_set_pageerror(page); |
Trond Myklebust | 59b7c05 | 2011-10-17 18:22:55 -0700 | [diff] [blame] | 1241 | else |
| 1242 | __set_page_dirty_nobuffers(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1243 | |
Chuck Lever | 48186c7 | 2008-06-11 17:56:05 -0400 | [diff] [blame] | 1244 | dprintk("NFS: nfs_updatepage returns %d (isize %lld)\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | status, (long long)i_size_read(inode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | return status; |
| 1247 | } |
| 1248 | |
Trond Myklebust | 3ff7576 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 1249 | static int flush_task_priority(int how) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1250 | { |
| 1251 | switch (how & (FLUSH_HIGHPRI|FLUSH_LOWPRI)) { |
| 1252 | case FLUSH_HIGHPRI: |
| 1253 | return RPC_PRIORITY_HIGH; |
| 1254 | case FLUSH_LOWPRI: |
| 1255 | return RPC_PRIORITY_LOW; |
| 1256 | } |
| 1257 | return RPC_PRIORITY_NORMAL; |
| 1258 | } |
| 1259 | |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1260 | static void nfs_initiate_write(struct nfs_pgio_header *hdr, |
| 1261 | struct rpc_message *msg, |
Anna Schumaker | 1ed26f3 | 2014-05-06 09:12:37 -0400 | [diff] [blame] | 1262 | struct rpc_task_setup *task_setup_data, int how) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1263 | { |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1264 | struct inode *inode = hdr->inode; |
Trond Myklebust | 3ff7576 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 1265 | int priority = flush_task_priority(how); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1266 | |
Anna Schumaker | 1ed26f3 | 2014-05-06 09:12:37 -0400 | [diff] [blame] | 1267 | task_setup_data->priority = priority; |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1268 | NFS_PROTO(inode)->write_setup(hdr, msg); |
Andy Adamson | d138d5d | 2011-03-03 15:13:41 +0000 | [diff] [blame] | 1269 | |
Weston Andros Adamson | 8c21c62 | 2013-08-13 16:37:37 -0400 | [diff] [blame] | 1270 | nfs4_state_protect_write(NFS_SERVER(inode)->nfs_client, |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1271 | &task_setup_data->rpc_client, msg, hdr); |
Trond Myklebust | 275acaa | 2011-07-12 13:42:02 -0400 | [diff] [blame] | 1272 | } |
| 1273 | |
Fred | 6d884e8 | 2008-03-19 11:24:38 -0400 | [diff] [blame] | 1274 | /* If a nfs_flush_* function fails, it should remove reqs from @head and |
| 1275 | * call this on each, which will prepare them to be retried on next |
| 1276 | * writeback using standard nfs. |
| 1277 | */ |
| 1278 | static void nfs_redirty_request(struct nfs_page *req) |
| 1279 | { |
| 1280 | nfs_mark_request_dirty(req); |
Trond Myklebust | 1d1afcb | 2012-05-09 14:04:55 -0400 | [diff] [blame] | 1281 | nfs_unlock_request(req); |
Weston Andros Adamson | 20633f0 | 2014-05-15 11:56:47 -0400 | [diff] [blame] | 1282 | nfs_end_page_writeback(req); |
Trond Myklebust | 3aff4eb | 2012-05-09 14:30:35 -0400 | [diff] [blame] | 1283 | nfs_release_request(req); |
Fred | 6d884e8 | 2008-03-19 11:24:38 -0400 | [diff] [blame] | 1284 | } |
| 1285 | |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 1286 | static void nfs_async_write_error(struct list_head *head) |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 1287 | { |
| 1288 | struct nfs_page *req; |
| 1289 | |
| 1290 | while (!list_empty(head)) { |
| 1291 | req = nfs_list_entry(head->next); |
| 1292 | nfs_list_remove_request(req); |
| 1293 | nfs_redirty_request(req); |
| 1294 | } |
| 1295 | } |
| 1296 | |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 1297 | static const struct nfs_pgio_completion_ops nfs_async_write_completion_ops = { |
| 1298 | .error_cleanup = nfs_async_write_error, |
| 1299 | .completion = nfs_write_completion, |
| 1300 | }; |
| 1301 | |
Bryan Schumaker | 57208fa | 2012-06-20 15:53:48 -0400 | [diff] [blame] | 1302 | void nfs_pageio_init_write(struct nfs_pageio_descriptor *pgio, |
Christoph Hellwig | a20c93e | 2014-04-16 15:07:21 +0200 | [diff] [blame] | 1303 | struct inode *inode, int ioflags, bool force_mds, |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 1304 | const struct nfs_pgio_completion_ops *compl_ops) |
Trond Myklebust | 1751c36 | 2011-06-10 13:30:23 -0400 | [diff] [blame] | 1305 | { |
Christoph Hellwig | a20c93e | 2014-04-16 15:07:21 +0200 | [diff] [blame] | 1306 | struct nfs_server *server = NFS_SERVER(inode); |
Anna Schumaker | 41d8d5b | 2014-05-06 09:12:40 -0400 | [diff] [blame] | 1307 | const struct nfs_pageio_ops *pg_ops = &nfs_pgio_rw_ops; |
Christoph Hellwig | a20c93e | 2014-04-16 15:07:21 +0200 | [diff] [blame] | 1308 | |
| 1309 | #ifdef CONFIG_NFS_V4_1 |
| 1310 | if (server->pnfs_curr_ld && !force_mds) |
| 1311 | pg_ops = server->pnfs_curr_ld->pg_write_ops; |
| 1312 | #endif |
Anna Schumaker | 4a0de55 | 2014-05-06 09:12:30 -0400 | [diff] [blame] | 1313 | nfs_pageio_init(pgio, inode, pg_ops, compl_ops, &nfs_rw_write_ops, |
| 1314 | server->wsize, ioflags); |
Trond Myklebust | 1751c36 | 2011-06-10 13:30:23 -0400 | [diff] [blame] | 1315 | } |
Bryan Schumaker | ddda8e0 | 2012-07-30 16:05:23 -0400 | [diff] [blame] | 1316 | EXPORT_SYMBOL_GPL(nfs_pageio_init_write); |
Trond Myklebust | 1751c36 | 2011-06-10 13:30:23 -0400 | [diff] [blame] | 1317 | |
Trond Myklebust | dce8129 | 2011-07-13 15:59:19 -0400 | [diff] [blame] | 1318 | void nfs_pageio_reset_write_mds(struct nfs_pageio_descriptor *pgio) |
| 1319 | { |
Anna Schumaker | 41d8d5b | 2014-05-06 09:12:40 -0400 | [diff] [blame] | 1320 | pgio->pg_ops = &nfs_pgio_rw_ops; |
Trond Myklebust | dce8129 | 2011-07-13 15:59:19 -0400 | [diff] [blame] | 1321 | pgio->pg_bsize = NFS_SERVER(pgio->pg_inode)->wsize; |
| 1322 | } |
Trond Myklebust | 1f94535 | 2011-07-13 15:59:57 -0400 | [diff] [blame] | 1323 | EXPORT_SYMBOL_GPL(nfs_pageio_reset_write_mds); |
Trond Myklebust | dce8129 | 2011-07-13 15:59:19 -0400 | [diff] [blame] | 1324 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1325 | |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 1326 | void nfs_commit_prepare(struct rpc_task *task, void *calldata) |
| 1327 | { |
| 1328 | struct nfs_commit_data *data = calldata; |
| 1329 | |
| 1330 | NFS_PROTO(data->inode)->commit_rpc_prepare(task, data); |
| 1331 | } |
| 1332 | |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1333 | static void nfs_writeback_release_common(struct nfs_pgio_header *hdr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1334 | { |
Weston Andros Adamson | c65e625 | 2014-06-09 11:48:36 -0400 | [diff] [blame] | 1335 | /* do nothing! */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1336 | } |
| 1337 | |
Trond Myklebust | 1f2edbe | 2014-04-13 11:11:31 -0400 | [diff] [blame] | 1338 | /* |
| 1339 | * Special version of should_remove_suid() that ignores capabilities. |
| 1340 | */ |
| 1341 | static int nfs_should_remove_suid(const struct inode *inode) |
| 1342 | { |
| 1343 | umode_t mode = inode->i_mode; |
| 1344 | int kill = 0; |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1345 | |
Trond Myklebust | 1f2edbe | 2014-04-13 11:11:31 -0400 | [diff] [blame] | 1346 | /* suid always must be killed */ |
| 1347 | if (unlikely(mode & S_ISUID)) |
| 1348 | kill = ATTR_KILL_SUID; |
| 1349 | |
| 1350 | /* |
| 1351 | * sgid without any exec bits is just a mandatory locking mark; leave |
| 1352 | * it alone. If some exec bits are set, it's a real sgid; kill it. |
| 1353 | */ |
| 1354 | if (unlikely((mode & S_ISGID) && (mode & S_IXGRP))) |
| 1355 | kill |= ATTR_KILL_SGID; |
| 1356 | |
| 1357 | if (unlikely(kill && S_ISREG(mode))) |
| 1358 | return kill; |
| 1359 | |
| 1360 | return 0; |
| 1361 | } |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1362 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1363 | /* |
| 1364 | * This function is called when the WRITE call is complete. |
| 1365 | */ |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1366 | static int nfs_writeback_done(struct rpc_task *task, |
| 1367 | struct nfs_pgio_header *hdr, |
Anna Schumaker | 0eecb21 | 2014-05-06 09:12:32 -0400 | [diff] [blame] | 1368 | struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1369 | { |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1370 | int status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1371 | |
Chuck Lever | f551e44 | 2006-09-20 14:33:04 -0400 | [diff] [blame] | 1372 | /* |
| 1373 | * ->write_done will attempt to use post-op attributes to detect |
| 1374 | * conflicting writes by other clients. A strict interpretation |
| 1375 | * of close-to-open would allow us to continue caching even if |
| 1376 | * another writer had changed the file, but some applications |
| 1377 | * depend on tighter cache coherency when writing. |
| 1378 | */ |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1379 | status = NFS_PROTO(inode)->write_done(task, hdr); |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1380 | if (status != 0) |
Anna Schumaker | 0eecb21 | 2014-05-06 09:12:32 -0400 | [diff] [blame] | 1381 | return status; |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1382 | nfs_add_stats(inode, NFSIOS_SERVERWRITTENBYTES, hdr->res.count); |
Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 1383 | |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 1384 | #if IS_ENABLED(CONFIG_NFS_V3) || IS_ENABLED(CONFIG_NFS_V4) |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1385 | if (hdr->res.verf->committed < hdr->args.stable && |
| 1386 | task->tk_status >= 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1387 | /* We tried a write call, but the server did not |
| 1388 | * commit data to stable storage even though we |
| 1389 | * requested it. |
| 1390 | * Note: There is a known bug in Tru64 < 5.0 in which |
| 1391 | * the server reports NFS_DATA_SYNC, but performs |
| 1392 | * NFS_FILE_SYNC. We therefore implement this checking |
| 1393 | * as a dprintk() in order to avoid filling syslog. |
| 1394 | */ |
| 1395 | static unsigned long complain; |
| 1396 | |
Fred Isaman | a69aef1 | 2011-03-03 15:13:47 +0000 | [diff] [blame] | 1397 | /* Note this will print the MDS for a DS write */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | if (time_before(complain, jiffies)) { |
Chuck Lever | 48186c7 | 2008-06-11 17:56:05 -0400 | [diff] [blame] | 1399 | dprintk("NFS: faulty NFS server %s:" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | " (committed = %d) != (stable = %d)\n", |
Fred Isaman | cd84160 | 2012-04-20 14:47:44 -0400 | [diff] [blame] | 1401 | NFS_SERVER(inode)->nfs_client->cl_hostname, |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1402 | hdr->res.verf->committed, hdr->args.stable); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 | complain = jiffies + 300 * HZ; |
| 1404 | } |
| 1405 | } |
| 1406 | #endif |
Trond Myklebust | 1f2edbe | 2014-04-13 11:11:31 -0400 | [diff] [blame] | 1407 | |
| 1408 | /* Deal with the suid/sgid bit corner case */ |
| 1409 | if (nfs_should_remove_suid(inode)) |
| 1410 | nfs_mark_for_revalidate(inode); |
Anna Schumaker | 0eecb21 | 2014-05-06 09:12:32 -0400 | [diff] [blame] | 1411 | return 0; |
| 1412 | } |
| 1413 | |
| 1414 | /* |
| 1415 | * This function is called when the WRITE call is complete. |
| 1416 | */ |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1417 | static void nfs_writeback_result(struct rpc_task *task, |
| 1418 | struct nfs_pgio_header *hdr) |
Anna Schumaker | 0eecb21 | 2014-05-06 09:12:32 -0400 | [diff] [blame] | 1419 | { |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1420 | struct nfs_pgio_args *argp = &hdr->args; |
| 1421 | struct nfs_pgio_res *resp = &hdr->res; |
Trond Myklebust | 1f2edbe | 2014-04-13 11:11:31 -0400 | [diff] [blame] | 1422 | |
| 1423 | if (resp->count < argp->count) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1424 | static unsigned long complain; |
| 1425 | |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 1426 | /* This a short write! */ |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1427 | nfs_inc_stats(hdr->inode, NFSIOS_SHORTWRITE); |
Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 1428 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1429 | /* Has the server at least made some progress? */ |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 1430 | if (resp->count == 0) { |
| 1431 | if (time_before(complain, jiffies)) { |
| 1432 | printk(KERN_WARNING |
| 1433 | "NFS: Server wrote zero bytes, expected %u.\n", |
| 1434 | argp->count); |
| 1435 | complain = jiffies + 300 * HZ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1436 | } |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1437 | nfs_set_pgio_error(hdr, -EIO, argp->offset); |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 1438 | task->tk_status = -EIO; |
Fred Isaman | 1360289 | 2011-02-11 15:42:38 +0000 | [diff] [blame] | 1439 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1440 | } |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 1441 | /* Was this an NFSv2 write or an NFSv3 stable write? */ |
| 1442 | if (resp->verf->committed != NFS_UNSTABLE) { |
| 1443 | /* Resend from where the server left off */ |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1444 | hdr->mds_offset += resp->count; |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 1445 | argp->offset += resp->count; |
| 1446 | argp->pgbase += resp->count; |
| 1447 | argp->count -= resp->count; |
| 1448 | } else { |
| 1449 | /* Resend as a stable write in order to avoid |
| 1450 | * headaches in the case of a server crash. |
| 1451 | */ |
| 1452 | argp->stable = NFS_FILE_SYNC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1453 | } |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 1454 | rpc_restart_call_prepare(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1455 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1456 | } |
| 1457 | |
| 1458 | |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 1459 | #if IS_ENABLED(CONFIG_NFS_V3) || IS_ENABLED(CONFIG_NFS_V4) |
Trond Myklebust | 71d0a61 | 2010-04-22 15:35:57 -0400 | [diff] [blame] | 1460 | static int nfs_commit_set_lock(struct nfs_inode *nfsi, int may_wait) |
| 1461 | { |
Trond Myklebust | b8413f9 | 2011-03-21 15:37:01 -0400 | [diff] [blame] | 1462 | int ret; |
| 1463 | |
Trond Myklebust | 71d0a61 | 2010-04-22 15:35:57 -0400 | [diff] [blame] | 1464 | if (!test_and_set_bit(NFS_INO_COMMIT, &nfsi->flags)) |
| 1465 | return 1; |
Trond Myklebust | b8413f9 | 2011-03-21 15:37:01 -0400 | [diff] [blame] | 1466 | if (!may_wait) |
| 1467 | return 0; |
| 1468 | ret = out_of_line_wait_on_bit_lock(&nfsi->flags, |
| 1469 | NFS_INO_COMMIT, |
| 1470 | nfs_wait_bit_killable, |
| 1471 | TASK_KILLABLE); |
| 1472 | return (ret < 0) ? ret : 1; |
Trond Myklebust | 71d0a61 | 2010-04-22 15:35:57 -0400 | [diff] [blame] | 1473 | } |
| 1474 | |
Fred Isaman | f453a54 | 2012-04-20 14:47:54 -0400 | [diff] [blame] | 1475 | static void nfs_commit_clear_lock(struct nfs_inode *nfsi) |
Trond Myklebust | 71d0a61 | 2010-04-22 15:35:57 -0400 | [diff] [blame] | 1476 | { |
| 1477 | clear_bit(NFS_INO_COMMIT, &nfsi->flags); |
Peter Zijlstra | 4e857c5 | 2014-03-17 18:06:10 +0100 | [diff] [blame] | 1478 | smp_mb__after_atomic(); |
Trond Myklebust | 71d0a61 | 2010-04-22 15:35:57 -0400 | [diff] [blame] | 1479 | wake_up_bit(&nfsi->flags, NFS_INO_COMMIT); |
| 1480 | } |
| 1481 | |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 1482 | void nfs_commitdata_release(struct nfs_commit_data *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1483 | { |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 1484 | put_nfs_open_context(data->context); |
| 1485 | nfs_commit_free(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1486 | } |
Fred Isaman | e0c2b38 | 2011-03-23 13:27:53 +0000 | [diff] [blame] | 1487 | EXPORT_SYMBOL_GPL(nfs_commitdata_release); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1488 | |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 1489 | 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] | 1490 | const struct rpc_call_ops *call_ops, |
Andy Adamson | 9f0ec176 | 2012-04-27 17:53:44 -0400 | [diff] [blame] | 1491 | int how, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1492 | { |
Trond Myklebust | 0773769 | 2007-10-25 18:42:54 -0400 | [diff] [blame] | 1493 | struct rpc_task *task; |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1494 | int priority = flush_task_priority(how); |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 1495 | struct rpc_message msg = { |
| 1496 | .rpc_argp = &data->args, |
| 1497 | .rpc_resp = &data->res, |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1498 | .rpc_cred = data->cred, |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 1499 | }; |
Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 1500 | struct rpc_task_setup task_setup_data = { |
Trond Myklebust | 0773769 | 2007-10-25 18:42:54 -0400 | [diff] [blame] | 1501 | .task = &data->task, |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1502 | .rpc_client = clnt, |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 1503 | .rpc_message = &msg, |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1504 | .callback_ops = call_ops, |
Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 1505 | .callback_data = data, |
Trond Myklebust | 101070c | 2008-02-19 20:04:23 -0500 | [diff] [blame] | 1506 | .workqueue = nfsiod_workqueue, |
Andy Adamson | 9f0ec176 | 2012-04-27 17:53:44 -0400 | [diff] [blame] | 1507 | .flags = RPC_TASK_ASYNC | flags, |
Trond Myklebust | 3ff7576 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 1508 | .priority = priority, |
Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 1509 | }; |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1510 | /* Set up the initial task struct. */ |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1511 | NFS_PROTO(data->inode)->commit_setup(data, &msg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1512 | |
Chuck Lever | a3f565b | 2007-01-31 12:14:01 -0500 | [diff] [blame] | 1513 | dprintk("NFS: %5u initiated commit call\n", data->task.tk_pid); |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 1514 | |
Weston Andros Adamson | 8c21c62 | 2013-08-13 16:37:37 -0400 | [diff] [blame] | 1515 | nfs4_state_protect(NFS_SERVER(data->inode)->nfs_client, |
| 1516 | NFS_SP4_MACH_CRED_COMMIT, &task_setup_data.rpc_client, &msg); |
| 1517 | |
Trond Myklebust | 0773769 | 2007-10-25 18:42:54 -0400 | [diff] [blame] | 1518 | task = rpc_run_task(&task_setup_data); |
Trond Myklebust | dbae4c7 | 2008-04-14 14:54:53 -0400 | [diff] [blame] | 1519 | if (IS_ERR(task)) |
| 1520 | return PTR_ERR(task); |
Jeff Layton | d2224e7 | 2011-03-06 17:14:13 +0000 | [diff] [blame] | 1521 | if (how & FLUSH_SYNC) |
| 1522 | rpc_wait_for_completion_task(task); |
Trond Myklebust | dbae4c7 | 2008-04-14 14:54:53 -0400 | [diff] [blame] | 1523 | rpc_put_task(task); |
| 1524 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1525 | } |
Fred Isaman | e0c2b38 | 2011-03-23 13:27:53 +0000 | [diff] [blame] | 1526 | EXPORT_SYMBOL_GPL(nfs_initiate_commit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1527 | |
| 1528 | /* |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1529 | * Set up the argument/result storage required for the RPC call. |
| 1530 | */ |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 1531 | void nfs_init_commit(struct nfs_commit_data *data, |
Fred Isaman | f453a54 | 2012-04-20 14:47:54 -0400 | [diff] [blame] | 1532 | struct list_head *head, |
| 1533 | struct pnfs_layout_segment *lseg, |
| 1534 | struct nfs_commit_info *cinfo) |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1535 | { |
| 1536 | struct nfs_page *first = nfs_list_entry(head->next); |
Al Viro | 3d4ff43 | 2011-06-22 18:40:12 -0400 | [diff] [blame] | 1537 | struct inode *inode = first->wb_context->dentry->d_inode; |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1538 | |
| 1539 | /* Set up the RPC argument and reply structs |
| 1540 | * NB: take care not to mess about with data->commit et al. */ |
| 1541 | |
| 1542 | list_splice_init(head, &data->pages); |
| 1543 | |
| 1544 | data->inode = inode; |
| 1545 | data->cred = first->wb_context->cred; |
Fred Isaman | 988b6dc | 2011-03-23 13:27:52 +0000 | [diff] [blame] | 1546 | data->lseg = lseg; /* reference transferred */ |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1547 | data->mds_ops = &nfs_commit_ops; |
Fred Isaman | f453a54 | 2012-04-20 14:47:54 -0400 | [diff] [blame] | 1548 | data->completion_ops = cinfo->completion_ops; |
Fred Isaman | b359f9d | 2012-04-20 14:47:55 -0400 | [diff] [blame] | 1549 | data->dreq = cinfo->dreq; |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1550 | |
| 1551 | data->args.fh = NFS_FH(data->inode); |
| 1552 | /* Note: we always request a commit of the entire inode */ |
| 1553 | data->args.offset = 0; |
| 1554 | data->args.count = 0; |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 1555 | data->context = get_nfs_open_context(first->wb_context); |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1556 | data->res.fattr = &data->fattr; |
| 1557 | data->res.verf = &data->verf; |
| 1558 | nfs_fattr_init(&data->fattr); |
| 1559 | } |
Fred Isaman | e0c2b38 | 2011-03-23 13:27:53 +0000 | [diff] [blame] | 1560 | EXPORT_SYMBOL_GPL(nfs_init_commit); |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1561 | |
Fred Isaman | e0c2b38 | 2011-03-23 13:27:53 +0000 | [diff] [blame] | 1562 | void nfs_retry_commit(struct list_head *page_list, |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 1563 | struct pnfs_layout_segment *lseg, |
| 1564 | struct nfs_commit_info *cinfo) |
Fred Isaman | 64bfeb4 | 2011-03-23 13:27:47 +0000 | [diff] [blame] | 1565 | { |
| 1566 | struct nfs_page *req; |
| 1567 | |
| 1568 | while (!list_empty(page_list)) { |
| 1569 | req = nfs_list_entry(page_list->next); |
| 1570 | nfs_list_remove_request(req); |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 1571 | nfs_mark_request_commit(req, lseg, cinfo); |
Fred Isaman | 56f9cd6 | 2012-04-20 14:47:56 -0400 | [diff] [blame] | 1572 | if (!cinfo->dreq) { |
| 1573 | dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS); |
Mel Gorman | d56b4dd | 2012-07-31 16:45:06 -0700 | [diff] [blame] | 1574 | dec_bdi_stat(page_file_mapping(req->wb_page)->backing_dev_info, |
Fred Isaman | 56f9cd6 | 2012-04-20 14:47:56 -0400 | [diff] [blame] | 1575 | BDI_RECLAIMABLE); |
| 1576 | } |
Trond Myklebust | 1d1afcb | 2012-05-09 14:04:55 -0400 | [diff] [blame] | 1577 | nfs_unlock_and_release_request(req); |
Fred Isaman | 64bfeb4 | 2011-03-23 13:27:47 +0000 | [diff] [blame] | 1578 | } |
| 1579 | } |
Fred Isaman | e0c2b38 | 2011-03-23 13:27:53 +0000 | [diff] [blame] | 1580 | EXPORT_SYMBOL_GPL(nfs_retry_commit); |
Fred Isaman | 64bfeb4 | 2011-03-23 13:27:47 +0000 | [diff] [blame] | 1581 | |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1582 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1583 | * Commit dirty pages |
| 1584 | */ |
| 1585 | static int |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 1586 | nfs_commit_list(struct inode *inode, struct list_head *head, int how, |
| 1587 | struct nfs_commit_info *cinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1588 | { |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 1589 | struct nfs_commit_data *data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1590 | |
Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1591 | data = nfs_commitdata_alloc(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1592 | |
| 1593 | if (!data) |
| 1594 | goto out_bad; |
| 1595 | |
| 1596 | /* Set up the argument struct */ |
Fred Isaman | f453a54 | 2012-04-20 14:47:54 -0400 | [diff] [blame] | 1597 | nfs_init_commit(data, head, NULL, cinfo); |
| 1598 | atomic_inc(&cinfo->mds->rpcs_out); |
Andy Adamson | 9f0ec176 | 2012-04-27 17:53:44 -0400 | [diff] [blame] | 1599 | return nfs_initiate_commit(NFS_CLIENT(inode), data, data->mds_ops, |
| 1600 | how, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1601 | out_bad: |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 1602 | nfs_retry_commit(head, NULL, cinfo); |
Fred Isaman | f453a54 | 2012-04-20 14:47:54 -0400 | [diff] [blame] | 1603 | cinfo->completion_ops->error_cleanup(NFS_I(inode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1604 | return -ENOMEM; |
| 1605 | } |
| 1606 | |
| 1607 | /* |
| 1608 | * COMMIT call returned |
| 1609 | */ |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1610 | static void nfs_commit_done(struct rpc_task *task, void *calldata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1611 | { |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 1612 | struct nfs_commit_data *data = calldata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1613 | |
Chuck Lever | a3f565b | 2007-01-31 12:14:01 -0500 | [diff] [blame] | 1614 | dprintk("NFS: %5u nfs_commit_done (status %d)\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1615 | task->tk_pid, task->tk_status); |
| 1616 | |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1617 | /* Call the NFS version-specific code */ |
Trond Myklebust | c0d0e96 | 2011-04-12 12:29:15 -0400 | [diff] [blame] | 1618 | NFS_PROTO(data->inode)->commit_done(task, data); |
Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1619 | } |
| 1620 | |
Fred Isaman | f453a54 | 2012-04-20 14:47:54 -0400 | [diff] [blame] | 1621 | static void nfs_commit_release_pages(struct nfs_commit_data *data) |
Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1622 | { |
Fred Isaman | 5917ce8 | 2011-03-23 13:27:48 +0000 | [diff] [blame] | 1623 | struct nfs_page *req; |
Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1624 | int status = data->task.tk_status; |
Fred Isaman | f453a54 | 2012-04-20 14:47:54 -0400 | [diff] [blame] | 1625 | struct nfs_commit_info cinfo; |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1626 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1627 | while (!list_empty(&data->pages)) { |
| 1628 | req = nfs_list_entry(data->pages.next); |
| 1629 | nfs_list_remove_request(req); |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 1630 | nfs_clear_page_commit(req->wb_page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1631 | |
Niels de Vos | 1e8968c | 2013-12-17 18:20:16 +0100 | [diff] [blame] | 1632 | dprintk("NFS: commit (%s/%llu %d@%lld)", |
Al Viro | 3d4ff43 | 2011-06-22 18:40:12 -0400 | [diff] [blame] | 1633 | req->wb_context->dentry->d_sb->s_id, |
Niels de Vos | 1e8968c | 2013-12-17 18:20:16 +0100 | [diff] [blame] | 1634 | (unsigned long long)NFS_FILEID(req->wb_context->dentry->d_inode), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1635 | req->wb_bytes, |
| 1636 | (long long)req_offset(req)); |
Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1637 | if (status < 0) { |
| 1638 | nfs_context_set_write_error(req->wb_context, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1639 | nfs_inode_remove_request(req); |
Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1640 | dprintk(", error = %d\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1641 | goto next; |
| 1642 | } |
| 1643 | |
| 1644 | /* Okay, COMMIT succeeded, apparently. Check the verifier |
| 1645 | * returned by the server against all stored verfs. */ |
Trond Myklebust | 2f2c63b | 2012-06-08 11:56:09 -0400 | [diff] [blame] | 1646 | if (!memcmp(&req->wb_verf, &data->verf.verifier, sizeof(req->wb_verf))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1647 | /* We have a match */ |
| 1648 | nfs_inode_remove_request(req); |
| 1649 | dprintk(" OK\n"); |
| 1650 | goto next; |
| 1651 | } |
| 1652 | /* We have a mismatch. Write the page again */ |
| 1653 | dprintk(" mismatch\n"); |
Fred | 6d884e8 | 2008-03-19 11:24:38 -0400 | [diff] [blame] | 1654 | nfs_mark_request_dirty(req); |
Trond Myklebust | 05990d1 | 2012-09-11 16:01:22 -0400 | [diff] [blame] | 1655 | set_bit(NFS_CONTEXT_RESEND_WRITES, &req->wb_context->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1656 | next: |
Trond Myklebust | 1d1afcb | 2012-05-09 14:04:55 -0400 | [diff] [blame] | 1657 | nfs_unlock_and_release_request(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1658 | } |
Fred Isaman | f453a54 | 2012-04-20 14:47:54 -0400 | [diff] [blame] | 1659 | nfs_init_cinfo(&cinfo, data->inode, data->dreq); |
| 1660 | if (atomic_dec_and_test(&cinfo.mds->rpcs_out)) |
| 1661 | nfs_commit_clear_lock(NFS_I(data->inode)); |
Fred Isaman | 5917ce8 | 2011-03-23 13:27:48 +0000 | [diff] [blame] | 1662 | } |
| 1663 | |
| 1664 | static void nfs_commit_release(void *calldata) |
| 1665 | { |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 1666 | struct nfs_commit_data *data = calldata; |
Fred Isaman | 5917ce8 | 2011-03-23 13:27:48 +0000 | [diff] [blame] | 1667 | |
Fred Isaman | f453a54 | 2012-04-20 14:47:54 -0400 | [diff] [blame] | 1668 | data->completion_ops->completion(data); |
Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1669 | nfs_commitdata_release(calldata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1670 | } |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1671 | |
| 1672 | static const struct rpc_call_ops nfs_commit_ops = { |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 1673 | .rpc_call_prepare = nfs_commit_prepare, |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1674 | .rpc_call_done = nfs_commit_done, |
| 1675 | .rpc_release = nfs_commit_release, |
| 1676 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1677 | |
Fred Isaman | f453a54 | 2012-04-20 14:47:54 -0400 | [diff] [blame] | 1678 | static const struct nfs_commit_completion_ops nfs_commit_completion_ops = { |
| 1679 | .completion = nfs_commit_release_pages, |
| 1680 | .error_cleanup = nfs_commit_clear_lock, |
| 1681 | }; |
| 1682 | |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 1683 | int nfs_generic_commit_list(struct inode *inode, struct list_head *head, |
| 1684 | int how, struct nfs_commit_info *cinfo) |
Fred Isaman | 84c53ab | 2012-04-20 14:47:52 -0400 | [diff] [blame] | 1685 | { |
| 1686 | int status; |
| 1687 | |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 1688 | status = pnfs_commit_list(inode, head, how, cinfo); |
Fred Isaman | 84c53ab | 2012-04-20 14:47:52 -0400 | [diff] [blame] | 1689 | if (status == PNFS_NOT_ATTEMPTED) |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 1690 | status = nfs_commit_list(inode, head, how, cinfo); |
Fred Isaman | 84c53ab | 2012-04-20 14:47:52 -0400 | [diff] [blame] | 1691 | return status; |
| 1692 | } |
| 1693 | |
Trond Myklebust | b608b28 | 2010-07-30 15:31:54 -0400 | [diff] [blame] | 1694 | int nfs_commit_inode(struct inode *inode, int how) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1695 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1696 | LIST_HEAD(head); |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 1697 | struct nfs_commit_info cinfo; |
Trond Myklebust | 71d0a61 | 2010-04-22 15:35:57 -0400 | [diff] [blame] | 1698 | int may_wait = how & FLUSH_SYNC; |
Trond Myklebust | b8413f9 | 2011-03-21 15:37:01 -0400 | [diff] [blame] | 1699 | int res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1700 | |
Trond Myklebust | b8413f9 | 2011-03-21 15:37:01 -0400 | [diff] [blame] | 1701 | res = nfs_commit_set_lock(NFS_I(inode), may_wait); |
| 1702 | if (res <= 0) |
Trond Myklebust | c5efa5f | 2010-05-26 08:42:11 -0400 | [diff] [blame] | 1703 | goto out_mark_dirty; |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 1704 | nfs_init_cinfo_from_inode(&cinfo, inode); |
| 1705 | res = nfs_scan_commit(inode, &head, &cinfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1706 | if (res) { |
Fred Isaman | a861a1e | 2011-03-23 13:27:51 +0000 | [diff] [blame] | 1707 | int error; |
| 1708 | |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 1709 | error = nfs_generic_commit_list(inode, &head, how, &cinfo); |
Trond Myklebust | 3da28eb | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 1710 | if (error < 0) |
| 1711 | return error; |
Trond Myklebust | b8413f9 | 2011-03-21 15:37:01 -0400 | [diff] [blame] | 1712 | if (!may_wait) |
Trond Myklebust | c5efa5f | 2010-05-26 08:42:11 -0400 | [diff] [blame] | 1713 | goto out_mark_dirty; |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 1714 | error = wait_on_bit_action(&NFS_I(inode)->flags, |
Trond Myklebust | b8413f9 | 2011-03-21 15:37:01 -0400 | [diff] [blame] | 1715 | NFS_INO_COMMIT, |
| 1716 | nfs_wait_bit_killable, |
| 1717 | TASK_KILLABLE); |
| 1718 | if (error < 0) |
| 1719 | return error; |
Trond Myklebust | 71d0a61 | 2010-04-22 15:35:57 -0400 | [diff] [blame] | 1720 | } else |
| 1721 | nfs_commit_clear_lock(NFS_I(inode)); |
Trond Myklebust | c5efa5f | 2010-05-26 08:42:11 -0400 | [diff] [blame] | 1722 | return res; |
| 1723 | /* Note: If we exit without ensuring that the commit is complete, |
| 1724 | * we must mark the inode as dirty. Otherwise, future calls to |
| 1725 | * sync_inode() with the WB_SYNC_ALL flag set will fail to ensure |
| 1726 | * that the data is on the disk. |
| 1727 | */ |
| 1728 | out_mark_dirty: |
| 1729 | __mark_inode_dirty(inode, I_DIRTY_DATASYNC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1730 | return res; |
| 1731 | } |
Trond Myklebust | 8fc795f | 2010-02-19 16:46:56 -0800 | [diff] [blame] | 1732 | |
| 1733 | static int nfs_commit_unstable_pages(struct inode *inode, struct writeback_control *wbc) |
| 1734 | { |
Trond Myklebust | 420e364 | 2010-02-19 17:00:02 -0800 | [diff] [blame] | 1735 | struct nfs_inode *nfsi = NFS_I(inode); |
| 1736 | int flags = FLUSH_SYNC; |
| 1737 | int ret = 0; |
Trond Myklebust | 8fc795f | 2010-02-19 16:46:56 -0800 | [diff] [blame] | 1738 | |
Jeff Layton | 3236c3e | 2011-10-11 09:49:21 -0400 | [diff] [blame] | 1739 | /* no commits means nothing needs to be done */ |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 1740 | if (!nfsi->commit_info.ncommit) |
Jeff Layton | 3236c3e | 2011-10-11 09:49:21 -0400 | [diff] [blame] | 1741 | return ret; |
| 1742 | |
Jeff Layton | a00dd6c | 2010-09-28 09:14:01 -0400 | [diff] [blame] | 1743 | if (wbc->sync_mode == WB_SYNC_NONE) { |
| 1744 | /* Don't commit yet if this is a non-blocking flush and there |
| 1745 | * are a lot of outstanding writes for this mapping. |
| 1746 | */ |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 1747 | if (nfsi->commit_info.ncommit <= (nfsi->npages >> 1)) |
Jeff Layton | a00dd6c | 2010-09-28 09:14:01 -0400 | [diff] [blame] | 1748 | goto out_mark_dirty; |
Trond Myklebust | 420e364 | 2010-02-19 17:00:02 -0800 | [diff] [blame] | 1749 | |
Jeff Layton | a00dd6c | 2010-09-28 09:14:01 -0400 | [diff] [blame] | 1750 | /* don't wait for the COMMIT response */ |
Trond Myklebust | 420e364 | 2010-02-19 17:00:02 -0800 | [diff] [blame] | 1751 | flags = 0; |
Jeff Layton | a00dd6c | 2010-09-28 09:14:01 -0400 | [diff] [blame] | 1752 | } |
| 1753 | |
Trond Myklebust | 420e364 | 2010-02-19 17:00:02 -0800 | [diff] [blame] | 1754 | ret = nfs_commit_inode(inode, flags); |
| 1755 | if (ret >= 0) { |
| 1756 | if (wbc->sync_mode == WB_SYNC_NONE) { |
| 1757 | if (ret < wbc->nr_to_write) |
| 1758 | wbc->nr_to_write -= ret; |
| 1759 | else |
| 1760 | wbc->nr_to_write = 0; |
| 1761 | } |
Trond Myklebust | 8fc795f | 2010-02-19 16:46:56 -0800 | [diff] [blame] | 1762 | return 0; |
Trond Myklebust | 420e364 | 2010-02-19 17:00:02 -0800 | [diff] [blame] | 1763 | } |
| 1764 | out_mark_dirty: |
Trond Myklebust | 8fc795f | 2010-02-19 16:46:56 -0800 | [diff] [blame] | 1765 | __mark_inode_dirty(inode, I_DIRTY_DATASYNC); |
| 1766 | return ret; |
| 1767 | } |
Trond Myklebust | c63c7b0 | 2007-04-02 19:29:52 -0400 | [diff] [blame] | 1768 | #else |
Trond Myklebust | 8fc795f | 2010-02-19 16:46:56 -0800 | [diff] [blame] | 1769 | static int nfs_commit_unstable_pages(struct inode *inode, struct writeback_control *wbc) |
| 1770 | { |
| 1771 | return 0; |
| 1772 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1773 | #endif |
| 1774 | |
Trond Myklebust | 8fc795f | 2010-02-19 16:46:56 -0800 | [diff] [blame] | 1775 | int nfs_write_inode(struct inode *inode, struct writeback_control *wbc) |
| 1776 | { |
Bryan Schumaker | a8d8f02 | 2012-06-20 15:53:49 -0400 | [diff] [blame] | 1777 | return nfs_commit_unstable_pages(inode, wbc); |
| 1778 | } |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 1779 | EXPORT_SYMBOL_GPL(nfs_write_inode); |
Andy Adamson | 863a3c6 | 2011-03-23 13:27:54 +0000 | [diff] [blame] | 1780 | |
Trond Myklebust | acdc53b | 2010-02-19 17:03:26 -0800 | [diff] [blame] | 1781 | /* |
| 1782 | * flush the inode to disk. |
| 1783 | */ |
| 1784 | int nfs_wb_all(struct inode *inode) |
Trond Myklebust | 34901f7 | 2007-07-25 14:09:54 -0400 | [diff] [blame] | 1785 | { |
| 1786 | struct writeback_control wbc = { |
Trond Myklebust | 72cb77f | 2009-03-11 14:10:30 -0400 | [diff] [blame] | 1787 | .sync_mode = WB_SYNC_ALL, |
Trond Myklebust | 34901f7 | 2007-07-25 14:09:54 -0400 | [diff] [blame] | 1788 | .nr_to_write = LONG_MAX, |
Trond Myklebust | d7fb120 | 2008-10-06 20:08:56 -0400 | [diff] [blame] | 1789 | .range_start = 0, |
| 1790 | .range_end = LLONG_MAX, |
Trond Myklebust | 34901f7 | 2007-07-25 14:09:54 -0400 | [diff] [blame] | 1791 | }; |
Trond Myklebust | f4ce129 | 2013-08-19 18:59:33 -0400 | [diff] [blame] | 1792 | int ret; |
Trond Myklebust | 34901f7 | 2007-07-25 14:09:54 -0400 | [diff] [blame] | 1793 | |
Trond Myklebust | f4ce129 | 2013-08-19 18:59:33 -0400 | [diff] [blame] | 1794 | trace_nfs_writeback_inode_enter(inode); |
| 1795 | |
| 1796 | ret = sync_inode(inode, &wbc); |
| 1797 | |
| 1798 | trace_nfs_writeback_inode_exit(inode, ret); |
| 1799 | return ret; |
Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 1800 | } |
Bryan Schumaker | ddda8e0 | 2012-07-30 16:05:23 -0400 | [diff] [blame] | 1801 | EXPORT_SYMBOL_GPL(nfs_wb_all); |
Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 1802 | |
Trond Myklebust | 1b3b4a1 | 2007-08-28 10:29:36 -0400 | [diff] [blame] | 1803 | int nfs_wb_page_cancel(struct inode *inode, struct page *page) |
| 1804 | { |
| 1805 | struct nfs_page *req; |
Trond Myklebust | 1b3b4a1 | 2007-08-28 10:29:36 -0400 | [diff] [blame] | 1806 | int ret = 0; |
| 1807 | |
Weston Andros Adamson | 3e21704 | 2014-07-11 10:20:49 -0400 | [diff] [blame] | 1808 | wait_on_page_writeback(page); |
| 1809 | |
| 1810 | /* blocking call to cancel all requests and join to a single (head) |
| 1811 | * request */ |
| 1812 | req = nfs_lock_and_join_requests(page, false); |
| 1813 | |
| 1814 | if (IS_ERR(req)) { |
| 1815 | ret = PTR_ERR(req); |
| 1816 | } else if (req) { |
| 1817 | /* all requests from this page have been cancelled by |
| 1818 | * nfs_lock_and_join_requests, so just remove the head |
| 1819 | * request from the inode / page_private pointer and |
| 1820 | * release it */ |
| 1821 | nfs_inode_remove_request(req); |
| 1822 | /* |
| 1823 | * In case nfs_inode_remove_request has marked the |
| 1824 | * page as being dirty |
| 1825 | */ |
| 1826 | cancel_dirty_page(page, PAGE_CACHE_SIZE); |
| 1827 | nfs_unlock_and_release_request(req); |
Trond Myklebust | 1b3b4a1 | 2007-08-28 10:29:36 -0400 | [diff] [blame] | 1828 | } |
Weston Andros Adamson | 3e21704 | 2014-07-11 10:20:49 -0400 | [diff] [blame] | 1829 | |
Trond Myklebust | 1b3b4a1 | 2007-08-28 10:29:36 -0400 | [diff] [blame] | 1830 | return ret; |
| 1831 | } |
| 1832 | |
Trond Myklebust | 7f2f12d | 2010-02-19 17:03:28 -0800 | [diff] [blame] | 1833 | /* |
| 1834 | * Write back all requests on one page - we do this before reading it. |
| 1835 | */ |
| 1836 | int nfs_wb_page(struct inode *inode, struct page *page) |
Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 1837 | { |
Mel Gorman | 29418aa | 2012-07-31 16:45:10 -0700 | [diff] [blame] | 1838 | loff_t range_start = page_file_offset(page); |
Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 1839 | loff_t range_end = range_start + (loff_t)(PAGE_CACHE_SIZE - 1); |
Trond Myklebust | 4d770cc | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 1840 | struct writeback_control wbc = { |
Trond Myklebust | 4d770cc | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 1841 | .sync_mode = WB_SYNC_ALL, |
Trond Myklebust | 7f2f12d | 2010-02-19 17:03:28 -0800 | [diff] [blame] | 1842 | .nr_to_write = 0, |
Trond Myklebust | 4d770cc | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 1843 | .range_start = range_start, |
| 1844 | .range_end = range_end, |
| 1845 | }; |
| 1846 | int ret; |
Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 1847 | |
Trond Myklebust | f4ce129 | 2013-08-19 18:59:33 -0400 | [diff] [blame] | 1848 | trace_nfs_writeback_page_enter(inode); |
| 1849 | |
Trond Myklebust | 0522f6a | 2010-05-26 08:42:24 -0400 | [diff] [blame] | 1850 | for (;;) { |
Trond Myklebust | ba8b06e | 2010-04-27 18:33:54 -0400 | [diff] [blame] | 1851 | wait_on_page_writeback(page); |
Trond Myklebust | 73e3302 | 2008-04-11 16:03:54 -0400 | [diff] [blame] | 1852 | if (clear_page_dirty_for_io(page)) { |
| 1853 | ret = nfs_writepage_locked(page, &wbc); |
| 1854 | if (ret < 0) |
| 1855 | goto out_error; |
Trond Myklebust | 0522f6a | 2010-05-26 08:42:24 -0400 | [diff] [blame] | 1856 | continue; |
Trond Myklebust | 7f2f12d | 2010-02-19 17:03:28 -0800 | [diff] [blame] | 1857 | } |
Trond Myklebust | f4ce129 | 2013-08-19 18:59:33 -0400 | [diff] [blame] | 1858 | ret = 0; |
Trond Myklebust | 0522f6a | 2010-05-26 08:42:24 -0400 | [diff] [blame] | 1859 | if (!PagePrivate(page)) |
| 1860 | break; |
| 1861 | ret = nfs_commit_inode(inode, FLUSH_SYNC); |
Trond Myklebust | ba8b06e | 2010-04-27 18:33:54 -0400 | [diff] [blame] | 1862 | if (ret < 0) |
Trond Myklebust | 73e3302 | 2008-04-11 16:03:54 -0400 | [diff] [blame] | 1863 | goto out_error; |
Trond Myklebust | 7f2f12d | 2010-02-19 17:03:28 -0800 | [diff] [blame] | 1864 | } |
Trond Myklebust | 73e3302 | 2008-04-11 16:03:54 -0400 | [diff] [blame] | 1865 | out_error: |
Trond Myklebust | f4ce129 | 2013-08-19 18:59:33 -0400 | [diff] [blame] | 1866 | trace_nfs_writeback_page_exit(inode, ret); |
Trond Myklebust | 4d770cc | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 1867 | return ret; |
Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 1868 | } |
| 1869 | |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 1870 | #ifdef CONFIG_MIGRATION |
| 1871 | int nfs_migrate_page(struct address_space *mapping, struct page *newpage, |
Mel Gorman | a6bc32b | 2012-01-12 17:19:43 -0800 | [diff] [blame] | 1872 | struct page *page, enum migrate_mode mode) |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 1873 | { |
Jeff Layton | 2da9565 | 2011-10-12 10:57:42 -0400 | [diff] [blame] | 1874 | /* |
| 1875 | * If PagePrivate is set, then the page is currently associated with |
| 1876 | * an in-progress read or write request. Don't try to migrate it. |
| 1877 | * |
| 1878 | * FIXME: we could do this in principle, but we'll need a way to ensure |
| 1879 | * that we can safely release the inode reference while holding |
| 1880 | * the page lock. |
| 1881 | */ |
| 1882 | if (PagePrivate(page)) |
| 1883 | return -EBUSY; |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 1884 | |
David Howells | 8c209ce | 2012-12-05 13:34:49 +0000 | [diff] [blame] | 1885 | if (!nfs_fscache_release_page(page, GFP_KERNEL)) |
| 1886 | return -EBUSY; |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 1887 | |
Mel Gorman | a6bc32b | 2012-01-12 17:19:43 -0800 | [diff] [blame] | 1888 | return migrate_page(mapping, newpage, page, mode); |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 1889 | } |
| 1890 | #endif |
| 1891 | |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 1892 | int __init nfs_init_writepagecache(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1893 | { |
| 1894 | nfs_wdata_cachep = kmem_cache_create("nfs_write_data", |
Weston Andros Adamson | 1e7f3a4 | 2014-06-09 11:48:33 -0400 | [diff] [blame] | 1895 | sizeof(struct nfs_pgio_header), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1896 | 0, SLAB_HWCACHE_ALIGN, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 1897 | NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1898 | if (nfs_wdata_cachep == NULL) |
| 1899 | return -ENOMEM; |
| 1900 | |
Matthew Dobson | 93d2341 | 2006-03-26 01:37:50 -0800 | [diff] [blame] | 1901 | nfs_wdata_mempool = mempool_create_slab_pool(MIN_POOL_WRITE, |
| 1902 | nfs_wdata_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1903 | if (nfs_wdata_mempool == NULL) |
Jeff Layton | 3dd4765 | 2012-08-02 14:30:56 -0400 | [diff] [blame] | 1904 | goto out_destroy_write_cache; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1905 | |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 1906 | nfs_cdata_cachep = kmem_cache_create("nfs_commit_data", |
| 1907 | sizeof(struct nfs_commit_data), |
| 1908 | 0, SLAB_HWCACHE_ALIGN, |
| 1909 | NULL); |
| 1910 | if (nfs_cdata_cachep == NULL) |
Jeff Layton | 3dd4765 | 2012-08-02 14:30:56 -0400 | [diff] [blame] | 1911 | goto out_destroy_write_mempool; |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 1912 | |
Matthew Dobson | 93d2341 | 2006-03-26 01:37:50 -0800 | [diff] [blame] | 1913 | nfs_commit_mempool = mempool_create_slab_pool(MIN_POOL_COMMIT, |
Yanchuan Nian | 4c10021 | 2012-11-12 09:27:37 +0800 | [diff] [blame] | 1914 | nfs_cdata_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1915 | if (nfs_commit_mempool == NULL) |
Jeff Layton | 3dd4765 | 2012-08-02 14:30:56 -0400 | [diff] [blame] | 1916 | goto out_destroy_commit_cache; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1917 | |
Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 1918 | /* |
| 1919 | * NFS congestion size, scale with available memory. |
| 1920 | * |
| 1921 | * 64MB: 8192k |
| 1922 | * 128MB: 11585k |
| 1923 | * 256MB: 16384k |
| 1924 | * 512MB: 23170k |
| 1925 | * 1GB: 32768k |
| 1926 | * 2GB: 46340k |
| 1927 | * 4GB: 65536k |
| 1928 | * 8GB: 92681k |
| 1929 | * 16GB: 131072k |
| 1930 | * |
| 1931 | * This allows larger machines to have larger/more transfers. |
| 1932 | * Limit the default to 256M |
| 1933 | */ |
| 1934 | nfs_congestion_kb = (16*int_sqrt(totalram_pages)) << (PAGE_SHIFT-10); |
| 1935 | if (nfs_congestion_kb > 256*1024) |
| 1936 | nfs_congestion_kb = 256*1024; |
| 1937 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1938 | return 0; |
Jeff Layton | 3dd4765 | 2012-08-02 14:30:56 -0400 | [diff] [blame] | 1939 | |
| 1940 | out_destroy_commit_cache: |
| 1941 | kmem_cache_destroy(nfs_cdata_cachep); |
| 1942 | out_destroy_write_mempool: |
| 1943 | mempool_destroy(nfs_wdata_mempool); |
| 1944 | out_destroy_write_cache: |
| 1945 | kmem_cache_destroy(nfs_wdata_cachep); |
| 1946 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1947 | } |
| 1948 | |
David Brownell | 266bee8 | 2006-06-27 12:59:15 -0700 | [diff] [blame] | 1949 | void nfs_destroy_writepagecache(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1950 | { |
| 1951 | mempool_destroy(nfs_commit_mempool); |
Jeff Layton | 3dd4765 | 2012-08-02 14:30:56 -0400 | [diff] [blame] | 1952 | kmem_cache_destroy(nfs_cdata_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1953 | mempool_destroy(nfs_wdata_mempool); |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 1954 | kmem_cache_destroy(nfs_wdata_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1955 | } |
| 1956 | |
Anna Schumaker | 4a0de55 | 2014-05-06 09:12:30 -0400 | [diff] [blame] | 1957 | static const struct nfs_rw_ops nfs_rw_write_ops = { |
Anna Schumaker | a4cdda5 | 2014-05-06 09:12:31 -0400 | [diff] [blame] | 1958 | .rw_mode = FMODE_WRITE, |
Anna Schumaker | 4a0de55 | 2014-05-06 09:12:30 -0400 | [diff] [blame] | 1959 | .rw_alloc_header = nfs_writehdr_alloc, |
| 1960 | .rw_free_header = nfs_writehdr_free, |
Anna Schumaker | a4cdda5 | 2014-05-06 09:12:31 -0400 | [diff] [blame] | 1961 | .rw_release = nfs_writeback_release_common, |
Anna Schumaker | 0eecb21 | 2014-05-06 09:12:32 -0400 | [diff] [blame] | 1962 | .rw_done = nfs_writeback_done, |
| 1963 | .rw_result = nfs_writeback_result, |
Anna Schumaker | 1ed26f3 | 2014-05-06 09:12:37 -0400 | [diff] [blame] | 1964 | .rw_initiate = nfs_initiate_write, |
Anna Schumaker | 4a0de55 | 2014-05-06 09:12:30 -0400 | [diff] [blame] | 1965 | }; |