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