write.c 47 KB

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