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