NFS: don't use FLUSH_SYNC on WB_SYNC_NONE COMMIT calls (try #2)
[deliverable/linux.git] / fs / nfs / write.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/nfs/write.c
3 *
7c85d900 4 * Write file data over NFS.
1da177e4
LT
5 *
6 * Copyright (C) 1996, 1997, Olaf Kirch <okir@monad.swb.de>
7 */
8
1da177e4
LT
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>
1da177e4 14#include <linux/writeback.h>
89a09141 15#include <linux/swap.h>
074cc1de 16#include <linux/migrate.h>
1da177e4
LT
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>
3fcfab16
AM
22#include <linux/backing-dev.h>
23
1da177e4 24#include <asm/uaccess.h>
1da177e4
LT
25
26#include "delegation.h"
49a70f27 27#include "internal.h"
91d5b470 28#include "iostat.h"
def6ed7e 29#include "nfs4_fs.h"
074cc1de 30#include "fscache.h"
1da177e4
LT
31
32#define NFSDBG_FACILITY NFSDBG_PAGECACHE
33
34#define MIN_POOL_WRITE (32)
35#define MIN_POOL_COMMIT (4)
36
37/*
38 * Local function declarations
39 */
c63c7b05
TM
40static void nfs_pageio_init_write(struct nfs_pageio_descriptor *desc,
41 struct inode *inode, int ioflags);
f8512ad0 42static void nfs_redirty_request(struct nfs_page *req);
788e7a89
TM
43static const struct rpc_call_ops nfs_write_partial_ops;
44static const struct rpc_call_ops nfs_write_full_ops;
45static const struct rpc_call_ops nfs_commit_ops;
1da177e4 46
e18b890b 47static struct kmem_cache *nfs_wdata_cachep;
3feb2d49 48static mempool_t *nfs_wdata_mempool;
1da177e4
LT
49static mempool_t *nfs_commit_mempool;
50
c9d8f89d 51struct nfs_write_data *nfs_commitdata_alloc(void)
1da177e4 52{
e6b4f8da 53 struct nfs_write_data *p = mempool_alloc(nfs_commit_mempool, GFP_NOFS);
40859d7e 54
1da177e4
LT
55 if (p) {
56 memset(p, 0, sizeof(*p));
57 INIT_LIST_HEAD(&p->pages);
58 }
59 return p;
60}
61
5e4424af 62void nfs_commit_free(struct nfs_write_data *p)
1da177e4 63{
40859d7e
CL
64 if (p && (p->pagevec != &p->page_array[0]))
65 kfree(p->pagevec);
1da177e4
LT
66 mempool_free(p, nfs_commit_mempool);
67}
68
8d5658c9 69struct nfs_write_data *nfs_writedata_alloc(unsigned int pagecount)
3feb2d49 70{
e6b4f8da 71 struct nfs_write_data *p = mempool_alloc(nfs_wdata_mempool, GFP_NOFS);
3feb2d49
TM
72
73 if (p) {
74 memset(p, 0, sizeof(*p));
75 INIT_LIST_HEAD(&p->pages);
e9f7bee1 76 p->npages = pagecount;
0d0b5cb3
CL
77 if (pagecount <= ARRAY_SIZE(p->page_array))
78 p->pagevec = p->page_array;
3feb2d49 79 else {
0d0b5cb3
CL
80 p->pagevec = kcalloc(pagecount, sizeof(struct page *), GFP_NOFS);
81 if (!p->pagevec) {
3feb2d49
TM
82 mempool_free(p, nfs_wdata_mempool);
83 p = NULL;
84 }
85 }
86 }
87 return p;
88}
89
1ae88b2e 90void nfs_writedata_free(struct nfs_write_data *p)
3feb2d49
TM
91{
92 if (p && (p->pagevec != &p->page_array[0]))
93 kfree(p->pagevec);
94 mempool_free(p, nfs_wdata_mempool);
95}
96
1ae88b2e 97static void nfs_writedata_release(struct nfs_write_data *wdata)
1da177e4 98{
383ba719 99 put_nfs_open_context(wdata->args.context);
1da177e4
LT
100 nfs_writedata_free(wdata);
101}
102
7b159fc1
TM
103static void nfs_context_set_write_error(struct nfs_open_context *ctx, int error)
104{
105 ctx->error = error;
106 smp_wmb();
107 set_bit(NFS_CONTEXT_ERROR_WRITE, &ctx->flags);
108}
109
277459d2
TM
110static struct nfs_page *nfs_page_find_request_locked(struct page *page)
111{
112 struct nfs_page *req = NULL;
113
114 if (PagePrivate(page)) {
115 req = (struct nfs_page *)page_private(page);
116 if (req != NULL)
c03b4024 117 kref_get(&req->wb_kref);
277459d2
TM
118 }
119 return req;
120}
121
122static struct nfs_page *nfs_page_find_request(struct page *page)
123{
587142f8 124 struct inode *inode = page->mapping->host;
277459d2 125 struct nfs_page *req = NULL;
277459d2 126
587142f8 127 spin_lock(&inode->i_lock);
277459d2 128 req = nfs_page_find_request_locked(page);
587142f8 129 spin_unlock(&inode->i_lock);
277459d2
TM
130 return req;
131}
132
1da177e4
LT
133/* Adjust the file length if we're writing beyond the end */
134static void nfs_grow_file(struct page *page, unsigned int offset, unsigned int count)
135{
136 struct inode *inode = page->mapping->host;
a3d01454
TM
137 loff_t end, i_size;
138 pgoff_t end_index;
1da177e4 139
a3d01454
TM
140 spin_lock(&inode->i_lock);
141 i_size = i_size_read(inode);
142 end_index = (i_size - 1) >> PAGE_CACHE_SHIFT;
1da177e4 143 if (i_size > 0 && page->index < end_index)
a3d01454 144 goto out;
1da177e4
LT
145 end = ((loff_t)page->index << PAGE_CACHE_SHIFT) + ((loff_t)offset+count);
146 if (i_size >= end)
a3d01454 147 goto out;
1da177e4 148 i_size_write(inode, end);
a3d01454
TM
149 nfs_inc_stats(inode, NFSIOS_EXTENDWRITE);
150out:
151 spin_unlock(&inode->i_lock);
1da177e4
LT
152}
153
a301b777
TM
154/* A writeback failed: mark the page as bad, and invalidate the page cache */
155static void nfs_set_pageerror(struct page *page)
156{
157 SetPageError(page);
158 nfs_zap_mapping(page->mapping->host, page->mapping);
159}
160
1da177e4
LT
161/* We can set the PG_uptodate flag if we see that a write request
162 * covers the full page.
163 */
164static void nfs_mark_uptodate(struct page *page, unsigned int base, unsigned int count)
165{
1da177e4
LT
166 if (PageUptodate(page))
167 return;
168 if (base != 0)
169 return;
49a70f27 170 if (count != nfs_page_length(page))
1da177e4 171 return;
49a70f27 172 SetPageUptodate(page);
1da177e4
LT
173}
174
1da177e4
LT
175static int wb_priority(struct writeback_control *wbc)
176{
177 if (wbc->for_reclaim)
c63c7b05 178 return FLUSH_HIGHPRI | FLUSH_STABLE;
b17621fe 179 if (wbc->for_kupdate || wbc->for_background)
1da177e4
LT
180 return FLUSH_LOWPRI;
181 return 0;
182}
183
89a09141
PZ
184/*
185 * NFS congestion control
186 */
187
188int nfs_congestion_kb;
189
190#define NFS_CONGESTION_ON_THRESH (nfs_congestion_kb >> (PAGE_SHIFT-10))
191#define NFS_CONGESTION_OFF_THRESH \
192 (NFS_CONGESTION_ON_THRESH - (NFS_CONGESTION_ON_THRESH >> 2))
193
5a6d41b3 194static int nfs_set_page_writeback(struct page *page)
89a09141 195{
5a6d41b3
TM
196 int ret = test_set_page_writeback(page);
197
198 if (!ret) {
89a09141
PZ
199 struct inode *inode = page->mapping->host;
200 struct nfs_server *nfss = NFS_SERVER(inode);
201
a6305ddb 202 page_cache_get(page);
277866a0 203 if (atomic_long_inc_return(&nfss->writeback) >
8aa7e847
JA
204 NFS_CONGESTION_ON_THRESH) {
205 set_bdi_congested(&nfss->backing_dev_info,
206 BLK_RW_ASYNC);
207 }
89a09141 208 }
5a6d41b3 209 return ret;
89a09141
PZ
210}
211
212static void nfs_end_page_writeback(struct page *page)
213{
214 struct inode *inode = page->mapping->host;
215 struct nfs_server *nfss = NFS_SERVER(inode);
216
217 end_page_writeback(page);
a6305ddb 218 page_cache_release(page);
c4dc4bee 219 if (atomic_long_dec_return(&nfss->writeback) < NFS_CONGESTION_OFF_THRESH)
8aa7e847 220 clear_bdi_congested(&nfss->backing_dev_info, BLK_RW_ASYNC);
89a09141
PZ
221}
222
cfb506e1 223static struct nfs_page *nfs_find_and_lock_request(struct page *page, bool nonblock)
e261f51f 224{
587142f8 225 struct inode *inode = page->mapping->host;
e261f51f 226 struct nfs_page *req;
e261f51f
TM
227 int ret;
228
587142f8 229 spin_lock(&inode->i_lock);
074cc1de 230 for (;;) {
e261f51f 231 req = nfs_page_find_request_locked(page);
074cc1de
TM
232 if (req == NULL)
233 break;
acee478a 234 if (nfs_set_page_tag_locked(req))
e261f51f
TM
235 break;
236 /* Note: If we hold the page lock, as is the case in nfs_writepage,
acee478a 237 * then the call to nfs_set_page_tag_locked() will always
e261f51f
TM
238 * succeed provided that someone hasn't already marked the
239 * request as dirty (in which case we don't care).
240 */
587142f8 241 spin_unlock(&inode->i_lock);
cfb506e1
TM
242 if (!nonblock)
243 ret = nfs_wait_on_request(req);
244 else
245 ret = -EAGAIN;
e261f51f
TM
246 nfs_release_request(req);
247 if (ret != 0)
074cc1de 248 return ERR_PTR(ret);
587142f8 249 spin_lock(&inode->i_lock);
e261f51f 250 }
587142f8 251 spin_unlock(&inode->i_lock);
074cc1de
TM
252 return req;
253}
254
255/*
256 * Find an associated nfs write request, and prepare to flush it out
257 * May return an error if the user signalled nfs_wait_on_request().
258 */
259static int nfs_page_async_flush(struct nfs_pageio_descriptor *pgio,
cfb506e1 260 struct page *page, bool nonblock)
074cc1de
TM
261{
262 struct nfs_page *req;
263 int ret = 0;
264
cfb506e1 265 req = nfs_find_and_lock_request(page, nonblock);
074cc1de
TM
266 if (!req)
267 goto out;
268 ret = PTR_ERR(req);
269 if (IS_ERR(req))
270 goto out;
271
272 ret = nfs_set_page_writeback(page);
273 BUG_ON(ret != 0);
274 BUG_ON(test_bit(PG_CLEAN, &req->wb_flags));
275
f8512ad0
FI
276 if (!nfs_pageio_add_request(pgio, req)) {
277 nfs_redirty_request(req);
074cc1de 278 ret = pgio->pg_error;
f8512ad0 279 }
074cc1de
TM
280out:
281 return ret;
e261f51f
TM
282}
283
f758c885 284static int nfs_do_writepage(struct page *page, struct writeback_control *wbc, struct nfs_pageio_descriptor *pgio)
1da177e4 285{
1da177e4 286 struct inode *inode = page->mapping->host;
cfb506e1 287 int ret;
1da177e4 288
91d5b470
CL
289 nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGE);
290 nfs_add_stats(inode, NFSIOS_WRITEPAGES, 1);
291
7fe7f848 292 nfs_pageio_cond_complete(pgio, page->index);
cfb506e1
TM
293 ret = nfs_page_async_flush(pgio, page,
294 wbc->sync_mode == WB_SYNC_NONE ||
295 wbc->nonblocking != 0);
296 if (ret == -EAGAIN) {
297 redirty_page_for_writepage(wbc, page);
298 ret = 0;
299 }
300 return ret;
f758c885 301}
7fe7f848 302
f758c885
TM
303/*
304 * Write an mmapped page to the server.
305 */
306static int nfs_writepage_locked(struct page *page, struct writeback_control *wbc)
307{
308 struct nfs_pageio_descriptor pgio;
309 int err;
49a70f27 310
f758c885
TM
311 nfs_pageio_init_write(&pgio, page->mapping->host, wb_priority(wbc));
312 err = nfs_do_writepage(page, wbc, &pgio);
313 nfs_pageio_complete(&pgio);
314 if (err < 0)
315 return err;
316 if (pgio.pg_error < 0)
317 return pgio.pg_error;
318 return 0;
4d770ccf
TM
319}
320
321int nfs_writepage(struct page *page, struct writeback_control *wbc)
322{
f758c885 323 int ret;
4d770ccf 324
f758c885 325 ret = nfs_writepage_locked(page, wbc);
1da177e4 326 unlock_page(page);
f758c885
TM
327 return ret;
328}
329
330static int nfs_writepages_callback(struct page *page, struct writeback_control *wbc, void *data)
331{
332 int ret;
333
334 ret = nfs_do_writepage(page, wbc, data);
335 unlock_page(page);
336 return ret;
1da177e4
LT
337}
338
1da177e4
LT
339int nfs_writepages(struct address_space *mapping, struct writeback_control *wbc)
340{
1da177e4 341 struct inode *inode = mapping->host;
72cb77f4 342 unsigned long *bitlock = &NFS_I(inode)->flags;
c63c7b05 343 struct nfs_pageio_descriptor pgio;
1da177e4
LT
344 int err;
345
72cb77f4
TM
346 /* Stop dirtying of new pages while we sync */
347 err = wait_on_bit_lock(bitlock, NFS_INO_FLUSHING,
348 nfs_wait_bit_killable, TASK_KILLABLE);
349 if (err)
350 goto out_err;
351
91d5b470
CL
352 nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGES);
353
c63c7b05 354 nfs_pageio_init_write(&pgio, inode, wb_priority(wbc));
f758c885 355 err = write_cache_pages(mapping, wbc, nfs_writepages_callback, &pgio);
c63c7b05 356 nfs_pageio_complete(&pgio);
72cb77f4
TM
357
358 clear_bit_unlock(NFS_INO_FLUSHING, bitlock);
359 smp_mb__after_clear_bit();
360 wake_up_bit(bitlock, NFS_INO_FLUSHING);
361
f758c885 362 if (err < 0)
72cb77f4
TM
363 goto out_err;
364 err = pgio.pg_error;
365 if (err < 0)
366 goto out_err;
c63c7b05 367 return 0;
72cb77f4
TM
368out_err:
369 return err;
1da177e4
LT
370}
371
372/*
373 * Insert a write request into an inode
374 */
e7d39069 375static int nfs_inode_add_request(struct inode *inode, struct nfs_page *req)
1da177e4
LT
376{
377 struct nfs_inode *nfsi = NFS_I(inode);
378 int error;
379
e7d39069
TM
380 error = radix_tree_preload(GFP_NOFS);
381 if (error != 0)
382 goto out;
383
384 /* Lock the request! */
385 nfs_lock_request_dontget(req);
386
387 spin_lock(&inode->i_lock);
1da177e4 388 error = radix_tree_insert(&nfsi->nfs_page_tree, req->wb_index, req);
27852596 389 BUG_ON(error);
1da177e4
LT
390 if (!nfsi->npages) {
391 igrab(inode);
1da177e4
LT
392 if (nfs_have_delegation(inode, FMODE_WRITE))
393 nfsi->change_attr++;
394 }
deb7d638 395 SetPagePrivate(req->wb_page);
277459d2 396 set_page_private(req->wb_page, (unsigned long)req);
1da177e4 397 nfsi->npages++;
c03b4024 398 kref_get(&req->wb_kref);
27852596
NP
399 radix_tree_tag_set(&nfsi->nfs_page_tree, req->wb_index,
400 NFS_PAGE_TAG_LOCKED);
e7d39069
TM
401 spin_unlock(&inode->i_lock);
402 radix_tree_preload_end();
403out:
404 return error;
1da177e4
LT
405}
406
407/*
89a09141 408 * Remove a write request from an inode
1da177e4
LT
409 */
410static void nfs_inode_remove_request(struct nfs_page *req)
411{
88be9f99 412 struct inode *inode = req->wb_context->path.dentry->d_inode;
1da177e4
LT
413 struct nfs_inode *nfsi = NFS_I(inode);
414
415 BUG_ON (!NFS_WBACK_BUSY(req));
416
587142f8 417 spin_lock(&inode->i_lock);
277459d2 418 set_page_private(req->wb_page, 0);
deb7d638 419 ClearPagePrivate(req->wb_page);
1da177e4
LT
420 radix_tree_delete(&nfsi->nfs_page_tree, req->wb_index);
421 nfsi->npages--;
422 if (!nfsi->npages) {
587142f8 423 spin_unlock(&inode->i_lock);
1da177e4
LT
424 iput(inode);
425 } else
587142f8 426 spin_unlock(&inode->i_lock);
1da177e4
LT
427 nfs_clear_request(req);
428 nfs_release_request(req);
429}
430
61822ab5 431static void
6d884e8f 432nfs_mark_request_dirty(struct nfs_page *req)
61822ab5 433{
61822ab5 434 __set_page_dirty_nobuffers(req->wb_page);
b80c3cb6 435 __mark_inode_dirty(req->wb_page->mapping->host, I_DIRTY_DATASYNC);
61822ab5
TM
436}
437
1da177e4
LT
438#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
439/*
440 * Add a request to the inode's commit list.
441 */
442static void
443nfs_mark_request_commit(struct nfs_page *req)
444{
88be9f99 445 struct inode *inode = req->wb_context->path.dentry->d_inode;
1da177e4
LT
446 struct nfs_inode *nfsi = NFS_I(inode);
447
587142f8 448 spin_lock(&inode->i_lock);
e468bae9 449 set_bit(PG_CLEAN, &(req)->wb_flags);
5c369683
TM
450 radix_tree_tag_set(&nfsi->nfs_page_tree,
451 req->wb_index,
452 NFS_PAGE_TAG_COMMIT);
ff778d02 453 nfsi->ncommit++;
587142f8 454 spin_unlock(&inode->i_lock);
fd39fc85 455 inc_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
c9e51e41 456 inc_bdi_stat(req->wb_page->mapping->backing_dev_info, BDI_RECLAIMABLE);
a1803044 457 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
1da177e4 458}
8e821cad 459
e468bae9
TM
460static int
461nfs_clear_request_commit(struct nfs_page *req)
462{
463 struct page *page = req->wb_page;
464
465 if (test_and_clear_bit(PG_CLEAN, &(req)->wb_flags)) {
466 dec_zone_page_state(page, NR_UNSTABLE_NFS);
467 dec_bdi_stat(page->mapping->backing_dev_info, BDI_RECLAIMABLE);
468 return 1;
469 }
470 return 0;
471}
472
8e821cad
TM
473static inline
474int nfs_write_need_commit(struct nfs_write_data *data)
475{
476 return data->verf.committed != NFS_FILE_SYNC;
477}
478
479static inline
480int nfs_reschedule_unstable_write(struct nfs_page *req)
481{
e468bae9 482 if (test_and_clear_bit(PG_NEED_COMMIT, &req->wb_flags)) {
8e821cad
TM
483 nfs_mark_request_commit(req);
484 return 1;
485 }
486 if (test_and_clear_bit(PG_NEED_RESCHED, &req->wb_flags)) {
6d884e8f 487 nfs_mark_request_dirty(req);
8e821cad
TM
488 return 1;
489 }
490 return 0;
491}
492#else
493static inline void
494nfs_mark_request_commit(struct nfs_page *req)
495{
496}
497
e468bae9
TM
498static inline int
499nfs_clear_request_commit(struct nfs_page *req)
500{
501 return 0;
502}
503
8e821cad
TM
504static inline
505int nfs_write_need_commit(struct nfs_write_data *data)
506{
507 return 0;
508}
509
510static inline
511int nfs_reschedule_unstable_write(struct nfs_page *req)
512{
513 return 0;
514}
1da177e4
LT
515#endif
516
47c62564 517#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
fb8a1f11
TM
518static int
519nfs_need_commit(struct nfs_inode *nfsi)
520{
521 return radix_tree_tagged(&nfsi->nfs_page_tree, NFS_PAGE_TAG_COMMIT);
522}
523
1da177e4
LT
524/*
525 * nfs_scan_commit - Scan an inode for commit requests
526 * @inode: NFS inode to scan
527 * @dst: destination list
528 * @idx_start: lower bound of page->index to scan.
529 * @npages: idx_start + npages sets the upper bound to scan.
530 *
531 * Moves requests from the inode's 'commit' request list.
532 * The requests are *not* checked to ensure that they form a contiguous set.
533 */
534static int
ca52fec1 535nfs_scan_commit(struct inode *inode, struct list_head *dst, pgoff_t idx_start, unsigned int npages)
1da177e4
LT
536{
537 struct nfs_inode *nfsi = NFS_I(inode);
ff778d02 538 int ret;
3da28eb1 539
fb8a1f11
TM
540 if (!nfs_need_commit(nfsi))
541 return 0;
542
ff778d02
TM
543 ret = nfs_scan_list(nfsi, dst, idx_start, npages, NFS_PAGE_TAG_COMMIT);
544 if (ret > 0)
545 nfsi->ncommit -= ret;
2928db1f
TM
546 if (nfs_need_commit(NFS_I(inode)))
547 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
ff778d02 548 return ret;
1da177e4 549}
c42de9dd 550#else
fb8a1f11
TM
551static inline int nfs_need_commit(struct nfs_inode *nfsi)
552{
553 return 0;
554}
555
ca52fec1 556static inline int nfs_scan_commit(struct inode *inode, struct list_head *dst, pgoff_t idx_start, unsigned int npages)
c42de9dd
TM
557{
558 return 0;
559}
1da177e4
LT
560#endif
561
1da177e4 562/*
e7d39069
TM
563 * Search for an existing write request, and attempt to update
564 * it to reflect a new dirty region on a given page.
1da177e4 565 *
e7d39069
TM
566 * If the attempt fails, then the existing request is flushed out
567 * to disk.
1da177e4 568 */
e7d39069
TM
569static struct nfs_page *nfs_try_to_update_request(struct inode *inode,
570 struct page *page,
571 unsigned int offset,
572 unsigned int bytes)
1da177e4 573{
e7d39069
TM
574 struct nfs_page *req;
575 unsigned int rqend;
576 unsigned int end;
577 int error;
578
579 if (!PagePrivate(page))
580 return NULL;
1da177e4
LT
581
582 end = offset + bytes;
e7d39069 583 spin_lock(&inode->i_lock);
1da177e4 584
1da177e4 585 for (;;) {
277459d2 586 req = nfs_page_find_request_locked(page);
e7d39069
TM
587 if (req == NULL)
588 goto out_unlock;
589
590 rqend = req->wb_offset + req->wb_bytes;
591 /*
592 * Tell the caller to flush out the request if
593 * the offsets are non-contiguous.
594 * Note: nfs_flush_incompatible() will already
595 * have flushed out requests having wrong owners.
596 */
e468bae9 597 if (offset > rqend
e7d39069
TM
598 || end < req->wb_offset)
599 goto out_flushme;
600
601 if (nfs_set_page_tag_locked(req))
1da177e4 602 break;
1da177e4 603
e7d39069 604 /* The request is locked, so wait and then retry */
587142f8 605 spin_unlock(&inode->i_lock);
e7d39069
TM
606 error = nfs_wait_on_request(req);
607 nfs_release_request(req);
608 if (error != 0)
609 goto out_err;
610 spin_lock(&inode->i_lock);
1da177e4
LT
611 }
612
ff778d02
TM
613 if (nfs_clear_request_commit(req) &&
614 radix_tree_tag_clear(&NFS_I(inode)->nfs_page_tree,
615 req->wb_index, NFS_PAGE_TAG_COMMIT) != NULL)
616 NFS_I(inode)->ncommit--;
e468bae9 617
1da177e4
LT
618 /* Okay, the request matches. Update the region */
619 if (offset < req->wb_offset) {
620 req->wb_offset = offset;
621 req->wb_pgbase = offset;
1da177e4 622 }
1da177e4
LT
623 if (end > rqend)
624 req->wb_bytes = end - req->wb_offset;
e7d39069
TM
625 else
626 req->wb_bytes = rqend - req->wb_offset;
627out_unlock:
628 spin_unlock(&inode->i_lock);
629 return req;
630out_flushme:
631 spin_unlock(&inode->i_lock);
632 nfs_release_request(req);
633 error = nfs_wb_page(inode, page);
634out_err:
635 return ERR_PTR(error);
636}
637
638/*
639 * Try to update an existing write request, or create one if there is none.
640 *
641 * Note: Should always be called with the Page Lock held to prevent races
642 * if we have to add a new request. Also assumes that the caller has
643 * already called nfs_flush_incompatible() if necessary.
644 */
645static struct nfs_page * nfs_setup_write_request(struct nfs_open_context* ctx,
646 struct page *page, unsigned int offset, unsigned int bytes)
647{
648 struct inode *inode = page->mapping->host;
649 struct nfs_page *req;
650 int error;
1da177e4 651
e7d39069
TM
652 req = nfs_try_to_update_request(inode, page, offset, bytes);
653 if (req != NULL)
654 goto out;
655 req = nfs_create_request(ctx, inode, page, offset, bytes);
656 if (IS_ERR(req))
657 goto out;
658 error = nfs_inode_add_request(inode, req);
659 if (error != 0) {
660 nfs_release_request(req);
661 req = ERR_PTR(error);
662 }
efc91ed0 663out:
61e930a9 664 return req;
1da177e4
LT
665}
666
e7d39069
TM
667static int nfs_writepage_setup(struct nfs_open_context *ctx, struct page *page,
668 unsigned int offset, unsigned int count)
669{
670 struct nfs_page *req;
671
672 req = nfs_setup_write_request(ctx, page, offset, count);
673 if (IS_ERR(req))
674 return PTR_ERR(req);
b80c3cb6 675 nfs_mark_request_dirty(req);
e7d39069
TM
676 /* Update file length */
677 nfs_grow_file(page, offset, count);
678 nfs_mark_uptodate(page, req->wb_pgbase, req->wb_bytes);
a6305ddb 679 nfs_mark_request_dirty(req);
e7d39069
TM
680 nfs_clear_page_tag_locked(req);
681 return 0;
682}
683
1da177e4
LT
684int nfs_flush_incompatible(struct file *file, struct page *page)
685{
cd3758e3 686 struct nfs_open_context *ctx = nfs_file_open_context(file);
1da177e4 687 struct nfs_page *req;
1a54533e 688 int do_flush, status;
1da177e4
LT
689 /*
690 * Look for a request corresponding to this page. If there
691 * is one, and it belongs to another file, we flush it out
692 * before we try to copy anything into the page. Do this
693 * due to the lack of an ACCESS-type call in NFSv2.
694 * Also do the same if we find a request from an existing
695 * dropped page.
696 */
1a54533e
TM
697 do {
698 req = nfs_page_find_request(page);
699 if (req == NULL)
700 return 0;
f11ac8db
TM
701 do_flush = req->wb_page != page || req->wb_context != ctx ||
702 req->wb_lock_context->lockowner != current->files ||
703 req->wb_lock_context->pid != current->tgid;
1da177e4 704 nfs_release_request(req);
1a54533e
TM
705 if (!do_flush)
706 return 0;
707 status = nfs_wb_page(page->mapping->host, page);
708 } while (status == 0);
709 return status;
1da177e4
LT
710}
711
5d47a356
TM
712/*
713 * If the page cache is marked as unsafe or invalid, then we can't rely on
714 * the PageUptodate() flag. In this case, we will need to turn off
715 * write optimisations that depend on the page contents being correct.
716 */
717static int nfs_write_pageuptodate(struct page *page, struct inode *inode)
718{
719 return PageUptodate(page) &&
720 !(NFS_I(inode)->cache_validity & (NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA));
721}
722
1da177e4
LT
723/*
724 * Update and possibly write a cached page of an NFS file.
725 *
726 * XXX: Keep an eye on generic_file_read to make sure it doesn't do bad
727 * things with a page scheduled for an RPC call (e.g. invalidate it).
728 */
729int nfs_updatepage(struct file *file, struct page *page,
730 unsigned int offset, unsigned int count)
731{
cd3758e3 732 struct nfs_open_context *ctx = nfs_file_open_context(file);
1da177e4 733 struct inode *inode = page->mapping->host;
1da177e4
LT
734 int status = 0;
735
91d5b470
CL
736 nfs_inc_stats(inode, NFSIOS_VFSUPDATEPAGE);
737
48186c7d 738 dprintk("NFS: nfs_updatepage(%s/%s %d@%lld)\n",
01cce933
JJS
739 file->f_path.dentry->d_parent->d_name.name,
740 file->f_path.dentry->d_name.name, count,
48186c7d 741 (long long)(page_offset(page) + offset));
1da177e4 742
1da177e4 743 /* If we're not using byte range locks, and we know the page
5d47a356
TM
744 * is up to date, it may be more efficient to extend the write
745 * to cover the entire page in order to avoid fragmentation
746 * inefficiencies.
1da177e4 747 */
5d47a356
TM
748 if (nfs_write_pageuptodate(page, inode) &&
749 inode->i_flock == NULL &&
6b2f3d1f 750 !(file->f_flags & O_DSYNC)) {
49a70f27 751 count = max(count + offset, nfs_page_length(page));
1da177e4 752 offset = 0;
1da177e4
LT
753 }
754
e21195a7 755 status = nfs_writepage_setup(ctx, page, offset, count);
03fa9e84
TM
756 if (status < 0)
757 nfs_set_pageerror(page);
1da177e4 758
48186c7d 759 dprintk("NFS: nfs_updatepage returns %d (isize %lld)\n",
1da177e4 760 status, (long long)i_size_read(inode));
1da177e4
LT
761 return status;
762}
763
764static void nfs_writepage_release(struct nfs_page *req)
765{
a6305ddb 766 struct page *page = req->wb_page;
1da177e4 767
a6305ddb 768 if (PageError(req->wb_page) || !nfs_reschedule_unstable_write(req))
8e821cad 769 nfs_inode_remove_request(req);
9fd367f0 770 nfs_clear_page_tag_locked(req);
a6305ddb 771 nfs_end_page_writeback(page);
1da177e4
LT
772}
773
3ff7576d 774static int flush_task_priority(int how)
1da177e4
LT
775{
776 switch (how & (FLUSH_HIGHPRI|FLUSH_LOWPRI)) {
777 case FLUSH_HIGHPRI:
778 return RPC_PRIORITY_HIGH;
779 case FLUSH_LOWPRI:
780 return RPC_PRIORITY_LOW;
781 }
782 return RPC_PRIORITY_NORMAL;
783}
784
785/*
786 * Set up the argument/result storage required for the RPC call.
787 */
dbae4c73 788static int nfs_write_rpcsetup(struct nfs_page *req,
1da177e4 789 struct nfs_write_data *data,
788e7a89 790 const struct rpc_call_ops *call_ops,
1da177e4
LT
791 unsigned int count, unsigned int offset,
792 int how)
793{
84115e1c 794 struct inode *inode = req->wb_context->path.dentry->d_inode;
3ff7576d 795 int priority = flush_task_priority(how);
07737691 796 struct rpc_task *task;
bdc7f021
TM
797 struct rpc_message msg = {
798 .rpc_argp = &data->args,
799 .rpc_resp = &data->res,
800 .rpc_cred = req->wb_context->cred,
801 };
84115e1c
TM
802 struct rpc_task_setup task_setup_data = {
803 .rpc_client = NFS_CLIENT(inode),
07737691 804 .task = &data->task,
bdc7f021 805 .rpc_message = &msg,
84115e1c
TM
806 .callback_ops = call_ops,
807 .callback_data = data,
101070ca 808 .workqueue = nfsiod_workqueue,
2c61be0a 809 .flags = RPC_TASK_ASYNC,
3ff7576d 810 .priority = priority,
84115e1c 811 };
2c61be0a 812 int ret = 0;
1da177e4
LT
813
814 /* Set up the RPC argument and reply structs
815 * NB: take care not to mess about with data->commit et al. */
816
817 data->req = req;
88be9f99 818 data->inode = inode = req->wb_context->path.dentry->d_inode;
bdc7f021 819 data->cred = msg.rpc_cred;
1da177e4
LT
820
821 data->args.fh = NFS_FH(inode);
822 data->args.offset = req_offset(req) + offset;
823 data->args.pgbase = req->wb_pgbase + offset;
824 data->args.pages = data->pagevec;
825 data->args.count = count;
383ba719 826 data->args.context = get_nfs_open_context(req->wb_context);
f11ac8db 827 data->args.lock_context = req->wb_lock_context;
bdc7f021
TM
828 data->args.stable = NFS_UNSTABLE;
829 if (how & FLUSH_STABLE) {
830 data->args.stable = NFS_DATA_SYNC;
fb8a1f11 831 if (!nfs_need_commit(NFS_I(inode)))
bdc7f021
TM
832 data->args.stable = NFS_FILE_SYNC;
833 }
1da177e4
LT
834
835 data->res.fattr = &data->fattr;
836 data->res.count = count;
837 data->res.verf = &data->verf;
0e574af1 838 nfs_fattr_init(&data->fattr);
1da177e4 839
788e7a89 840 /* Set up the initial task struct. */
bdc7f021 841 NFS_PROTO(inode)->write_setup(data, &msg);
1da177e4 842
a3f565b1 843 dprintk("NFS: %5u initiated write call "
48186c7d 844 "(req %s/%lld, %u bytes @ offset %llu)\n",
0bbacc40 845 data->task.tk_pid,
1da177e4
LT
846 inode->i_sb->s_id,
847 (long long)NFS_FILEID(inode),
848 count,
849 (unsigned long long)data->args.offset);
1da177e4 850
07737691 851 task = rpc_run_task(&task_setup_data);
2c61be0a
TM
852 if (IS_ERR(task)) {
853 ret = PTR_ERR(task);
854 goto out;
855 }
856 if (how & FLUSH_SYNC) {
857 ret = rpc_wait_for_completion_task(task);
858 if (ret == 0)
859 ret = task->tk_status;
860 }
dbae4c73 861 rpc_put_task(task);
2c61be0a
TM
862out:
863 return ret;
1da177e4
LT
864}
865
6d884e8f
F
866/* If a nfs_flush_* function fails, it should remove reqs from @head and
867 * call this on each, which will prepare them to be retried on next
868 * writeback using standard nfs.
869 */
870static void nfs_redirty_request(struct nfs_page *req)
871{
a6305ddb
TM
872 struct page *page = req->wb_page;
873
6d884e8f 874 nfs_mark_request_dirty(req);
6d884e8f 875 nfs_clear_page_tag_locked(req);
a6305ddb 876 nfs_end_page_writeback(page);
6d884e8f
F
877}
878
1da177e4
LT
879/*
880 * Generate multiple small requests to write out a single
881 * contiguous dirty area on one page.
882 */
8d5658c9 883static int nfs_flush_multi(struct inode *inode, struct list_head *head, unsigned int npages, size_t count, int how)
1da177e4
LT
884{
885 struct nfs_page *req = nfs_list_entry(head->next);
886 struct page *page = req->wb_page;
887 struct nfs_write_data *data;
e9f7bee1
TM
888 size_t wsize = NFS_SERVER(inode)->wsize, nbytes;
889 unsigned int offset;
1da177e4 890 int requests = 0;
dbae4c73 891 int ret = 0;
1da177e4
LT
892 LIST_HEAD(list);
893
894 nfs_list_remove_request(req);
895
bcb71bba 896 nbytes = count;
e9f7bee1
TM
897 do {
898 size_t len = min(nbytes, wsize);
899
8d5658c9 900 data = nfs_writedata_alloc(1);
1da177e4
LT
901 if (!data)
902 goto out_bad;
903 list_add(&data->pages, &list);
904 requests++;
e9f7bee1
TM
905 nbytes -= len;
906 } while (nbytes != 0);
1da177e4
LT
907 atomic_set(&req->wb_complete, requests);
908
909 ClearPageError(page);
1da177e4 910 offset = 0;
bcb71bba 911 nbytes = count;
1da177e4 912 do {
dbae4c73
TM
913 int ret2;
914
1da177e4
LT
915 data = list_entry(list.next, struct nfs_write_data, pages);
916 list_del_init(&data->pages);
917
918 data->pagevec[0] = page;
1da177e4 919
bcb71bba
TM
920 if (nbytes < wsize)
921 wsize = nbytes;
dbae4c73 922 ret2 = nfs_write_rpcsetup(req, data, &nfs_write_partial_ops,
bcb71bba 923 wsize, offset, how);
dbae4c73
TM
924 if (ret == 0)
925 ret = ret2;
bcb71bba
TM
926 offset += wsize;
927 nbytes -= wsize;
1da177e4
LT
928 } while (nbytes != 0);
929
dbae4c73 930 return ret;
1da177e4
LT
931
932out_bad:
933 while (!list_empty(&list)) {
934 data = list_entry(list.next, struct nfs_write_data, pages);
935 list_del(&data->pages);
8aca67f0 936 nfs_writedata_release(data);
1da177e4 937 }
61822ab5 938 nfs_redirty_request(req);
1da177e4
LT
939 return -ENOMEM;
940}
941
942/*
943 * Create an RPC task for the given write request and kick it.
944 * The page must have been locked by the caller.
945 *
946 * It may happen that the page we're passed is not marked dirty.
947 * This is the case if nfs_updatepage detects a conflicting request
948 * that has been written but not committed.
949 */
8d5658c9 950static int nfs_flush_one(struct inode *inode, struct list_head *head, unsigned int npages, size_t count, int how)
1da177e4
LT
951{
952 struct nfs_page *req;
953 struct page **pages;
954 struct nfs_write_data *data;
1da177e4 955
8d5658c9 956 data = nfs_writedata_alloc(npages);
1da177e4
LT
957 if (!data)
958 goto out_bad;
959
960 pages = data->pagevec;
1da177e4
LT
961 while (!list_empty(head)) {
962 req = nfs_list_entry(head->next);
963 nfs_list_remove_request(req);
964 nfs_list_add_request(req, &data->pages);
965 ClearPageError(req->wb_page);
1da177e4 966 *pages++ = req->wb_page;
1da177e4
LT
967 }
968 req = nfs_list_entry(data->pages.next);
969
1da177e4 970 /* Set up the argument struct */
dbae4c73 971 return nfs_write_rpcsetup(req, data, &nfs_write_full_ops, count, 0, how);
1da177e4
LT
972 out_bad:
973 while (!list_empty(head)) {
10afec90 974 req = nfs_list_entry(head->next);
1da177e4 975 nfs_list_remove_request(req);
61822ab5 976 nfs_redirty_request(req);
1da177e4
LT
977 }
978 return -ENOMEM;
979}
980
c63c7b05
TM
981static void nfs_pageio_init_write(struct nfs_pageio_descriptor *pgio,
982 struct inode *inode, int ioflags)
1da177e4 983{
bf4285e7 984 size_t wsize = NFS_SERVER(inode)->wsize;
1da177e4 985
bcb71bba 986 if (wsize < PAGE_CACHE_SIZE)
c63c7b05 987 nfs_pageio_init(pgio, inode, nfs_flush_multi, wsize, ioflags);
bcb71bba 988 else
c63c7b05 989 nfs_pageio_init(pgio, inode, nfs_flush_one, wsize, ioflags);
1da177e4
LT
990}
991
992/*
993 * Handle a write reply that flushed part of a page.
994 */
788e7a89 995static void nfs_writeback_done_partial(struct rpc_task *task, void *calldata)
1da177e4 996{
788e7a89 997 struct nfs_write_data *data = calldata;
1da177e4 998
48186c7d
CL
999 dprintk("NFS: %5u write(%s/%lld %d@%lld)",
1000 task->tk_pid,
1001 data->req->wb_context->path.dentry->d_inode->i_sb->s_id,
1002 (long long)
1003 NFS_FILEID(data->req->wb_context->path.dentry->d_inode),
1004 data->req->wb_bytes, (long long)req_offset(data->req));
1da177e4 1005
c9d8f89d
TM
1006 nfs_writeback_done(task, data);
1007}
788e7a89 1008
c9d8f89d
TM
1009static void nfs_writeback_release_partial(void *calldata)
1010{
1011 struct nfs_write_data *data = calldata;
1012 struct nfs_page *req = data->req;
1013 struct page *page = req->wb_page;
1014 int status = data->task.tk_status;
1015
1016 if (status < 0) {
a301b777 1017 nfs_set_pageerror(page);
c9d8f89d
TM
1018 nfs_context_set_write_error(req->wb_context, status);
1019 dprintk(", error = %d\n", status);
8e821cad 1020 goto out;
1da177e4
LT
1021 }
1022
8e821cad 1023 if (nfs_write_need_commit(data)) {
587142f8 1024 struct inode *inode = page->mapping->host;
8e821cad 1025
587142f8 1026 spin_lock(&inode->i_lock);
8e821cad
TM
1027 if (test_bit(PG_NEED_RESCHED, &req->wb_flags)) {
1028 /* Do nothing we need to resend the writes */
1029 } else if (!test_and_set_bit(PG_NEED_COMMIT, &req->wb_flags)) {
1030 memcpy(&req->wb_verf, &data->verf, sizeof(req->wb_verf));
1031 dprintk(" defer commit\n");
1032 } else if (memcmp(&req->wb_verf, &data->verf, sizeof(req->wb_verf))) {
1033 set_bit(PG_NEED_RESCHED, &req->wb_flags);
1034 clear_bit(PG_NEED_COMMIT, &req->wb_flags);
1035 dprintk(" server reboot detected\n");
1036 }
587142f8 1037 spin_unlock(&inode->i_lock);
8e821cad
TM
1038 } else
1039 dprintk(" OK\n");
1040
1041out:
1da177e4
LT
1042 if (atomic_dec_and_test(&req->wb_complete))
1043 nfs_writepage_release(req);
c9d8f89d 1044 nfs_writedata_release(calldata);
1da177e4
LT
1045}
1046
def6ed7e
AA
1047#if defined(CONFIG_NFS_V4_1)
1048void nfs_write_prepare(struct rpc_task *task, void *calldata)
1049{
1050 struct nfs_write_data *data = calldata;
def6ed7e 1051
035168ab
TM
1052 if (nfs4_setup_sequence(NFS_SERVER(data->inode),
1053 &data->args.seq_args,
def6ed7e
AA
1054 &data->res.seq_res, 1, task))
1055 return;
1056 rpc_call_start(task);
1057}
1058#endif /* CONFIG_NFS_V4_1 */
1059
788e7a89 1060static const struct rpc_call_ops nfs_write_partial_ops = {
def6ed7e
AA
1061#if defined(CONFIG_NFS_V4_1)
1062 .rpc_call_prepare = nfs_write_prepare,
1063#endif /* CONFIG_NFS_V4_1 */
788e7a89 1064 .rpc_call_done = nfs_writeback_done_partial,
c9d8f89d 1065 .rpc_release = nfs_writeback_release_partial,
788e7a89
TM
1066};
1067
1da177e4
LT
1068/*
1069 * Handle a write reply that flushes a whole page.
1070 *
1071 * FIXME: There is an inherent race with invalidate_inode_pages and
1072 * writebacks since the page->count is kept > 1 for as long
1073 * as the page has a write request pending.
1074 */
788e7a89 1075static void nfs_writeback_done_full(struct rpc_task *task, void *calldata)
1da177e4 1076{
788e7a89 1077 struct nfs_write_data *data = calldata;
1da177e4 1078
c9d8f89d
TM
1079 nfs_writeback_done(task, data);
1080}
1081
1082static void nfs_writeback_release_full(void *calldata)
1083{
1084 struct nfs_write_data *data = calldata;
1085 int status = data->task.tk_status;
788e7a89 1086
1da177e4
LT
1087 /* Update attributes as result of writeback. */
1088 while (!list_empty(&data->pages)) {
c9d8f89d
TM
1089 struct nfs_page *req = nfs_list_entry(data->pages.next);
1090 struct page *page = req->wb_page;
1091
1da177e4 1092 nfs_list_remove_request(req);
1da177e4 1093
48186c7d
CL
1094 dprintk("NFS: %5u write (%s/%lld %d@%lld)",
1095 data->task.tk_pid,
88be9f99
TM
1096 req->wb_context->path.dentry->d_inode->i_sb->s_id,
1097 (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode),
1da177e4
LT
1098 req->wb_bytes,
1099 (long long)req_offset(req));
1100
c9d8f89d 1101 if (status < 0) {
a301b777 1102 nfs_set_pageerror(page);
c9d8f89d
TM
1103 nfs_context_set_write_error(req->wb_context, status);
1104 dprintk(", error = %d\n", status);
8e821cad 1105 goto remove_request;
1da177e4 1106 }
1da177e4 1107
8e821cad
TM
1108 if (nfs_write_need_commit(data)) {
1109 memcpy(&req->wb_verf, &data->verf, sizeof(req->wb_verf));
1110 nfs_mark_request_commit(req);
8e821cad 1111 dprintk(" marked for commit\n");
1da177e4
LT
1112 goto next;
1113 }
8e821cad
TM
1114 dprintk(" OK\n");
1115remove_request:
1da177e4 1116 nfs_inode_remove_request(req);
1da177e4 1117 next:
9fd367f0 1118 nfs_clear_page_tag_locked(req);
a6305ddb 1119 nfs_end_page_writeback(page);
1da177e4 1120 }
c9d8f89d 1121 nfs_writedata_release(calldata);
1da177e4
LT
1122}
1123
788e7a89 1124static const struct rpc_call_ops nfs_write_full_ops = {
def6ed7e
AA
1125#if defined(CONFIG_NFS_V4_1)
1126 .rpc_call_prepare = nfs_write_prepare,
1127#endif /* CONFIG_NFS_V4_1 */
788e7a89 1128 .rpc_call_done = nfs_writeback_done_full,
c9d8f89d 1129 .rpc_release = nfs_writeback_release_full,
788e7a89
TM
1130};
1131
1132
1da177e4
LT
1133/*
1134 * This function is called when the WRITE call is complete.
1135 */
462d5b32 1136int nfs_writeback_done(struct rpc_task *task, struct nfs_write_data *data)
1da177e4 1137{
1da177e4
LT
1138 struct nfs_writeargs *argp = &data->args;
1139 struct nfs_writeres *resp = &data->res;
eedc020e 1140 struct nfs_server *server = NFS_SERVER(data->inode);
788e7a89 1141 int status;
1da177e4 1142
a3f565b1 1143 dprintk("NFS: %5u nfs_writeback_done (status %d)\n",
1da177e4
LT
1144 task->tk_pid, task->tk_status);
1145
f551e44f
CL
1146 /*
1147 * ->write_done will attempt to use post-op attributes to detect
1148 * conflicting writes by other clients. A strict interpretation
1149 * of close-to-open would allow us to continue caching even if
1150 * another writer had changed the file, but some applications
1151 * depend on tighter cache coherency when writing.
1152 */
788e7a89
TM
1153 status = NFS_PROTO(data->inode)->write_done(task, data);
1154 if (status != 0)
1155 return status;
91d5b470
CL
1156 nfs_add_stats(data->inode, NFSIOS_SERVERWRITTENBYTES, resp->count);
1157
1da177e4
LT
1158#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
1159 if (resp->verf->committed < argp->stable && task->tk_status >= 0) {
1160 /* We tried a write call, but the server did not
1161 * commit data to stable storage even though we
1162 * requested it.
1163 * Note: There is a known bug in Tru64 < 5.0 in which
1164 * the server reports NFS_DATA_SYNC, but performs
1165 * NFS_FILE_SYNC. We therefore implement this checking
1166 * as a dprintk() in order to avoid filling syslog.
1167 */
1168 static unsigned long complain;
1169
1170 if (time_before(complain, jiffies)) {
48186c7d 1171 dprintk("NFS: faulty NFS server %s:"
1da177e4 1172 " (committed = %d) != (stable = %d)\n",
eedc020e 1173 server->nfs_client->cl_hostname,
1da177e4
LT
1174 resp->verf->committed, argp->stable);
1175 complain = jiffies + 300 * HZ;
1176 }
1177 }
1178#endif
1179 /* Is this a short write? */
1180 if (task->tk_status >= 0 && resp->count < argp->count) {
1181 static unsigned long complain;
1182
91d5b470
CL
1183 nfs_inc_stats(data->inode, NFSIOS_SHORTWRITE);
1184
1da177e4
LT
1185 /* Has the server at least made some progress? */
1186 if (resp->count != 0) {
1187 /* Was this an NFSv2 write or an NFSv3 stable write? */
1188 if (resp->verf->committed != NFS_UNSTABLE) {
1189 /* Resend from where the server left off */
1190 argp->offset += resp->count;
1191 argp->pgbase += resp->count;
1192 argp->count -= resp->count;
1193 } else {
1194 /* Resend as a stable write in order to avoid
1195 * headaches in the case of a server crash.
1196 */
1197 argp->stable = NFS_FILE_SYNC;
1198 }
0110ee15 1199 nfs_restart_rpc(task, server->nfs_client);
788e7a89 1200 return -EAGAIN;
1da177e4
LT
1201 }
1202 if (time_before(complain, jiffies)) {
1203 printk(KERN_WARNING
1204 "NFS: Server wrote zero bytes, expected %u.\n",
1205 argp->count);
1206 complain = jiffies + 300 * HZ;
1207 }
1208 /* Can't do anything about it except throw an error. */
1209 task->tk_status = -EIO;
1210 }
788e7a89 1211 return 0;
1da177e4
LT
1212}
1213
1214
1215#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
71d0a611
TM
1216static int nfs_commit_set_lock(struct nfs_inode *nfsi, int may_wait)
1217{
1218 if (!test_and_set_bit(NFS_INO_COMMIT, &nfsi->flags))
1219 return 1;
1220 if (may_wait && !out_of_line_wait_on_bit_lock(&nfsi->flags,
1221 NFS_INO_COMMIT, nfs_wait_bit_killable,
1222 TASK_KILLABLE))
1223 return 1;
1224 return 0;
1225}
1226
1227static void nfs_commit_clear_lock(struct nfs_inode *nfsi)
1228{
1229 clear_bit(NFS_INO_COMMIT, &nfsi->flags);
1230 smp_mb__after_clear_bit();
1231 wake_up_bit(&nfsi->flags, NFS_INO_COMMIT);
1232}
1233
1234
0aa05887 1235static void nfs_commitdata_release(void *data)
1da177e4 1236{
383ba719
TM
1237 struct nfs_write_data *wdata = data;
1238
1239 put_nfs_open_context(wdata->args.context);
1da177e4
LT
1240 nfs_commit_free(wdata);
1241}
1242
1243/*
1244 * Set up the argument/result storage required for the RPC call.
1245 */
dbae4c73 1246static int nfs_commit_rpcsetup(struct list_head *head,
788e7a89
TM
1247 struct nfs_write_data *data,
1248 int how)
1da177e4 1249{
84115e1c
TM
1250 struct nfs_page *first = nfs_list_entry(head->next);
1251 struct inode *inode = first->wb_context->path.dentry->d_inode;
3ff7576d 1252 int priority = flush_task_priority(how);
07737691 1253 struct rpc_task *task;
bdc7f021
TM
1254 struct rpc_message msg = {
1255 .rpc_argp = &data->args,
1256 .rpc_resp = &data->res,
1257 .rpc_cred = first->wb_context->cred,
1258 };
84115e1c 1259 struct rpc_task_setup task_setup_data = {
07737691 1260 .task = &data->task,
84115e1c 1261 .rpc_client = NFS_CLIENT(inode),
bdc7f021 1262 .rpc_message = &msg,
84115e1c
TM
1263 .callback_ops = &nfs_commit_ops,
1264 .callback_data = data,
101070ca 1265 .workqueue = nfsiod_workqueue,
2c61be0a 1266 .flags = RPC_TASK_ASYNC,
3ff7576d 1267 .priority = priority,
84115e1c 1268 };
1da177e4
LT
1269
1270 /* Set up the RPC argument and reply structs
1271 * NB: take care not to mess about with data->commit et al. */
1272
1273 list_splice_init(head, &data->pages);
1da177e4 1274
1da177e4 1275 data->inode = inode;
bdc7f021 1276 data->cred = msg.rpc_cred;
1da177e4
LT
1277
1278 data->args.fh = NFS_FH(data->inode);
3da28eb1
TM
1279 /* Note: we always request a commit of the entire inode */
1280 data->args.offset = 0;
1281 data->args.count = 0;
383ba719 1282 data->args.context = get_nfs_open_context(first->wb_context);
3da28eb1 1283 data->res.count = 0;
1da177e4
LT
1284 data->res.fattr = &data->fattr;
1285 data->res.verf = &data->verf;
0e574af1 1286 nfs_fattr_init(&data->fattr);
788e7a89
TM
1287
1288 /* Set up the initial task struct. */
bdc7f021 1289 NFS_PROTO(inode)->commit_setup(data, &msg);
1da177e4 1290
a3f565b1 1291 dprintk("NFS: %5u initiated commit call\n", data->task.tk_pid);
bdc7f021 1292
07737691 1293 task = rpc_run_task(&task_setup_data);
dbae4c73
TM
1294 if (IS_ERR(task))
1295 return PTR_ERR(task);
1296 rpc_put_task(task);
1297 return 0;
1da177e4
LT
1298}
1299
1300/*
1301 * Commit dirty pages
1302 */
1303static int
40859d7e 1304nfs_commit_list(struct inode *inode, struct list_head *head, int how)
1da177e4
LT
1305{
1306 struct nfs_write_data *data;
1307 struct nfs_page *req;
1308
c9d8f89d 1309 data = nfs_commitdata_alloc();
1da177e4
LT
1310
1311 if (!data)
1312 goto out_bad;
1313
1314 /* Set up the argument struct */
dbae4c73 1315 return nfs_commit_rpcsetup(head, data, how);
1da177e4
LT
1316 out_bad:
1317 while (!list_empty(head)) {
1318 req = nfs_list_entry(head->next);
1319 nfs_list_remove_request(req);
1320 nfs_mark_request_commit(req);
83715ad5 1321 dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
c9e51e41
PZ
1322 dec_bdi_stat(req->wb_page->mapping->backing_dev_info,
1323 BDI_RECLAIMABLE);
9fd367f0 1324 nfs_clear_page_tag_locked(req);
1da177e4 1325 }
71d0a611 1326 nfs_commit_clear_lock(NFS_I(inode));
1da177e4
LT
1327 return -ENOMEM;
1328}
1329
1330/*
1331 * COMMIT call returned
1332 */
788e7a89 1333static void nfs_commit_done(struct rpc_task *task, void *calldata)
1da177e4 1334{
963d8fe5 1335 struct nfs_write_data *data = calldata;
1da177e4 1336
a3f565b1 1337 dprintk("NFS: %5u nfs_commit_done (status %d)\n",
1da177e4
LT
1338 task->tk_pid, task->tk_status);
1339
788e7a89
TM
1340 /* Call the NFS version-specific code */
1341 if (NFS_PROTO(data->inode)->commit_done(task, data) != 0)
1342 return;
c9d8f89d
TM
1343}
1344
1345static void nfs_commit_release(void *calldata)
1346{
1347 struct nfs_write_data *data = calldata;
1348 struct nfs_page *req;
1349 int status = data->task.tk_status;
788e7a89 1350
1da177e4
LT
1351 while (!list_empty(&data->pages)) {
1352 req = nfs_list_entry(data->pages.next);
1353 nfs_list_remove_request(req);
e468bae9 1354 nfs_clear_request_commit(req);
1da177e4 1355
48186c7d 1356 dprintk("NFS: commit (%s/%lld %d@%lld)",
88be9f99
TM
1357 req->wb_context->path.dentry->d_inode->i_sb->s_id,
1358 (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode),
1da177e4
LT
1359 req->wb_bytes,
1360 (long long)req_offset(req));
c9d8f89d
TM
1361 if (status < 0) {
1362 nfs_context_set_write_error(req->wb_context, status);
1da177e4 1363 nfs_inode_remove_request(req);
c9d8f89d 1364 dprintk(", error = %d\n", status);
1da177e4
LT
1365 goto next;
1366 }
1367
1368 /* Okay, COMMIT succeeded, apparently. Check the verifier
1369 * returned by the server against all stored verfs. */
1370 if (!memcmp(req->wb_verf.verifier, data->verf.verifier, sizeof(data->verf.verifier))) {
1371 /* We have a match */
1372 nfs_inode_remove_request(req);
1373 dprintk(" OK\n");
1374 goto next;
1375 }
1376 /* We have a mismatch. Write the page again */
1377 dprintk(" mismatch\n");
6d884e8f 1378 nfs_mark_request_dirty(req);
1da177e4 1379 next:
9fd367f0 1380 nfs_clear_page_tag_locked(req);
1da177e4 1381 }
71d0a611 1382 nfs_commit_clear_lock(NFS_I(data->inode));
c9d8f89d 1383 nfs_commitdata_release(calldata);
1da177e4 1384}
788e7a89
TM
1385
1386static const struct rpc_call_ops nfs_commit_ops = {
21d9a851
AA
1387#if defined(CONFIG_NFS_V4_1)
1388 .rpc_call_prepare = nfs_write_prepare,
1389#endif /* CONFIG_NFS_V4_1 */
788e7a89
TM
1390 .rpc_call_done = nfs_commit_done,
1391 .rpc_release = nfs_commit_release,
1392};
1da177e4 1393
b608b283 1394int nfs_commit_inode(struct inode *inode, int how)
1da177e4 1395{
1da177e4 1396 LIST_HEAD(head);
71d0a611
TM
1397 int may_wait = how & FLUSH_SYNC;
1398 int res = 0;
1da177e4 1399
71d0a611 1400 if (!nfs_commit_set_lock(NFS_I(inode), may_wait))
c5efa5fc 1401 goto out_mark_dirty;
587142f8 1402 spin_lock(&inode->i_lock);
3da28eb1 1403 res = nfs_scan_commit(inode, &head, 0, 0);
587142f8 1404 spin_unlock(&inode->i_lock);
1da177e4 1405 if (res) {
7d46a49f 1406 int error = nfs_commit_list(inode, &head, how);
3da28eb1
TM
1407 if (error < 0)
1408 return error;
71d0a611
TM
1409 if (may_wait)
1410 wait_on_bit(&NFS_I(inode)->flags, NFS_INO_COMMIT,
1411 nfs_wait_bit_killable,
1412 TASK_KILLABLE);
c5efa5fc
TM
1413 else
1414 goto out_mark_dirty;
71d0a611
TM
1415 } else
1416 nfs_commit_clear_lock(NFS_I(inode));
c5efa5fc
TM
1417 return res;
1418 /* Note: If we exit without ensuring that the commit is complete,
1419 * we must mark the inode as dirty. Otherwise, future calls to
1420 * sync_inode() with the WB_SYNC_ALL flag set will fail to ensure
1421 * that the data is on the disk.
1422 */
1423out_mark_dirty:
1424 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
1da177e4
LT
1425 return res;
1426}
8fc795f7
TM
1427
1428static int nfs_commit_unstable_pages(struct inode *inode, struct writeback_control *wbc)
1429{
420e3646
TM
1430 struct nfs_inode *nfsi = NFS_I(inode);
1431 int flags = FLUSH_SYNC;
1432 int ret = 0;
8fc795f7 1433
a00dd6c0
JL
1434 if (wbc->sync_mode == WB_SYNC_NONE) {
1435 /* Don't commit yet if this is a non-blocking flush and there
1436 * are a lot of outstanding writes for this mapping.
1437 */
1438 if (nfsi->ncommit <= (nfsi->npages >> 1))
1439 goto out_mark_dirty;
420e3646 1440
a00dd6c0 1441 /* don't wait for the COMMIT response */
420e3646 1442 flags = 0;
a00dd6c0
JL
1443 }
1444
420e3646
TM
1445 ret = nfs_commit_inode(inode, flags);
1446 if (ret >= 0) {
1447 if (wbc->sync_mode == WB_SYNC_NONE) {
1448 if (ret < wbc->nr_to_write)
1449 wbc->nr_to_write -= ret;
1450 else
1451 wbc->nr_to_write = 0;
1452 }
8fc795f7 1453 return 0;
420e3646
TM
1454 }
1455out_mark_dirty:
8fc795f7
TM
1456 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
1457 return ret;
1458}
c63c7b05 1459#else
8fc795f7
TM
1460static int nfs_commit_unstable_pages(struct inode *inode, struct writeback_control *wbc)
1461{
1462 return 0;
1463}
1da177e4
LT
1464#endif
1465
8fc795f7
TM
1466int nfs_write_inode(struct inode *inode, struct writeback_control *wbc)
1467{
1468 return nfs_commit_unstable_pages(inode, wbc);
1469}
1470
acdc53b2
TM
1471/*
1472 * flush the inode to disk.
1473 */
1474int nfs_wb_all(struct inode *inode)
34901f70
TM
1475{
1476 struct writeback_control wbc = {
72cb77f4 1477 .sync_mode = WB_SYNC_ALL,
34901f70 1478 .nr_to_write = LONG_MAX,
d7fb1207
TM
1479 .range_start = 0,
1480 .range_end = LLONG_MAX,
34901f70 1481 };
34901f70 1482
acdc53b2 1483 return sync_inode(inode, &wbc);
1c75950b
TM
1484}
1485
1b3b4a1a
TM
1486int nfs_wb_page_cancel(struct inode *inode, struct page *page)
1487{
1488 struct nfs_page *req;
1b3b4a1a
TM
1489 int ret = 0;
1490
1491 BUG_ON(!PageLocked(page));
1492 for (;;) {
ba8b06e6 1493 wait_on_page_writeback(page);
1b3b4a1a
TM
1494 req = nfs_page_find_request(page);
1495 if (req == NULL)
1b3b4a1a 1496 break;
1b3b4a1a
TM
1497 if (nfs_lock_request_dontget(req)) {
1498 nfs_inode_remove_request(req);
1499 /*
1500 * In case nfs_inode_remove_request has marked the
1501 * page as being dirty
1502 */
1503 cancel_dirty_page(page, PAGE_CACHE_SIZE);
1504 nfs_unlock_request(req);
1505 break;
1506 }
1507 ret = nfs_wait_on_request(req);
c9edda71 1508 nfs_release_request(req);
1b3b4a1a 1509 if (ret < 0)
c988950e 1510 break;
1b3b4a1a 1511 }
1b3b4a1a
TM
1512 return ret;
1513}
1514
7f2f12d9
TM
1515/*
1516 * Write back all requests on one page - we do this before reading it.
1517 */
1518int nfs_wb_page(struct inode *inode, struct page *page)
1c75950b
TM
1519{
1520 loff_t range_start = page_offset(page);
1521 loff_t range_end = range_start + (loff_t)(PAGE_CACHE_SIZE - 1);
4d770ccf 1522 struct writeback_control wbc = {
4d770ccf 1523 .sync_mode = WB_SYNC_ALL,
7f2f12d9 1524 .nr_to_write = 0,
4d770ccf
TM
1525 .range_start = range_start,
1526 .range_end = range_end,
1527 };
1528 int ret;
1c75950b 1529
0522f6ad 1530 for (;;) {
ba8b06e6 1531 wait_on_page_writeback(page);
73e3302f
TM
1532 if (clear_page_dirty_for_io(page)) {
1533 ret = nfs_writepage_locked(page, &wbc);
1534 if (ret < 0)
1535 goto out_error;
0522f6ad 1536 continue;
7f2f12d9 1537 }
0522f6ad
TM
1538 if (!PagePrivate(page))
1539 break;
1540 ret = nfs_commit_inode(inode, FLUSH_SYNC);
ba8b06e6 1541 if (ret < 0)
73e3302f 1542 goto out_error;
7f2f12d9 1543 }
73e3302f
TM
1544 return 0;
1545out_error:
4d770ccf 1546 return ret;
1c75950b
TM
1547}
1548
074cc1de
TM
1549#ifdef CONFIG_MIGRATION
1550int nfs_migrate_page(struct address_space *mapping, struct page *newpage,
1551 struct page *page)
1552{
1553 struct nfs_page *req;
1554 int ret;
1555
7549ad5f 1556 nfs_fscache_release_page(page, GFP_KERNEL);
074cc1de 1557
cfb506e1 1558 req = nfs_find_and_lock_request(page, false);
074cc1de
TM
1559 ret = PTR_ERR(req);
1560 if (IS_ERR(req))
1561 goto out;
1562
1563 ret = migrate_page(mapping, newpage, page);
1564 if (!req)
1565 goto out;
1566 if (ret)
1567 goto out_unlock;
1568 page_cache_get(newpage);
190f38e5 1569 spin_lock(&mapping->host->i_lock);
074cc1de
TM
1570 req->wb_page = newpage;
1571 SetPagePrivate(newpage);
190f38e5 1572 set_page_private(newpage, (unsigned long)req);
074cc1de
TM
1573 ClearPagePrivate(page);
1574 set_page_private(page, 0);
190f38e5 1575 spin_unlock(&mapping->host->i_lock);
074cc1de
TM
1576 page_cache_release(page);
1577out_unlock:
1578 nfs_clear_page_tag_locked(req);
074cc1de
TM
1579out:
1580 return ret;
1581}
1582#endif
1583
f7b422b1 1584int __init nfs_init_writepagecache(void)
1da177e4
LT
1585{
1586 nfs_wdata_cachep = kmem_cache_create("nfs_write_data",
1587 sizeof(struct nfs_write_data),
1588 0, SLAB_HWCACHE_ALIGN,
20c2df83 1589 NULL);
1da177e4
LT
1590 if (nfs_wdata_cachep == NULL)
1591 return -ENOMEM;
1592
93d2341c
MD
1593 nfs_wdata_mempool = mempool_create_slab_pool(MIN_POOL_WRITE,
1594 nfs_wdata_cachep);
1da177e4
LT
1595 if (nfs_wdata_mempool == NULL)
1596 return -ENOMEM;
1597
93d2341c
MD
1598 nfs_commit_mempool = mempool_create_slab_pool(MIN_POOL_COMMIT,
1599 nfs_wdata_cachep);
1da177e4
LT
1600 if (nfs_commit_mempool == NULL)
1601 return -ENOMEM;
1602
89a09141
PZ
1603 /*
1604 * NFS congestion size, scale with available memory.
1605 *
1606 * 64MB: 8192k
1607 * 128MB: 11585k
1608 * 256MB: 16384k
1609 * 512MB: 23170k
1610 * 1GB: 32768k
1611 * 2GB: 46340k
1612 * 4GB: 65536k
1613 * 8GB: 92681k
1614 * 16GB: 131072k
1615 *
1616 * This allows larger machines to have larger/more transfers.
1617 * Limit the default to 256M
1618 */
1619 nfs_congestion_kb = (16*int_sqrt(totalram_pages)) << (PAGE_SHIFT-10);
1620 if (nfs_congestion_kb > 256*1024)
1621 nfs_congestion_kb = 256*1024;
1622
1da177e4
LT
1623 return 0;
1624}
1625
266bee88 1626void nfs_destroy_writepagecache(void)
1da177e4
LT
1627{
1628 mempool_destroy(nfs_commit_mempool);
1629 mempool_destroy(nfs_wdata_mempool);
1a1d92c1 1630 kmem_cache_destroy(nfs_wdata_cachep);
1da177e4
LT
1631}
1632
This page took 0.636866 seconds and 5 git commands to generate.