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