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