page-writeback.c 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244
  1. /*
  2. * mm/page-writeback.c
  3. *
  4. * Copyright (C) 2002, Linus Torvalds.
  5. * Copyright (C) 2007 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
  6. *
  7. * Contains functions related to writing back dirty pages at the
  8. * address_space level.
  9. *
  10. * 10Apr2002 Andrew Morton
  11. * Initial version
  12. */
  13. #include <linux/kernel.h>
  14. #include <linux/export.h>
  15. #include <linux/spinlock.h>
  16. #include <linux/fs.h>
  17. #include <linux/mm.h>
  18. #include <linux/swap.h>
  19. #include <linux/slab.h>
  20. #include <linux/pagemap.h>
  21. #include <linux/writeback.h>
  22. #include <linux/init.h>
  23. #include <linux/backing-dev.h>
  24. #include <linux/task_io_accounting_ops.h>
  25. #include <linux/blkdev.h>
  26. #include <linux/mpage.h>
  27. #include <linux/rmap.h>
  28. #include <linux/percpu.h>
  29. #include <linux/notifier.h>
  30. #include <linux/smp.h>
  31. #include <linux/sysctl.h>
  32. #include <linux/cpu.h>
  33. #include <linux/syscalls.h>
  34. #include <linux/buffer_head.h> /* __set_page_dirty_buffers */
  35. #include <linux/pagevec.h>
  36. #include <trace/events/writeback.h>
  37. /*
  38. * Sleep at most 200ms at a time in balance_dirty_pages().
  39. */
  40. #define MAX_PAUSE max(HZ/5, 1)
  41. /*
  42. * Try to keep balance_dirty_pages() call intervals higher than this many pages
  43. * by raising pause time to max_pause when falls below it.
  44. */
  45. #define DIRTY_POLL_THRESH (128 >> (PAGE_SHIFT - 10))
  46. /*
  47. * Estimate write bandwidth at 200ms intervals.
  48. */
  49. #define BANDWIDTH_INTERVAL max(HZ/5, 1)
  50. #define RATELIMIT_CALC_SHIFT 10
  51. /*
  52. * After a CPU has dirtied this many pages, balance_dirty_pages_ratelimited
  53. * will look to see if it needs to force writeback or throttling.
  54. */
  55. static long ratelimit_pages = 32;
  56. /* The following parameters are exported via /proc/sys/vm */
  57. /*
  58. * Start background writeback (via writeback threads) at this percentage
  59. */
  60. int dirty_background_ratio = 10;
  61. /*
  62. * dirty_background_bytes starts at 0 (disabled) so that it is a function of
  63. * dirty_background_ratio * the amount of dirtyable memory
  64. */
  65. unsigned long dirty_background_bytes;
  66. /*
  67. * free highmem will not be subtracted from the total free memory
  68. * for calculating free ratios if vm_highmem_is_dirtyable is true
  69. */
  70. int vm_highmem_is_dirtyable;
  71. /*
  72. * The generator of dirty data starts writeback at this percentage
  73. */
  74. int vm_dirty_ratio = 20;
  75. /*
  76. * vm_dirty_bytes starts at 0 (disabled) so that it is a function of
  77. * vm_dirty_ratio * the amount of dirtyable memory
  78. */
  79. unsigned long vm_dirty_bytes;
  80. /*
  81. * The interval between `kupdate'-style writebacks
  82. */
  83. unsigned int dirty_writeback_interval = 5 * 100; /* centiseconds */
  84. EXPORT_SYMBOL_GPL(dirty_writeback_interval);
  85. /*
  86. * The longest time for which data is allowed to remain dirty
  87. */
  88. unsigned int dirty_expire_interval = 30 * 100; /* centiseconds */
  89. /*
  90. * Flag that makes the machine dump writes/reads and block dirtyings.
  91. */
  92. int block_dump;
  93. /*
  94. * Flag that puts the machine in "laptop mode". Doubles as a timeout in jiffies:
  95. * a full sync is triggered after this time elapses without any disk activity.
  96. */
  97. int laptop_mode;
  98. EXPORT_SYMBOL(laptop_mode);
  99. /* End of sysctl-exported parameters */
  100. unsigned long global_dirty_limit;
  101. /*
  102. * Scale the writeback cache size proportional to the relative writeout speeds.
  103. *
  104. * We do this by keeping a floating proportion between BDIs, based on page
  105. * writeback completions [end_page_writeback()]. Those devices that write out
  106. * pages fastest will get the larger share, while the slower will get a smaller
  107. * share.
  108. *
  109. * We use page writeout completions because we are interested in getting rid of
  110. * dirty pages. Having them written out is the primary goal.
  111. *
  112. * We introduce a concept of time, a period over which we measure these events,
  113. * because demand can/will vary over time. The length of this period itself is
  114. * measured in page writeback completions.
  115. *
  116. */
  117. static struct prop_descriptor vm_completions;
  118. /*
  119. * Work out the current dirty-memory clamping and background writeout
  120. * thresholds.
  121. *
  122. * The main aim here is to lower them aggressively if there is a lot of mapped
  123. * memory around. To avoid stressing page reclaim with lots of unreclaimable
  124. * pages. It is better to clamp down on writers than to start swapping, and
  125. * performing lots of scanning.
  126. *
  127. * We only allow 1/2 of the currently-unmapped memory to be dirtied.
  128. *
  129. * We don't permit the clamping level to fall below 5% - that is getting rather
  130. * excessive.
  131. *
  132. * We make sure that the background writeout level is below the adjusted
  133. * clamping level.
  134. */
  135. /*
  136. * In a memory zone, there is a certain amount of pages we consider
  137. * available for the page cache, which is essentially the number of
  138. * free and reclaimable pages, minus some zone reserves to protect
  139. * lowmem and the ability to uphold the zone's watermarks without
  140. * requiring writeback.
  141. *
  142. * This number of dirtyable pages is the base value of which the
  143. * user-configurable dirty ratio is the effictive number of pages that
  144. * are allowed to be actually dirtied. Per individual zone, or
  145. * globally by using the sum of dirtyable pages over all zones.
  146. *
  147. * Because the user is allowed to specify the dirty limit globally as
  148. * absolute number of bytes, calculating the per-zone dirty limit can
  149. * require translating the configured limit into a percentage of
  150. * global dirtyable memory first.
  151. */
  152. static unsigned long highmem_dirtyable_memory(unsigned long total)
  153. {
  154. #ifdef CONFIG_HIGHMEM
  155. int node;
  156. unsigned long x = 0;
  157. for_each_node_state(node, N_HIGH_MEMORY) {
  158. struct zone *z =
  159. &NODE_DATA(node)->node_zones[ZONE_HIGHMEM];
  160. x += zone_page_state(z, NR_FREE_PAGES) +
  161. zone_reclaimable_pages(z) - z->dirty_balance_reserve;
  162. }
  163. /*
  164. * Make sure that the number of highmem pages is never larger
  165. * than the number of the total dirtyable memory. This can only
  166. * occur in very strange VM situations but we want to make sure
  167. * that this does not occur.
  168. */
  169. return min(x, total);
  170. #else
  171. return 0;
  172. #endif
  173. }
  174. /**
  175. * global_dirtyable_memory - number of globally dirtyable pages
  176. *
  177. * Returns the global number of pages potentially available for dirty
  178. * page cache. This is the base value for the global dirty limits.
  179. */
  180. unsigned long global_dirtyable_memory(void)
  181. {
  182. unsigned long x;
  183. x = global_page_state(NR_FREE_PAGES) + global_reclaimable_pages() -
  184. dirty_balance_reserve;
  185. if (!vm_highmem_is_dirtyable)
  186. x -= highmem_dirtyable_memory(x);
  187. return x + 1; /* Ensure that we never return 0 */
  188. }
  189. /*
  190. * global_dirty_limits - background-writeback and dirty-throttling thresholds
  191. *
  192. * Calculate the dirty thresholds based on sysctl parameters
  193. * - vm.dirty_background_ratio or vm.dirty_background_bytes
  194. * - vm.dirty_ratio or vm.dirty_bytes
  195. * The dirty limits will be lifted by 1/4 for PF_LESS_THROTTLE (ie. nfsd) and
  196. * real-time tasks.
  197. */
  198. void global_dirty_limits(unsigned long *pbackground, unsigned long *pdirty)
  199. {
  200. unsigned long background;
  201. unsigned long dirty;
  202. unsigned long uninitialized_var(available_memory);
  203. struct task_struct *tsk;
  204. if (!vm_dirty_bytes || !dirty_background_bytes)
  205. available_memory = global_dirtyable_memory();
  206. if (vm_dirty_bytes)
  207. dirty = DIV_ROUND_UP(vm_dirty_bytes, PAGE_SIZE);
  208. else
  209. dirty = (vm_dirty_ratio * available_memory) / 100;
  210. if (dirty_background_bytes)
  211. background = DIV_ROUND_UP(dirty_background_bytes, PAGE_SIZE);
  212. else
  213. background = (dirty_background_ratio * available_memory) / 100;
  214. if (background >= dirty)
  215. background = dirty / 2;
  216. tsk = current;
  217. if (tsk->flags & PF_LESS_THROTTLE || rt_task(tsk)) {
  218. background += background / 4;
  219. dirty += dirty / 4;
  220. }
  221. *pbackground = background;
  222. *pdirty = dirty;
  223. trace_global_dirty_state(background, dirty);
  224. }
  225. /**
  226. * zone_dirtyable_memory - number of dirtyable pages in a zone
  227. * @zone: the zone
  228. *
  229. * Returns the zone's number of pages potentially available for dirty
  230. * page cache. This is the base value for the per-zone dirty limits.
  231. */
  232. static unsigned long zone_dirtyable_memory(struct zone *zone)
  233. {
  234. /*
  235. * The effective global number of dirtyable pages may exclude
  236. * highmem as a big-picture measure to keep the ratio between
  237. * dirty memory and lowmem reasonable.
  238. *
  239. * But this function is purely about the individual zone and a
  240. * highmem zone can hold its share of dirty pages, so we don't
  241. * care about vm_highmem_is_dirtyable here.
  242. */
  243. return zone_page_state(zone, NR_FREE_PAGES) +
  244. zone_reclaimable_pages(zone) -
  245. zone->dirty_balance_reserve;
  246. }
  247. /**
  248. * zone_dirty_limit - maximum number of dirty pages allowed in a zone
  249. * @zone: the zone
  250. *
  251. * Returns the maximum number of dirty pages allowed in a zone, based
  252. * on the zone's dirtyable memory.
  253. */
  254. static unsigned long zone_dirty_limit(struct zone *zone)
  255. {
  256. unsigned long zone_memory = zone_dirtyable_memory(zone);
  257. struct task_struct *tsk = current;
  258. unsigned long dirty;
  259. if (vm_dirty_bytes)
  260. dirty = DIV_ROUND_UP(vm_dirty_bytes, PAGE_SIZE) *
  261. zone_memory / global_dirtyable_memory();
  262. else
  263. dirty = vm_dirty_ratio * zone_memory / 100;
  264. if (tsk->flags & PF_LESS_THROTTLE || rt_task(tsk))
  265. dirty += dirty / 4;
  266. return dirty;
  267. }
  268. /**
  269. * zone_dirty_ok - tells whether a zone is within its dirty limits
  270. * @zone: the zone to check
  271. *
  272. * Returns %true when the dirty pages in @zone are within the zone's
  273. * dirty limit, %false if the limit is exceeded.
  274. */
  275. bool zone_dirty_ok(struct zone *zone)
  276. {
  277. unsigned long limit = zone_dirty_limit(zone);
  278. return zone_page_state(zone, NR_FILE_DIRTY) +
  279. zone_page_state(zone, NR_UNSTABLE_NFS) +
  280. zone_page_state(zone, NR_WRITEBACK) <= limit;
  281. }
  282. /*
  283. * couple the period to the dirty_ratio:
  284. *
  285. * period/2 ~ roundup_pow_of_two(dirty limit)
  286. */
  287. static int calc_period_shift(void)
  288. {
  289. unsigned long dirty_total;
  290. if (vm_dirty_bytes)
  291. dirty_total = vm_dirty_bytes / PAGE_SIZE;
  292. else
  293. dirty_total = (vm_dirty_ratio * global_dirtyable_memory()) /
  294. 100;
  295. return 2 + ilog2(dirty_total - 1);
  296. }
  297. /*
  298. * update the period when the dirty threshold changes.
  299. */
  300. static void update_completion_period(void)
  301. {
  302. int shift = calc_period_shift();
  303. prop_change_shift(&vm_completions, shift);
  304. writeback_set_ratelimit();
  305. }
  306. int dirty_background_ratio_handler(struct ctl_table *table, int write,
  307. void __user *buffer, size_t *lenp,
  308. loff_t *ppos)
  309. {
  310. int ret;
  311. ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
  312. if (ret == 0 && write)
  313. dirty_background_bytes = 0;
  314. return ret;
  315. }
  316. int dirty_background_bytes_handler(struct ctl_table *table, int write,
  317. void __user *buffer, size_t *lenp,
  318. loff_t *ppos)
  319. {
  320. int ret;
  321. ret = proc_doulongvec_minmax(table, write, buffer, lenp, ppos);
  322. if (ret == 0 && write)
  323. dirty_background_ratio = 0;
  324. return ret;
  325. }
  326. int dirty_ratio_handler(struct ctl_table *table, int write,
  327. void __user *buffer, size_t *lenp,
  328. loff_t *ppos)
  329. {
  330. int old_ratio = vm_dirty_ratio;
  331. int ret;
  332. ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
  333. if (ret == 0 && write && vm_dirty_ratio != old_ratio) {
  334. update_completion_period();
  335. vm_dirty_bytes = 0;
  336. }
  337. return ret;
  338. }
  339. int dirty_bytes_handler(struct ctl_table *table, int write,
  340. void __user *buffer, size_t *lenp,
  341. loff_t *ppos)
  342. {
  343. unsigned long old_bytes = vm_dirty_bytes;
  344. int ret;
  345. ret = proc_doulongvec_minmax(table, write, buffer, lenp, ppos);
  346. if (ret == 0 && write && vm_dirty_bytes != old_bytes) {
  347. update_completion_period();
  348. vm_dirty_ratio = 0;
  349. }
  350. return ret;
  351. }
  352. /*
  353. * Increment the BDI's writeout completion count and the global writeout
  354. * completion count. Called from test_clear_page_writeback().
  355. */
  356. static inline void __bdi_writeout_inc(struct backing_dev_info *bdi)
  357. {
  358. __inc_bdi_stat(bdi, BDI_WRITTEN);
  359. __prop_inc_percpu_max(&vm_completions, &bdi->completions,
  360. bdi->max_prop_frac);
  361. }
  362. void bdi_writeout_inc(struct backing_dev_info *bdi)
  363. {
  364. unsigned long flags;
  365. local_irq_save(flags);
  366. __bdi_writeout_inc(bdi);
  367. local_irq_restore(flags);
  368. }
  369. EXPORT_SYMBOL_GPL(bdi_writeout_inc);
  370. /*
  371. * Obtain an accurate fraction of the BDI's portion.
  372. */
  373. static void bdi_writeout_fraction(struct backing_dev_info *bdi,
  374. long *numerator, long *denominator)
  375. {
  376. prop_fraction_percpu(&vm_completions, &bdi->completions,
  377. numerator, denominator);
  378. }
  379. /*
  380. * bdi_min_ratio keeps the sum of the minimum dirty shares of all
  381. * registered backing devices, which, for obvious reasons, can not
  382. * exceed 100%.
  383. */
  384. static unsigned int bdi_min_ratio;
  385. int bdi_set_min_ratio(struct backing_dev_info *bdi, unsigned int min_ratio)
  386. {
  387. int ret = 0;
  388. spin_lock_bh(&bdi_lock);
  389. if (min_ratio > bdi->max_ratio) {
  390. ret = -EINVAL;
  391. } else {
  392. min_ratio -= bdi->min_ratio;
  393. if (bdi_min_ratio + min_ratio < 100) {
  394. bdi_min_ratio += min_ratio;
  395. bdi->min_ratio += min_ratio;
  396. } else {
  397. ret = -EINVAL;
  398. }
  399. }
  400. spin_unlock_bh(&bdi_lock);
  401. return ret;
  402. }
  403. int bdi_set_max_ratio(struct backing_dev_info *bdi, unsigned max_ratio)
  404. {
  405. int ret = 0;
  406. if (max_ratio > 100)
  407. return -EINVAL;
  408. spin_lock_bh(&bdi_lock);
  409. if (bdi->min_ratio > max_ratio) {
  410. ret = -EINVAL;
  411. } else {
  412. bdi->max_ratio = max_ratio;
  413. bdi->max_prop_frac = (PROP_FRAC_BASE * max_ratio) / 100;
  414. }
  415. spin_unlock_bh(&bdi_lock);
  416. return ret;
  417. }
  418. EXPORT_SYMBOL(bdi_set_max_ratio);
  419. static unsigned long dirty_freerun_ceiling(unsigned long thresh,
  420. unsigned long bg_thresh)
  421. {
  422. return (thresh + bg_thresh) / 2;
  423. }
  424. static unsigned long hard_dirty_limit(unsigned long thresh)
  425. {
  426. return max(thresh, global_dirty_limit);
  427. }
  428. /**
  429. * bdi_dirty_limit - @bdi's share of dirty throttling threshold
  430. * @bdi: the backing_dev_info to query
  431. * @dirty: global dirty limit in pages
  432. *
  433. * Returns @bdi's dirty limit in pages. The term "dirty" in the context of
  434. * dirty balancing includes all PG_dirty, PG_writeback and NFS unstable pages.
  435. *
  436. * Note that balance_dirty_pages() will only seriously take it as a hard limit
  437. * when sleeping max_pause per page is not enough to keep the dirty pages under
  438. * control. For example, when the device is completely stalled due to some error
  439. * conditions, or when there are 1000 dd tasks writing to a slow 10MB/s USB key.
  440. * In the other normal situations, it acts more gently by throttling the tasks
  441. * more (rather than completely block them) when the bdi dirty pages go high.
  442. *
  443. * It allocates high/low dirty limits to fast/slow devices, in order to prevent
  444. * - starving fast devices
  445. * - piling up dirty pages (that will take long time to sync) on slow devices
  446. *
  447. * The bdi's share of dirty limit will be adapting to its throughput and
  448. * bounded by the bdi->min_ratio and/or bdi->max_ratio parameters, if set.
  449. */
  450. unsigned long bdi_dirty_limit(struct backing_dev_info *bdi, unsigned long dirty)
  451. {
  452. u64 bdi_dirty;
  453. long numerator, denominator;
  454. /*
  455. * Calculate this BDI's share of the dirty ratio.
  456. */
  457. bdi_writeout_fraction(bdi, &numerator, &denominator);
  458. bdi_dirty = (dirty * (100 - bdi_min_ratio)) / 100;
  459. bdi_dirty *= numerator;
  460. do_div(bdi_dirty, denominator);
  461. bdi_dirty += (dirty * bdi->min_ratio) / 100;
  462. if (bdi_dirty > (dirty * bdi->max_ratio) / 100)
  463. bdi_dirty = dirty * bdi->max_ratio / 100;
  464. return bdi_dirty;
  465. }
  466. /*
  467. * Dirty position control.
  468. *
  469. * (o) global/bdi setpoints
  470. *
  471. * We want the dirty pages be balanced around the global/bdi setpoints.
  472. * When the number of dirty pages is higher/lower than the setpoint, the
  473. * dirty position control ratio (and hence task dirty ratelimit) will be
  474. * decreased/increased to bring the dirty pages back to the setpoint.
  475. *
  476. * pos_ratio = 1 << RATELIMIT_CALC_SHIFT
  477. *
  478. * if (dirty < setpoint) scale up pos_ratio
  479. * if (dirty > setpoint) scale down pos_ratio
  480. *
  481. * if (bdi_dirty < bdi_setpoint) scale up pos_ratio
  482. * if (bdi_dirty > bdi_setpoint) scale down pos_ratio
  483. *
  484. * task_ratelimit = dirty_ratelimit * pos_ratio >> RATELIMIT_CALC_SHIFT
  485. *
  486. * (o) global control line
  487. *
  488. * ^ pos_ratio
  489. * |
  490. * | |<===== global dirty control scope ======>|
  491. * 2.0 .............*
  492. * | .*
  493. * | . *
  494. * | . *
  495. * | . *
  496. * | . *
  497. * | . *
  498. * 1.0 ................................*
  499. * | . . *
  500. * | . . *
  501. * | . . *
  502. * | . . *
  503. * | . . *
  504. * 0 +------------.------------------.----------------------*------------->
  505. * freerun^ setpoint^ limit^ dirty pages
  506. *
  507. * (o) bdi control line
  508. *
  509. * ^ pos_ratio
  510. * |
  511. * | *
  512. * | *
  513. * | *
  514. * | *
  515. * | * |<=========== span ============>|
  516. * 1.0 .......................*
  517. * | . *
  518. * | . *
  519. * | . *
  520. * | . *
  521. * | . *
  522. * | . *
  523. * | . *
  524. * | . *
  525. * | . *
  526. * | . *
  527. * | . *
  528. * 1/4 ...............................................* * * * * * * * * * * *
  529. * | . .
  530. * | . .
  531. * | . .
  532. * 0 +----------------------.-------------------------------.------------->
  533. * bdi_setpoint^ x_intercept^
  534. *
  535. * The bdi control line won't drop below pos_ratio=1/4, so that bdi_dirty can
  536. * be smoothly throttled down to normal if it starts high in situations like
  537. * - start writing to a slow SD card and a fast disk at the same time. The SD
  538. * card's bdi_dirty may rush to many times higher than bdi_setpoint.
  539. * - the bdi dirty thresh drops quickly due to change of JBOD workload
  540. */
  541. static unsigned long bdi_position_ratio(struct backing_dev_info *bdi,
  542. unsigned long thresh,
  543. unsigned long bg_thresh,
  544. unsigned long dirty,
  545. unsigned long bdi_thresh,
  546. unsigned long bdi_dirty)
  547. {
  548. unsigned long write_bw = bdi->avg_write_bandwidth;
  549. unsigned long freerun = dirty_freerun_ceiling(thresh, bg_thresh);
  550. unsigned long limit = hard_dirty_limit(thresh);
  551. unsigned long x_intercept;
  552. unsigned long setpoint; /* dirty pages' target balance point */
  553. unsigned long bdi_setpoint;
  554. unsigned long span;
  555. long long pos_ratio; /* for scaling up/down the rate limit */
  556. long x;
  557. if (unlikely(dirty >= limit))
  558. return 0;
  559. /*
  560. * global setpoint
  561. *
  562. * setpoint - dirty 3
  563. * f(dirty) := 1.0 + (----------------)
  564. * limit - setpoint
  565. *
  566. * it's a 3rd order polynomial that subjects to
  567. *
  568. * (1) f(freerun) = 2.0 => rampup dirty_ratelimit reasonably fast
  569. * (2) f(setpoint) = 1.0 => the balance point
  570. * (3) f(limit) = 0 => the hard limit
  571. * (4) df/dx <= 0 => negative feedback control
  572. * (5) the closer to setpoint, the smaller |df/dx| (and the reverse)
  573. * => fast response on large errors; small oscillation near setpoint
  574. */
  575. setpoint = (freerun + limit) / 2;
  576. x = div_s64((setpoint - dirty) << RATELIMIT_CALC_SHIFT,
  577. limit - setpoint + 1);
  578. pos_ratio = x;
  579. pos_ratio = pos_ratio * x >> RATELIMIT_CALC_SHIFT;
  580. pos_ratio = pos_ratio * x >> RATELIMIT_CALC_SHIFT;
  581. pos_ratio += 1 << RATELIMIT_CALC_SHIFT;
  582. /*
  583. * We have computed basic pos_ratio above based on global situation. If
  584. * the bdi is over/under its share of dirty pages, we want to scale
  585. * pos_ratio further down/up. That is done by the following mechanism.
  586. */
  587. /*
  588. * bdi setpoint
  589. *
  590. * f(bdi_dirty) := 1.0 + k * (bdi_dirty - bdi_setpoint)
  591. *
  592. * x_intercept - bdi_dirty
  593. * := --------------------------
  594. * x_intercept - bdi_setpoint
  595. *
  596. * The main bdi control line is a linear function that subjects to
  597. *
  598. * (1) f(bdi_setpoint) = 1.0
  599. * (2) k = - 1 / (8 * write_bw) (in single bdi case)
  600. * or equally: x_intercept = bdi_setpoint + 8 * write_bw
  601. *
  602. * For single bdi case, the dirty pages are observed to fluctuate
  603. * regularly within range
  604. * [bdi_setpoint - write_bw/2, bdi_setpoint + write_bw/2]
  605. * for various filesystems, where (2) can yield in a reasonable 12.5%
  606. * fluctuation range for pos_ratio.
  607. *
  608. * For JBOD case, bdi_thresh (not bdi_dirty!) could fluctuate up to its
  609. * own size, so move the slope over accordingly and choose a slope that
  610. * yields 100% pos_ratio fluctuation on suddenly doubled bdi_thresh.
  611. */
  612. if (unlikely(bdi_thresh > thresh))
  613. bdi_thresh = thresh;
  614. /*
  615. * It's very possible that bdi_thresh is close to 0 not because the
  616. * device is slow, but that it has remained inactive for long time.
  617. * Honour such devices a reasonable good (hopefully IO efficient)
  618. * threshold, so that the occasional writes won't be blocked and active
  619. * writes can rampup the threshold quickly.
  620. */
  621. bdi_thresh = max(bdi_thresh, (limit - dirty) / 8);
  622. /*
  623. * scale global setpoint to bdi's:
  624. * bdi_setpoint = setpoint * bdi_thresh / thresh
  625. */
  626. x = div_u64((u64)bdi_thresh << 16, thresh + 1);
  627. bdi_setpoint = setpoint * (u64)x >> 16;
  628. /*
  629. * Use span=(8*write_bw) in single bdi case as indicated by
  630. * (thresh - bdi_thresh ~= 0) and transit to bdi_thresh in JBOD case.
  631. *
  632. * bdi_thresh thresh - bdi_thresh
  633. * span = ---------- * (8 * write_bw) + ------------------- * bdi_thresh
  634. * thresh thresh
  635. */
  636. span = (thresh - bdi_thresh + 8 * write_bw) * (u64)x >> 16;
  637. x_intercept = bdi_setpoint + span;
  638. if (bdi_dirty < x_intercept - span / 4) {
  639. pos_ratio = div_u64(pos_ratio * (x_intercept - bdi_dirty),
  640. x_intercept - bdi_setpoint + 1);
  641. } else
  642. pos_ratio /= 4;
  643. /*
  644. * bdi reserve area, safeguard against dirty pool underrun and disk idle
  645. * It may push the desired control point of global dirty pages higher
  646. * than setpoint.
  647. */
  648. x_intercept = bdi_thresh / 2;
  649. if (bdi_dirty < x_intercept) {
  650. if (bdi_dirty > x_intercept / 8)
  651. pos_ratio = div_u64(pos_ratio * x_intercept, bdi_dirty);
  652. else
  653. pos_ratio *= 8;
  654. }
  655. return pos_ratio;
  656. }
  657. static void bdi_update_write_bandwidth(struct backing_dev_info *bdi,
  658. unsigned long elapsed,
  659. unsigned long written)
  660. {
  661. const unsigned long period = roundup_pow_of_two(3 * HZ);
  662. unsigned long avg = bdi->avg_write_bandwidth;
  663. unsigned long old = bdi->write_bandwidth;
  664. u64 bw;
  665. /*
  666. * bw = written * HZ / elapsed
  667. *
  668. * bw * elapsed + write_bandwidth * (period - elapsed)
  669. * write_bandwidth = ---------------------------------------------------
  670. * period
  671. */
  672. bw = written - bdi->written_stamp;
  673. bw *= HZ;
  674. if (unlikely(elapsed > period)) {
  675. do_div(bw, elapsed);
  676. avg = bw;
  677. goto out;
  678. }
  679. bw += (u64)bdi->write_bandwidth * (period - elapsed);
  680. bw >>= ilog2(period);
  681. /*
  682. * one more level of smoothing, for filtering out sudden spikes
  683. */
  684. if (avg > old && old >= (unsigned long)bw)
  685. avg -= (avg - old) >> 3;
  686. if (avg < old && old <= (unsigned long)bw)
  687. avg += (old - avg) >> 3;
  688. out:
  689. bdi->write_bandwidth = bw;
  690. bdi->avg_write_bandwidth = avg;
  691. }
  692. /*
  693. * The global dirtyable memory and dirty threshold could be suddenly knocked
  694. * down by a large amount (eg. on the startup of KVM in a swapless system).
  695. * This may throw the system into deep dirty exceeded state and throttle
  696. * heavy/light dirtiers alike. To retain good responsiveness, maintain
  697. * global_dirty_limit for tracking slowly down to the knocked down dirty
  698. * threshold.
  699. */
  700. static void update_dirty_limit(unsigned long thresh, unsigned long dirty)
  701. {
  702. unsigned long limit = global_dirty_limit;
  703. /*
  704. * Follow up in one step.
  705. */
  706. if (limit < thresh) {
  707. limit = thresh;
  708. goto update;
  709. }
  710. /*
  711. * Follow down slowly. Use the higher one as the target, because thresh
  712. * may drop below dirty. This is exactly the reason to introduce
  713. * global_dirty_limit which is guaranteed to lie above the dirty pages.
  714. */
  715. thresh = max(thresh, dirty);
  716. if (limit > thresh) {
  717. limit -= (limit - thresh) >> 5;
  718. goto update;
  719. }
  720. return;
  721. update:
  722. global_dirty_limit = limit;
  723. }
  724. static void global_update_bandwidth(unsigned long thresh,
  725. unsigned long dirty,
  726. unsigned long now)
  727. {
  728. static DEFINE_SPINLOCK(dirty_lock);
  729. static unsigned long update_time;
  730. /*
  731. * check locklessly first to optimize away locking for the most time
  732. */
  733. if (time_before(now, update_time + BANDWIDTH_INTERVAL))
  734. return;
  735. spin_lock(&dirty_lock);
  736. if (time_after_eq(now, update_time + BANDWIDTH_INTERVAL)) {
  737. update_dirty_limit(thresh, dirty);
  738. update_time = now;
  739. }
  740. spin_unlock(&dirty_lock);
  741. }
  742. /*
  743. * Maintain bdi->dirty_ratelimit, the base dirty throttle rate.
  744. *
  745. * Normal bdi tasks will be curbed at or below it in long term.
  746. * Obviously it should be around (write_bw / N) when there are N dd tasks.
  747. */
  748. static void bdi_update_dirty_ratelimit(struct backing_dev_info *bdi,
  749. unsigned long thresh,
  750. unsigned long bg_thresh,
  751. unsigned long dirty,
  752. unsigned long bdi_thresh,
  753. unsigned long bdi_dirty,
  754. unsigned long dirtied,
  755. unsigned long elapsed)
  756. {
  757. unsigned long freerun = dirty_freerun_ceiling(thresh, bg_thresh);
  758. unsigned long limit = hard_dirty_limit(thresh);
  759. unsigned long setpoint = (freerun + limit) / 2;
  760. unsigned long write_bw = bdi->avg_write_bandwidth;
  761. unsigned long dirty_ratelimit = bdi->dirty_ratelimit;
  762. unsigned long dirty_rate;
  763. unsigned long task_ratelimit;
  764. unsigned long balanced_dirty_ratelimit;
  765. unsigned long pos_ratio;
  766. unsigned long step;
  767. unsigned long x;
  768. /*
  769. * The dirty rate will match the writeout rate in long term, except
  770. * when dirty pages are truncated by userspace or re-dirtied by FS.
  771. */
  772. dirty_rate = (dirtied - bdi->dirtied_stamp) * HZ / elapsed;
  773. pos_ratio = bdi_position_ratio(bdi, thresh, bg_thresh, dirty,
  774. bdi_thresh, bdi_dirty);
  775. /*
  776. * task_ratelimit reflects each dd's dirty rate for the past 200ms.
  777. */
  778. task_ratelimit = (u64)dirty_ratelimit *
  779. pos_ratio >> RATELIMIT_CALC_SHIFT;
  780. task_ratelimit++; /* it helps rampup dirty_ratelimit from tiny values */
  781. /*
  782. * A linear estimation of the "balanced" throttle rate. The theory is,
  783. * if there are N dd tasks, each throttled at task_ratelimit, the bdi's
  784. * dirty_rate will be measured to be (N * task_ratelimit). So the below
  785. * formula will yield the balanced rate limit (write_bw / N).
  786. *
  787. * Note that the expanded form is not a pure rate feedback:
  788. * rate_(i+1) = rate_(i) * (write_bw / dirty_rate) (1)
  789. * but also takes pos_ratio into account:
  790. * rate_(i+1) = rate_(i) * (write_bw / dirty_rate) * pos_ratio (2)
  791. *
  792. * (1) is not realistic because pos_ratio also takes part in balancing
  793. * the dirty rate. Consider the state
  794. * pos_ratio = 0.5 (3)
  795. * rate = 2 * (write_bw / N) (4)
  796. * If (1) is used, it will stuck in that state! Because each dd will
  797. * be throttled at
  798. * task_ratelimit = pos_ratio * rate = (write_bw / N) (5)
  799. * yielding
  800. * dirty_rate = N * task_ratelimit = write_bw (6)
  801. * put (6) into (1) we get
  802. * rate_(i+1) = rate_(i) (7)
  803. *
  804. * So we end up using (2) to always keep
  805. * rate_(i+1) ~= (write_bw / N) (8)
  806. * regardless of the value of pos_ratio. As long as (8) is satisfied,
  807. * pos_ratio is able to drive itself to 1.0, which is not only where
  808. * the dirty count meet the setpoint, but also where the slope of
  809. * pos_ratio is most flat and hence task_ratelimit is least fluctuated.
  810. */
  811. balanced_dirty_ratelimit = div_u64((u64)task_ratelimit * write_bw,
  812. dirty_rate | 1);
  813. /*
  814. * balanced_dirty_ratelimit ~= (write_bw / N) <= write_bw
  815. */
  816. if (unlikely(balanced_dirty_ratelimit > write_bw))
  817. balanced_dirty_ratelimit = write_bw;
  818. /*
  819. * We could safely do this and return immediately:
  820. *
  821. * bdi->dirty_ratelimit = balanced_dirty_ratelimit;
  822. *
  823. * However to get a more stable dirty_ratelimit, the below elaborated
  824. * code makes use of task_ratelimit to filter out sigular points and
  825. * limit the step size.
  826. *
  827. * The below code essentially only uses the relative value of
  828. *
  829. * task_ratelimit - dirty_ratelimit
  830. * = (pos_ratio - 1) * dirty_ratelimit
  831. *
  832. * which reflects the direction and size of dirty position error.
  833. */
  834. /*
  835. * dirty_ratelimit will follow balanced_dirty_ratelimit iff
  836. * task_ratelimit is on the same side of dirty_ratelimit, too.
  837. * For example, when
  838. * - dirty_ratelimit > balanced_dirty_ratelimit
  839. * - dirty_ratelimit > task_ratelimit (dirty pages are above setpoint)
  840. * lowering dirty_ratelimit will help meet both the position and rate
  841. * control targets. Otherwise, don't update dirty_ratelimit if it will
  842. * only help meet the rate target. After all, what the users ultimately
  843. * feel and care are stable dirty rate and small position error.
  844. *
  845. * |task_ratelimit - dirty_ratelimit| is used to limit the step size
  846. * and filter out the sigular points of balanced_dirty_ratelimit. Which
  847. * keeps jumping around randomly and can even leap far away at times
  848. * due to the small 200ms estimation period of dirty_rate (we want to
  849. * keep that period small to reduce time lags).
  850. */
  851. step = 0;
  852. if (dirty < setpoint) {
  853. x = min(bdi->balanced_dirty_ratelimit,
  854. min(balanced_dirty_ratelimit, task_ratelimit));
  855. if (dirty_ratelimit < x)
  856. step = x - dirty_ratelimit;
  857. } else {
  858. x = max(bdi->balanced_dirty_ratelimit,
  859. max(balanced_dirty_ratelimit, task_ratelimit));
  860. if (dirty_ratelimit > x)
  861. step = dirty_ratelimit - x;
  862. }
  863. /*
  864. * Don't pursue 100% rate matching. It's impossible since the balanced
  865. * rate itself is constantly fluctuating. So decrease the track speed
  866. * when it gets close to the target. Helps eliminate pointless tremors.
  867. */
  868. step >>= dirty_ratelimit / (2 * step + 1);
  869. /*
  870. * Limit the tracking speed to avoid overshooting.
  871. */
  872. step = (step + 7) / 8;
  873. if (dirty_ratelimit < balanced_dirty_ratelimit)
  874. dirty_ratelimit += step;
  875. else
  876. dirty_ratelimit -= step;
  877. bdi->dirty_ratelimit = max(dirty_ratelimit, 1UL);
  878. bdi->balanced_dirty_ratelimit = balanced_dirty_ratelimit;
  879. trace_bdi_dirty_ratelimit(bdi, dirty_rate, task_ratelimit);
  880. }
  881. void __bdi_update_bandwidth(struct backing_dev_info *bdi,
  882. unsigned long thresh,
  883. unsigned long bg_thresh,
  884. unsigned long dirty,
  885. unsigned long bdi_thresh,
  886. unsigned long bdi_dirty,
  887. unsigned long start_time)
  888. {
  889. unsigned long now = jiffies;
  890. unsigned long elapsed = now - bdi->bw_time_stamp;
  891. unsigned long dirtied;
  892. unsigned long written;
  893. /*
  894. * rate-limit, only update once every 200ms.
  895. */
  896. if (elapsed < BANDWIDTH_INTERVAL)
  897. return;
  898. dirtied = percpu_counter_read(&bdi->bdi_stat[BDI_DIRTIED]);
  899. written = percpu_counter_read(&bdi->bdi_stat[BDI_WRITTEN]);
  900. /*
  901. * Skip quiet periods when disk bandwidth is under-utilized.
  902. * (at least 1s idle time between two flusher runs)
  903. */
  904. if (elapsed > HZ && time_before(bdi->bw_time_stamp, start_time))
  905. goto snapshot;
  906. if (thresh) {
  907. global_update_bandwidth(thresh, dirty, now);
  908. bdi_update_dirty_ratelimit(bdi, thresh, bg_thresh, dirty,
  909. bdi_thresh, bdi_dirty,
  910. dirtied, elapsed);
  911. }
  912. bdi_update_write_bandwidth(bdi, elapsed, written);
  913. snapshot:
  914. bdi->dirtied_stamp = dirtied;
  915. bdi->written_stamp = written;
  916. bdi->bw_time_stamp = now;
  917. }
  918. static void bdi_update_bandwidth(struct backing_dev_info *bdi,
  919. unsigned long thresh,
  920. unsigned long bg_thresh,
  921. unsigned long dirty,
  922. unsigned long bdi_thresh,
  923. unsigned long bdi_dirty,
  924. unsigned long start_time)
  925. {
  926. if (time_is_after_eq_jiffies(bdi->bw_time_stamp + BANDWIDTH_INTERVAL))
  927. return;
  928. spin_lock(&bdi->wb.list_lock);
  929. __bdi_update_bandwidth(bdi, thresh, bg_thresh, dirty,
  930. bdi_thresh, bdi_dirty, start_time);
  931. spin_unlock(&bdi->wb.list_lock);
  932. }
  933. /*
  934. * After a task dirtied this many pages, balance_dirty_pages_ratelimited_nr()
  935. * will look to see if it needs to start dirty throttling.
  936. *
  937. * If dirty_poll_interval is too low, big NUMA machines will call the expensive
  938. * global_page_state() too often. So scale it near-sqrt to the safety margin
  939. * (the number of pages we may dirty without exceeding the dirty limits).
  940. */
  941. static unsigned long dirty_poll_interval(unsigned long dirty,
  942. unsigned long thresh)
  943. {
  944. if (thresh > dirty)
  945. return 1UL << (ilog2(thresh - dirty) >> 1);
  946. return 1;
  947. }
  948. static long bdi_max_pause(struct backing_dev_info *bdi,
  949. unsigned long bdi_dirty)
  950. {
  951. long bw = bdi->avg_write_bandwidth;
  952. long t;
  953. /*
  954. * Limit pause time for small memory systems. If sleeping for too long
  955. * time, a small pool of dirty/writeback pages may go empty and disk go
  956. * idle.
  957. *
  958. * 8 serves as the safety ratio.
  959. */
  960. t = bdi_dirty / (1 + bw / roundup_pow_of_two(1 + HZ / 8));
  961. t++;
  962. return min_t(long, t, MAX_PAUSE);
  963. }
  964. static long bdi_min_pause(struct backing_dev_info *bdi,
  965. long max_pause,
  966. unsigned long task_ratelimit,
  967. unsigned long dirty_ratelimit,
  968. int *nr_dirtied_pause)
  969. {
  970. long hi = ilog2(bdi->avg_write_bandwidth);
  971. long lo = ilog2(bdi->dirty_ratelimit);
  972. long t; /* target pause */
  973. long pause; /* estimated next pause */
  974. int pages; /* target nr_dirtied_pause */
  975. /* target for 10ms pause on 1-dd case */
  976. t = max(1, HZ / 100);
  977. /*
  978. * Scale up pause time for concurrent dirtiers in order to reduce CPU
  979. * overheads.
  980. *
  981. * (N * 10ms) on 2^N concurrent tasks.
  982. */
  983. if (hi > lo)
  984. t += (hi - lo) * (10 * HZ) / 1024;
  985. /*
  986. * This is a bit convoluted. We try to base the next nr_dirtied_pause
  987. * on the much more stable dirty_ratelimit. However the next pause time
  988. * will be computed based on task_ratelimit and the two rate limits may
  989. * depart considerably at some time. Especially if task_ratelimit goes
  990. * below dirty_ratelimit/2 and the target pause is max_pause, the next
  991. * pause time will be max_pause*2 _trimmed down_ to max_pause. As a
  992. * result task_ratelimit won't be executed faithfully, which could
  993. * eventually bring down dirty_ratelimit.
  994. *
  995. * We apply two rules to fix it up:
  996. * 1) try to estimate the next pause time and if necessary, use a lower
  997. * nr_dirtied_pause so as not to exceed max_pause. When this happens,
  998. * nr_dirtied_pause will be "dancing" with task_ratelimit.
  999. * 2) limit the target pause time to max_pause/2, so that the normal
  1000. * small fluctuations of task_ratelimit won't trigger rule (1) and
  1001. * nr_dirtied_pause will remain as stable as dirty_ratelimit.
  1002. */
  1003. t = min(t, 1 + max_pause / 2);
  1004. pages = dirty_ratelimit * t / roundup_pow_of_two(HZ);
  1005. /*
  1006. * Tiny nr_dirtied_pause is found to hurt I/O performance in the test
  1007. * case fio-mmap-randwrite-64k, which does 16*{sync read, async write}.
  1008. * When the 16 consecutive reads are often interrupted by some dirty
  1009. * throttling pause during the async writes, cfq will go into idles
  1010. * (deadline is fine). So push nr_dirtied_pause as high as possible
  1011. * until reaches DIRTY_POLL_THRESH=32 pages.
  1012. */
  1013. if (pages < DIRTY_POLL_THRESH) {
  1014. t = max_pause;
  1015. pages = dirty_ratelimit * t / roundup_pow_of_two(HZ);
  1016. if (pages > DIRTY_POLL_THRESH) {
  1017. pages = DIRTY_POLL_THRESH;
  1018. t = HZ * DIRTY_POLL_THRESH / dirty_ratelimit;
  1019. }
  1020. }
  1021. pause = HZ * pages / (task_ratelimit + 1);
  1022. if (pause > max_pause) {
  1023. t = max_pause;
  1024. pages = task_ratelimit * t / roundup_pow_of_two(HZ);
  1025. }
  1026. *nr_dirtied_pause = pages;
  1027. /*
  1028. * The minimal pause time will normally be half the target pause time.
  1029. */
  1030. return pages >= DIRTY_POLL_THRESH ? 1 + t / 2 : t;
  1031. }
  1032. /*
  1033. * balance_dirty_pages() must be called by processes which are generating dirty
  1034. * data. It looks at the number of dirty pages in the machine and will force
  1035. * the caller to wait once crossing the (background_thresh + dirty_thresh) / 2.
  1036. * If we're over `background_thresh' then the writeback threads are woken to
  1037. * perform some writeout.
  1038. */
  1039. static void balance_dirty_pages(struct address_space *mapping,
  1040. unsigned long pages_dirtied)
  1041. {
  1042. unsigned long nr_reclaimable; /* = file_dirty + unstable_nfs */
  1043. unsigned long bdi_reclaimable;
  1044. unsigned long nr_dirty; /* = file_dirty + writeback + unstable_nfs */
  1045. unsigned long bdi_dirty;
  1046. unsigned long freerun;
  1047. unsigned long background_thresh;
  1048. unsigned long dirty_thresh;
  1049. unsigned long bdi_thresh;
  1050. long period;
  1051. long pause;
  1052. long max_pause;
  1053. long min_pause;
  1054. int nr_dirtied_pause;
  1055. bool dirty_exceeded = false;
  1056. unsigned long task_ratelimit;
  1057. unsigned long dirty_ratelimit;
  1058. unsigned long pos_ratio;
  1059. struct backing_dev_info *bdi = mapping->backing_dev_info;
  1060. unsigned long start_time = jiffies;
  1061. for (;;) {
  1062. unsigned long now = jiffies;
  1063. /*
  1064. * Unstable writes are a feature of certain networked
  1065. * filesystems (i.e. NFS) in which data may have been
  1066. * written to the server's write cache, but has not yet
  1067. * been flushed to permanent storage.
  1068. */
  1069. nr_reclaimable = global_page_state(NR_FILE_DIRTY) +
  1070. global_page_state(NR_UNSTABLE_NFS);
  1071. nr_dirty = nr_reclaimable + global_page_state(NR_WRITEBACK);
  1072. global_dirty_limits(&background_thresh, &dirty_thresh);
  1073. /*
  1074. * Throttle it only when the background writeback cannot
  1075. * catch-up. This avoids (excessively) small writeouts
  1076. * when the bdi limits are ramping up.
  1077. */
  1078. freerun = dirty_freerun_ceiling(dirty_thresh,
  1079. background_thresh);
  1080. if (nr_dirty <= freerun) {
  1081. current->dirty_paused_when = now;
  1082. current->nr_dirtied = 0;
  1083. current->nr_dirtied_pause =
  1084. dirty_poll_interval(nr_dirty, dirty_thresh);
  1085. break;
  1086. }
  1087. if (unlikely(!writeback_in_progress(bdi)))
  1088. bdi_start_background_writeback(bdi);
  1089. /*
  1090. * bdi_thresh is not treated as some limiting factor as
  1091. * dirty_thresh, due to reasons
  1092. * - in JBOD setup, bdi_thresh can fluctuate a lot
  1093. * - in a system with HDD and USB key, the USB key may somehow
  1094. * go into state (bdi_dirty >> bdi_thresh) either because
  1095. * bdi_dirty starts high, or because bdi_thresh drops low.
  1096. * In this case we don't want to hard throttle the USB key
  1097. * dirtiers for 100 seconds until bdi_dirty drops under
  1098. * bdi_thresh. Instead the auxiliary bdi control line in
  1099. * bdi_position_ratio() will let the dirtier task progress
  1100. * at some rate <= (write_bw / 2) for bringing down bdi_dirty.
  1101. */
  1102. bdi_thresh = bdi_dirty_limit(bdi, dirty_thresh);
  1103. /*
  1104. * In order to avoid the stacked BDI deadlock we need
  1105. * to ensure we accurately count the 'dirty' pages when
  1106. * the threshold is low.
  1107. *
  1108. * Otherwise it would be possible to get thresh+n pages
  1109. * reported dirty, even though there are thresh-m pages
  1110. * actually dirty; with m+n sitting in the percpu
  1111. * deltas.
  1112. */
  1113. if (bdi_thresh < 2 * bdi_stat_error(bdi)) {
  1114. bdi_reclaimable = bdi_stat_sum(bdi, BDI_RECLAIMABLE);
  1115. bdi_dirty = bdi_reclaimable +
  1116. bdi_stat_sum(bdi, BDI_WRITEBACK);
  1117. } else {
  1118. bdi_reclaimable = bdi_stat(bdi, BDI_RECLAIMABLE);
  1119. bdi_dirty = bdi_reclaimable +
  1120. bdi_stat(bdi, BDI_WRITEBACK);
  1121. }
  1122. dirty_exceeded = (bdi_dirty > bdi_thresh) &&
  1123. (nr_dirty > dirty_thresh);
  1124. if (dirty_exceeded && !bdi->dirty_exceeded)
  1125. bdi->dirty_exceeded = 1;
  1126. bdi_update_bandwidth(bdi, dirty_thresh, background_thresh,
  1127. nr_dirty, bdi_thresh, bdi_dirty,
  1128. start_time);
  1129. dirty_ratelimit = bdi->dirty_ratelimit;
  1130. pos_ratio = bdi_position_ratio(bdi, dirty_thresh,
  1131. background_thresh, nr_dirty,
  1132. bdi_thresh, bdi_dirty);
  1133. task_ratelimit = ((u64)dirty_ratelimit * pos_ratio) >>
  1134. RATELIMIT_CALC_SHIFT;
  1135. max_pause = bdi_max_pause(bdi, bdi_dirty);
  1136. min_pause = bdi_min_pause(bdi, max_pause,
  1137. task_ratelimit, dirty_ratelimit,
  1138. &nr_dirtied_pause);
  1139. if (unlikely(task_ratelimit == 0)) {
  1140. period = max_pause;
  1141. pause = max_pause;
  1142. goto pause;
  1143. }
  1144. period = HZ * pages_dirtied / task_ratelimit;
  1145. pause = period;
  1146. if (current->dirty_paused_when)
  1147. pause -= now - current->dirty_paused_when;
  1148. /*
  1149. * For less than 1s think time (ext3/4 may block the dirtier
  1150. * for up to 800ms from time to time on 1-HDD; so does xfs,
  1151. * however at much less frequency), try to compensate it in
  1152. * future periods by updating the virtual time; otherwise just
  1153. * do a reset, as it may be a light dirtier.
  1154. */
  1155. if (pause < min_pause) {
  1156. trace_balance_dirty_pages(bdi,
  1157. dirty_thresh,
  1158. background_thresh,
  1159. nr_dirty,
  1160. bdi_thresh,
  1161. bdi_dirty,
  1162. dirty_ratelimit,
  1163. task_ratelimit,
  1164. pages_dirtied,
  1165. period,
  1166. min(pause, 0L),
  1167. start_time);
  1168. if (pause < -HZ) {
  1169. current->dirty_paused_when = now;
  1170. current->nr_dirtied = 0;
  1171. } else if (period) {
  1172. current->dirty_paused_when += period;
  1173. current->nr_dirtied = 0;
  1174. } else if (current->nr_dirtied_pause <= pages_dirtied)
  1175. current->nr_dirtied_pause += pages_dirtied;
  1176. break;
  1177. }
  1178. if (unlikely(pause > max_pause)) {
  1179. /* for occasional dropped task_ratelimit */
  1180. now += min(pause - max_pause, max_pause);
  1181. pause = max_pause;
  1182. }
  1183. pause:
  1184. trace_balance_dirty_pages(bdi,
  1185. dirty_thresh,
  1186. background_thresh,
  1187. nr_dirty,
  1188. bdi_thresh,
  1189. bdi_dirty,
  1190. dirty_ratelimit,
  1191. task_ratelimit,
  1192. pages_dirtied,
  1193. period,
  1194. pause,
  1195. start_time);
  1196. __set_current_state(TASK_KILLABLE);
  1197. io_schedule_timeout(pause);
  1198. current->dirty_paused_when = now + pause;
  1199. current->nr_dirtied = 0;
  1200. current->nr_dirtied_pause = nr_dirtied_pause;
  1201. /*
  1202. * This is typically equal to (nr_dirty < dirty_thresh) and can
  1203. * also keep "1000+ dd on a slow USB stick" under control.
  1204. */
  1205. if (task_ratelimit)
  1206. break;
  1207. /*
  1208. * In the case of an unresponding NFS server and the NFS dirty
  1209. * pages exceeds dirty_thresh, give the other good bdi's a pipe
  1210. * to go through, so that tasks on them still remain responsive.
  1211. *
  1212. * In theory 1 page is enough to keep the comsumer-producer
  1213. * pipe going: the flusher cleans 1 page => the task dirties 1
  1214. * more page. However bdi_dirty has accounting errors. So use
  1215. * the larger and more IO friendly bdi_stat_error.
  1216. */
  1217. if (bdi_dirty <= bdi_stat_error(bdi))
  1218. break;
  1219. if (fatal_signal_pending(current))
  1220. break;
  1221. }
  1222. if (!dirty_exceeded && bdi->dirty_exceeded)
  1223. bdi->dirty_exceeded = 0;
  1224. if (writeback_in_progress(bdi))
  1225. return;
  1226. /*
  1227. * In laptop mode, we wait until hitting the higher threshold before
  1228. * starting background writeout, and then write out all the way down
  1229. * to the lower threshold. So slow writers cause minimal disk activity.
  1230. *
  1231. * In normal mode, we start background writeout at the lower
  1232. * background_thresh, to keep the amount of dirty memory low.
  1233. */
  1234. if (laptop_mode)
  1235. return;
  1236. if (nr_reclaimable > background_thresh)
  1237. bdi_start_background_writeback(bdi);
  1238. }
  1239. void set_page_dirty_balance(struct page *page, int page_mkwrite)
  1240. {
  1241. if (set_page_dirty(page) || page_mkwrite) {
  1242. struct address_space *mapping = page_mapping(page);
  1243. if (mapping)
  1244. balance_dirty_pages_ratelimited(mapping);
  1245. }
  1246. }
  1247. static DEFINE_PER_CPU(int, bdp_ratelimits);
  1248. /*
  1249. * Normal tasks are throttled by
  1250. * loop {
  1251. * dirty tsk->nr_dirtied_pause pages;
  1252. * take a snap in balance_dirty_pages();
  1253. * }
  1254. * However there is a worst case. If every task exit immediately when dirtied
  1255. * (tsk->nr_dirtied_pause - 1) pages, balance_dirty_pages() will never be
  1256. * called to throttle the page dirties. The solution is to save the not yet
  1257. * throttled page dirties in dirty_throttle_leaks on task exit and charge them
  1258. * randomly into the running tasks. This works well for the above worst case,
  1259. * as the new task will pick up and accumulate the old task's leaked dirty
  1260. * count and eventually get throttled.
  1261. */
  1262. DEFINE_PER_CPU(int, dirty_throttle_leaks) = 0;
  1263. /**
  1264. * balance_dirty_pages_ratelimited_nr - balance dirty memory state
  1265. * @mapping: address_space which was dirtied
  1266. * @nr_pages_dirtied: number of pages which the caller has just dirtied
  1267. *
  1268. * Processes which are dirtying memory should call in here once for each page
  1269. * which was newly dirtied. The function will periodically check the system's
  1270. * dirty state and will initiate writeback if needed.
  1271. *
  1272. * On really big machines, get_writeback_state is expensive, so try to avoid
  1273. * calling it too often (ratelimiting). But once we're over the dirty memory
  1274. * limit we decrease the ratelimiting by a lot, to prevent individual processes
  1275. * from overshooting the limit by (ratelimit_pages) each.
  1276. */
  1277. void balance_dirty_pages_ratelimited_nr(struct address_space *mapping,
  1278. unsigned long nr_pages_dirtied)
  1279. {
  1280. struct backing_dev_info *bdi = mapping->backing_dev_info;
  1281. int ratelimit;
  1282. int *p;
  1283. if (!bdi_cap_account_dirty(bdi))
  1284. return;
  1285. ratelimit = current->nr_dirtied_pause;
  1286. if (bdi->dirty_exceeded)
  1287. ratelimit = min(ratelimit, 32 >> (PAGE_SHIFT - 10));
  1288. preempt_disable();
  1289. /*
  1290. * This prevents one CPU to accumulate too many dirtied pages without
  1291. * calling into balance_dirty_pages(), which can happen when there are
  1292. * 1000+ tasks, all of them start dirtying pages at exactly the same
  1293. * time, hence all honoured too large initial task->nr_dirtied_pause.
  1294. */
  1295. p = &__get_cpu_var(bdp_ratelimits);
  1296. if (unlikely(current->nr_dirtied >= ratelimit))
  1297. *p = 0;
  1298. else if (unlikely(*p >= ratelimit_pages)) {
  1299. *p = 0;
  1300. ratelimit = 0;
  1301. }
  1302. /*
  1303. * Pick up the dirtied pages by the exited tasks. This avoids lots of
  1304. * short-lived tasks (eg. gcc invocations in a kernel build) escaping
  1305. * the dirty throttling and livelock other long-run dirtiers.
  1306. */
  1307. p = &__get_cpu_var(dirty_throttle_leaks);
  1308. if (*p > 0 && current->nr_dirtied < ratelimit) {
  1309. nr_pages_dirtied = min(*p, ratelimit - current->nr_dirtied);
  1310. *p -= nr_pages_dirtied;
  1311. current->nr_dirtied += nr_pages_dirtied;
  1312. }
  1313. preempt_enable();
  1314. if (unlikely(current->nr_dirtied >= ratelimit))
  1315. balance_dirty_pages(mapping, current->nr_dirtied);
  1316. }
  1317. EXPORT_SYMBOL(balance_dirty_pages_ratelimited_nr);
  1318. void throttle_vm_writeout(gfp_t gfp_mask)
  1319. {
  1320. unsigned long background_thresh;
  1321. unsigned long dirty_thresh;
  1322. for ( ; ; ) {
  1323. global_dirty_limits(&background_thresh, &dirty_thresh);
  1324. dirty_thresh = hard_dirty_limit(dirty_thresh);
  1325. /*
  1326. * Boost the allowable dirty threshold a bit for page
  1327. * allocators so they don't get DoS'ed by heavy writers
  1328. */
  1329. dirty_thresh += dirty_thresh / 10; /* wheeee... */
  1330. if (global_page_state(NR_UNSTABLE_NFS) +
  1331. global_page_state(NR_WRITEBACK) <= dirty_thresh)
  1332. break;
  1333. congestion_wait(BLK_RW_ASYNC, HZ/10);
  1334. /*
  1335. * The caller might hold locks which can prevent IO completion
  1336. * or progress in the filesystem. So we cannot just sit here
  1337. * waiting for IO to complete.
  1338. */
  1339. if ((gfp_mask & (__GFP_FS|__GFP_IO)) != (__GFP_FS|__GFP_IO))
  1340. break;
  1341. }
  1342. }
  1343. /*
  1344. * sysctl handler for /proc/sys/vm/dirty_writeback_centisecs
  1345. */
  1346. int dirty_writeback_centisecs_handler(ctl_table *table, int write,
  1347. void __user *buffer, size_t *length, loff_t *ppos)
  1348. {
  1349. proc_dointvec(table, write, buffer, length, ppos);
  1350. bdi_arm_supers_timer();
  1351. return 0;
  1352. }
  1353. #ifdef CONFIG_BLOCK
  1354. void laptop_mode_timer_fn(unsigned long data)
  1355. {
  1356. struct request_queue *q = (struct request_queue *)data;
  1357. int nr_pages = global_page_state(NR_FILE_DIRTY) +
  1358. global_page_state(NR_UNSTABLE_NFS);
  1359. /*
  1360. * We want to write everything out, not just down to the dirty
  1361. * threshold
  1362. */
  1363. if (bdi_has_dirty_io(&q->backing_dev_info))
  1364. bdi_start_writeback(&q->backing_dev_info, nr_pages,
  1365. WB_REASON_LAPTOP_TIMER);
  1366. }
  1367. /*
  1368. * We've spun up the disk and we're in laptop mode: schedule writeback
  1369. * of all dirty data a few seconds from now. If the flush is already scheduled
  1370. * then push it back - the user is still using the disk.
  1371. */
  1372. void laptop_io_completion(struct backing_dev_info *info)
  1373. {
  1374. mod_timer(&info->laptop_mode_wb_timer, jiffies + laptop_mode);
  1375. }
  1376. /*
  1377. * We're in laptop mode and we've just synced. The sync's writes will have
  1378. * caused another writeback to be scheduled by laptop_io_completion.
  1379. * Nothing needs to be written back anymore, so we unschedule the writeback.
  1380. */
  1381. void laptop_sync_completion(void)
  1382. {
  1383. struct backing_dev_info *bdi;
  1384. rcu_read_lock();
  1385. list_for_each_entry_rcu(bdi, &bdi_list, bdi_list)
  1386. del_timer(&bdi->laptop_mode_wb_timer);
  1387. rcu_read_unlock();
  1388. }
  1389. #endif
  1390. /*
  1391. * If ratelimit_pages is too high then we can get into dirty-data overload
  1392. * if a large number of processes all perform writes at the same time.
  1393. * If it is too low then SMP machines will call the (expensive)
  1394. * get_writeback_state too often.
  1395. *
  1396. * Here we set ratelimit_pages to a level which ensures that when all CPUs are
  1397. * dirtying in parallel, we cannot go more than 3% (1/32) over the dirty memory
  1398. * thresholds.
  1399. */
  1400. void writeback_set_ratelimit(void)
  1401. {
  1402. unsigned long background_thresh;
  1403. unsigned long dirty_thresh;
  1404. global_dirty_limits(&background_thresh, &dirty_thresh);
  1405. ratelimit_pages = dirty_thresh / (num_online_cpus() * 32);
  1406. if (ratelimit_pages < 16)
  1407. ratelimit_pages = 16;
  1408. }
  1409. static int __cpuinit
  1410. ratelimit_handler(struct notifier_block *self, unsigned long u, void *v)
  1411. {
  1412. writeback_set_ratelimit();
  1413. return NOTIFY_DONE;
  1414. }
  1415. static struct notifier_block __cpuinitdata ratelimit_nb = {
  1416. .notifier_call = ratelimit_handler,
  1417. .next = NULL,
  1418. };
  1419. /*
  1420. * Called early on to tune the page writeback dirty limits.
  1421. *
  1422. * We used to scale dirty pages according to how total memory
  1423. * related to pages that could be allocated for buffers (by
  1424. * comparing nr_free_buffer_pages() to vm_total_pages.
  1425. *
  1426. * However, that was when we used "dirty_ratio" to scale with
  1427. * all memory, and we don't do that any more. "dirty_ratio"
  1428. * is now applied to total non-HIGHPAGE memory (by subtracting
  1429. * totalhigh_pages from vm_total_pages), and as such we can't
  1430. * get into the old insane situation any more where we had
  1431. * large amounts of dirty pages compared to a small amount of
  1432. * non-HIGHMEM memory.
  1433. *
  1434. * But we might still want to scale the dirty_ratio by how
  1435. * much memory the box has..
  1436. */
  1437. void __init page_writeback_init(void)
  1438. {
  1439. int shift;
  1440. writeback_set_ratelimit();
  1441. register_cpu_notifier(&ratelimit_nb);
  1442. shift = calc_period_shift();
  1443. prop_descriptor_init(&vm_completions, shift);
  1444. }
  1445. /**
  1446. * tag_pages_for_writeback - tag pages to be written by write_cache_pages
  1447. * @mapping: address space structure to write
  1448. * @start: starting page index
  1449. * @end: ending page index (inclusive)
  1450. *
  1451. * This function scans the page range from @start to @end (inclusive) and tags
  1452. * all pages that have DIRTY tag set with a special TOWRITE tag. The idea is
  1453. * that write_cache_pages (or whoever calls this function) will then use
  1454. * TOWRITE tag to identify pages eligible for writeback. This mechanism is
  1455. * used to avoid livelocking of writeback by a process steadily creating new
  1456. * dirty pages in the file (thus it is important for this function to be quick
  1457. * so that it can tag pages faster than a dirtying process can create them).
  1458. */
  1459. /*
  1460. * We tag pages in batches of WRITEBACK_TAG_BATCH to reduce tree_lock latency.
  1461. */
  1462. void tag_pages_for_writeback(struct address_space *mapping,
  1463. pgoff_t start, pgoff_t end)
  1464. {
  1465. #define WRITEBACK_TAG_BATCH 4096
  1466. unsigned long tagged;
  1467. do {
  1468. spin_lock_irq(&mapping->tree_lock);
  1469. tagged = radix_tree_range_tag_if_tagged(&mapping->page_tree,
  1470. &start, end, WRITEBACK_TAG_BATCH,
  1471. PAGECACHE_TAG_DIRTY, PAGECACHE_TAG_TOWRITE);
  1472. spin_unlock_irq(&mapping->tree_lock);
  1473. WARN_ON_ONCE(tagged > WRITEBACK_TAG_BATCH);
  1474. cond_resched();
  1475. /* We check 'start' to handle wrapping when end == ~0UL */
  1476. } while (tagged >= WRITEBACK_TAG_BATCH && start);
  1477. }
  1478. EXPORT_SYMBOL(tag_pages_for_writeback);
  1479. /**
  1480. * write_cache_pages - walk the list of dirty pages of the given address space and write all of them.
  1481. * @mapping: address space structure to write
  1482. * @wbc: subtract the number of written pages from *@wbc->nr_to_write
  1483. * @writepage: function called for each page
  1484. * @data: data passed to writepage function
  1485. *
  1486. * If a page is already under I/O, write_cache_pages() skips it, even
  1487. * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
  1488. * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
  1489. * and msync() need to guarantee that all the data which was dirty at the time
  1490. * the call was made get new I/O started against them. If wbc->sync_mode is
  1491. * WB_SYNC_ALL then we were called for data integrity and we must wait for
  1492. * existing IO to complete.
  1493. *
  1494. * To avoid livelocks (when other process dirties new pages), we first tag
  1495. * pages which should be written back with TOWRITE tag and only then start
  1496. * writing them. For data-integrity sync we have to be careful so that we do
  1497. * not miss some pages (e.g., because some other process has cleared TOWRITE
  1498. * tag we set). The rule we follow is that TOWRITE tag can be cleared only
  1499. * by the process clearing the DIRTY tag (and submitting the page for IO).
  1500. */
  1501. int write_cache_pages(struct address_space *mapping,
  1502. struct writeback_control *wbc, writepage_t writepage,
  1503. void *data)
  1504. {
  1505. int ret = 0;
  1506. int done = 0;
  1507. struct pagevec pvec;
  1508. int nr_pages;
  1509. pgoff_t uninitialized_var(writeback_index);
  1510. pgoff_t index;
  1511. pgoff_t end; /* Inclusive */
  1512. pgoff_t done_index;
  1513. int cycled;
  1514. int range_whole = 0;
  1515. int tag;
  1516. pagevec_init(&pvec, 0);
  1517. if (wbc->range_cyclic) {
  1518. writeback_index = mapping->writeback_index; /* prev offset */
  1519. index = writeback_index;
  1520. if (index == 0)
  1521. cycled = 1;
  1522. else
  1523. cycled = 0;
  1524. end = -1;
  1525. } else {
  1526. index = wbc->range_start >> PAGE_CACHE_SHIFT;
  1527. end = wbc->range_end >> PAGE_CACHE_SHIFT;
  1528. if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
  1529. range_whole = 1;
  1530. cycled = 1; /* ignore range_cyclic tests */
  1531. }
  1532. if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
  1533. tag = PAGECACHE_TAG_TOWRITE;
  1534. else
  1535. tag = PAGECACHE_TAG_DIRTY;
  1536. retry:
  1537. if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
  1538. tag_pages_for_writeback(mapping, index, end);
  1539. done_index = index;
  1540. while (!done && (index <= end)) {
  1541. int i;
  1542. nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
  1543. min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1);
  1544. if (nr_pages == 0)
  1545. break;
  1546. for (i = 0; i < nr_pages; i++) {
  1547. struct page *page = pvec.pages[i];
  1548. /*
  1549. * At this point, the page may be truncated or
  1550. * invalidated (changing page->mapping to NULL), or
  1551. * even swizzled back from swapper_space to tmpfs file
  1552. * mapping. However, page->index will not change
  1553. * because we have a reference on the page.
  1554. */
  1555. if (page->index > end) {
  1556. /*
  1557. * can't be range_cyclic (1st pass) because
  1558. * end == -1 in that case.
  1559. */
  1560. done = 1;
  1561. break;
  1562. }
  1563. done_index = page->index;
  1564. lock_page(page);
  1565. /*
  1566. * Page truncated or invalidated. We can freely skip it
  1567. * then, even for data integrity operations: the page
  1568. * has disappeared concurrently, so there could be no
  1569. * real expectation of this data interity operation
  1570. * even if there is now a new, dirty page at the same
  1571. * pagecache address.
  1572. */
  1573. if (unlikely(page->mapping != mapping)) {
  1574. continue_unlock:
  1575. unlock_page(page);
  1576. continue;
  1577. }
  1578. if (!PageDirty(page)) {
  1579. /* someone wrote it for us */
  1580. goto continue_unlock;
  1581. }
  1582. if (PageWriteback(page)) {
  1583. if (wbc->sync_mode != WB_SYNC_NONE)
  1584. wait_on_page_writeback(page);
  1585. else
  1586. goto continue_unlock;
  1587. }
  1588. BUG_ON(PageWriteback(page));
  1589. if (!clear_page_dirty_for_io(page))
  1590. goto continue_unlock;
  1591. trace_wbc_writepage(wbc, mapping->backing_dev_info);
  1592. ret = (*writepage)(page, wbc, data);
  1593. if (unlikely(ret)) {
  1594. if (ret == AOP_WRITEPAGE_ACTIVATE) {
  1595. unlock_page(page);
  1596. ret = 0;
  1597. } else {
  1598. /*
  1599. * done_index is set past this page,
  1600. * so media errors will not choke
  1601. * background writeout for the entire
  1602. * file. This has consequences for
  1603. * range_cyclic semantics (ie. it may
  1604. * not be suitable for data integrity
  1605. * writeout).
  1606. */
  1607. done_index = page->index + 1;
  1608. done = 1;
  1609. break;
  1610. }
  1611. }
  1612. /*
  1613. * We stop writing back only if we are not doing
  1614. * integrity sync. In case of integrity sync we have to
  1615. * keep going until we have written all the pages
  1616. * we tagged for writeback prior to entering this loop.
  1617. */
  1618. if (--wbc->nr_to_write <= 0 &&
  1619. wbc->sync_mode == WB_SYNC_NONE) {
  1620. done = 1;
  1621. break;
  1622. }
  1623. }
  1624. pagevec_release(&pvec);
  1625. cond_resched();
  1626. }
  1627. if (!cycled && !done) {
  1628. /*
  1629. * range_cyclic:
  1630. * We hit the last page and there is more work to be done: wrap
  1631. * back to the start of the file
  1632. */
  1633. cycled = 1;
  1634. index = 0;
  1635. end = writeback_index - 1;
  1636. goto retry;
  1637. }
  1638. if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
  1639. mapping->writeback_index = done_index;
  1640. return ret;
  1641. }
  1642. EXPORT_SYMBOL(write_cache_pages);
  1643. /*
  1644. * Function used by generic_writepages to call the real writepage
  1645. * function and set the mapping flags on error
  1646. */
  1647. static int __writepage(struct page *page, struct writeback_control *wbc,
  1648. void *data)
  1649. {
  1650. struct address_space *mapping = data;
  1651. int ret = mapping->a_ops->writepage(page, wbc);
  1652. mapping_set_error(mapping, ret);
  1653. return ret;
  1654. }
  1655. /**
  1656. * generic_writepages - walk the list of dirty pages of the given address space and writepage() all of them.
  1657. * @mapping: address space structure to write
  1658. * @wbc: subtract the number of written pages from *@wbc->nr_to_write
  1659. *
  1660. * This is a library function, which implements the writepages()
  1661. * address_space_operation.
  1662. */
  1663. int generic_writepages(struct address_space *mapping,
  1664. struct writeback_control *wbc)
  1665. {
  1666. struct blk_plug plug;
  1667. int ret;
  1668. /* deal with chardevs and other special file */
  1669. if (!mapping->a_ops->writepage)
  1670. return 0;
  1671. blk_start_plug(&plug);
  1672. ret = write_cache_pages(mapping, wbc, __writepage, mapping);
  1673. blk_finish_plug(&plug);
  1674. return ret;
  1675. }
  1676. EXPORT_SYMBOL(generic_writepages);
  1677. int do_writepages(struct address_space *mapping, struct writeback_control *wbc)
  1678. {
  1679. int ret;
  1680. if (wbc->nr_to_write <= 0)
  1681. return 0;
  1682. if (mapping->a_ops->writepages)
  1683. ret = mapping->a_ops->writepages(mapping, wbc);
  1684. else
  1685. ret = generic_writepages(mapping, wbc);
  1686. return ret;
  1687. }
  1688. /**
  1689. * write_one_page - write out a single page and optionally wait on I/O
  1690. * @page: the page to write
  1691. * @wait: if true, wait on writeout
  1692. *
  1693. * The page must be locked by the caller and will be unlocked upon return.
  1694. *
  1695. * write_one_page() returns a negative error code if I/O failed.
  1696. */
  1697. int write_one_page(struct page *page, int wait)
  1698. {
  1699. struct address_space *mapping = page->mapping;
  1700. int ret = 0;
  1701. struct writeback_control wbc = {
  1702. .sync_mode = WB_SYNC_ALL,
  1703. .nr_to_write = 1,
  1704. };
  1705. BUG_ON(!PageLocked(page));
  1706. if (wait)
  1707. wait_on_page_writeback(page);
  1708. if (clear_page_dirty_for_io(page)) {
  1709. page_cache_get(page);
  1710. ret = mapping->a_ops->writepage(page, &wbc);
  1711. if (ret == 0 && wait) {
  1712. wait_on_page_writeback(page);
  1713. if (PageError(page))
  1714. ret = -EIO;
  1715. }
  1716. page_cache_release(page);
  1717. } else {
  1718. unlock_page(page);
  1719. }
  1720. return ret;
  1721. }
  1722. EXPORT_SYMBOL(write_one_page);
  1723. /*
  1724. * For address_spaces which do not use buffers nor write back.
  1725. */
  1726. int __set_page_dirty_no_writeback(struct page *page)
  1727. {
  1728. if (!PageDirty(page))
  1729. return !TestSetPageDirty(page);
  1730. return 0;
  1731. }
  1732. /*
  1733. * Helper function for set_page_dirty family.
  1734. * NOTE: This relies on being atomic wrt interrupts.
  1735. */
  1736. void account_page_dirtied(struct page *page, struct address_space *mapping)
  1737. {
  1738. if (mapping_cap_account_dirty(mapping)) {
  1739. __inc_zone_page_state(page, NR_FILE_DIRTY);
  1740. __inc_zone_page_state(page, NR_DIRTIED);
  1741. __inc_bdi_stat(mapping->backing_dev_info, BDI_RECLAIMABLE);
  1742. __inc_bdi_stat(mapping->backing_dev_info, BDI_DIRTIED);
  1743. task_io_account_write(PAGE_CACHE_SIZE);
  1744. current->nr_dirtied++;
  1745. this_cpu_inc(bdp_ratelimits);
  1746. }
  1747. }
  1748. EXPORT_SYMBOL(account_page_dirtied);
  1749. /*
  1750. * Helper function for set_page_writeback family.
  1751. * NOTE: Unlike account_page_dirtied this does not rely on being atomic
  1752. * wrt interrupts.
  1753. */
  1754. void account_page_writeback(struct page *page)
  1755. {
  1756. inc_zone_page_state(page, NR_WRITEBACK);
  1757. }
  1758. EXPORT_SYMBOL(account_page_writeback);
  1759. /*
  1760. * For address_spaces which do not use buffers. Just tag the page as dirty in
  1761. * its radix tree.
  1762. *
  1763. * This is also used when a single buffer is being dirtied: we want to set the
  1764. * page dirty in that case, but not all the buffers. This is a "bottom-up"
  1765. * dirtying, whereas __set_page_dirty_buffers() is a "top-down" dirtying.
  1766. *
  1767. * Most callers have locked the page, which pins the address_space in memory.
  1768. * But zap_pte_range() does not lock the page, however in that case the
  1769. * mapping is pinned by the vma's ->vm_file reference.
  1770. *
  1771. * We take care to handle the case where the page was truncated from the
  1772. * mapping by re-checking page_mapping() inside tree_lock.
  1773. */
  1774. int __set_page_dirty_nobuffers(struct page *page)
  1775. {
  1776. if (!TestSetPageDirty(page)) {
  1777. struct address_space *mapping = page_mapping(page);
  1778. struct address_space *mapping2;
  1779. if (!mapping)
  1780. return 1;
  1781. spin_lock_irq(&mapping->tree_lock);
  1782. mapping2 = page_mapping(page);
  1783. if (mapping2) { /* Race with truncate? */
  1784. BUG_ON(mapping2 != mapping);
  1785. WARN_ON_ONCE(!PagePrivate(page) && !PageUptodate(page));
  1786. account_page_dirtied(page, mapping);
  1787. radix_tree_tag_set(&mapping->page_tree,
  1788. page_index(page), PAGECACHE_TAG_DIRTY);
  1789. }
  1790. spin_unlock_irq(&mapping->tree_lock);
  1791. if (mapping->host) {
  1792. /* !PageAnon && !swapper_space */
  1793. __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
  1794. }
  1795. return 1;
  1796. }
  1797. return 0;
  1798. }
  1799. EXPORT_SYMBOL(__set_page_dirty_nobuffers);
  1800. /*
  1801. * Call this whenever redirtying a page, to de-account the dirty counters
  1802. * (NR_DIRTIED, BDI_DIRTIED, tsk->nr_dirtied), so that they match the written
  1803. * counters (NR_WRITTEN, BDI_WRITTEN) in long term. The mismatches will lead to
  1804. * systematic errors in balanced_dirty_ratelimit and the dirty pages position
  1805. * control.
  1806. */
  1807. void account_page_redirty(struct page *page)
  1808. {
  1809. struct address_space *mapping = page->mapping;
  1810. if (mapping && mapping_cap_account_dirty(mapping)) {
  1811. current->nr_dirtied--;
  1812. dec_zone_page_state(page, NR_DIRTIED);
  1813. dec_bdi_stat(mapping->backing_dev_info, BDI_DIRTIED);
  1814. }
  1815. }
  1816. EXPORT_SYMBOL(account_page_redirty);
  1817. /*
  1818. * When a writepage implementation decides that it doesn't want to write this
  1819. * page for some reason, it should redirty the locked page via
  1820. * redirty_page_for_writepage() and it should then unlock the page and return 0
  1821. */
  1822. int redirty_page_for_writepage(struct writeback_control *wbc, struct page *page)
  1823. {
  1824. wbc->pages_skipped++;
  1825. account_page_redirty(page);
  1826. return __set_page_dirty_nobuffers(page);
  1827. }
  1828. EXPORT_SYMBOL(redirty_page_for_writepage);
  1829. /*
  1830. * Dirty a page.
  1831. *
  1832. * For pages with a mapping this should be done under the page lock
  1833. * for the benefit of asynchronous memory errors who prefer a consistent
  1834. * dirty state. This rule can be broken in some special cases,
  1835. * but should be better not to.
  1836. *
  1837. * If the mapping doesn't provide a set_page_dirty a_op, then
  1838. * just fall through and assume that it wants buffer_heads.
  1839. */
  1840. int set_page_dirty(struct page *page)
  1841. {
  1842. struct address_space *mapping = page_mapping(page);
  1843. if (likely(mapping)) {
  1844. int (*spd)(struct page *) = mapping->a_ops->set_page_dirty;
  1845. /*
  1846. * readahead/lru_deactivate_page could remain
  1847. * PG_readahead/PG_reclaim due to race with end_page_writeback
  1848. * About readahead, if the page is written, the flags would be
  1849. * reset. So no problem.
  1850. * About lru_deactivate_page, if the page is redirty, the flag
  1851. * will be reset. So no problem. but if the page is used by readahead
  1852. * it will confuse readahead and make it restart the size rampup
  1853. * process. But it's a trivial problem.
  1854. */
  1855. ClearPageReclaim(page);
  1856. #ifdef CONFIG_BLOCK
  1857. if (!spd)
  1858. spd = __set_page_dirty_buffers;
  1859. #endif
  1860. return (*spd)(page);
  1861. }
  1862. if (!PageDirty(page)) {
  1863. if (!TestSetPageDirty(page))
  1864. return 1;
  1865. }
  1866. return 0;
  1867. }
  1868. EXPORT_SYMBOL(set_page_dirty);
  1869. /*
  1870. * set_page_dirty() is racy if the caller has no reference against
  1871. * page->mapping->host, and if the page is unlocked. This is because another
  1872. * CPU could truncate the page off the mapping and then free the mapping.
  1873. *
  1874. * Usually, the page _is_ locked, or the caller is a user-space process which
  1875. * holds a reference on the inode by having an open file.
  1876. *
  1877. * In other cases, the page should be locked before running set_page_dirty().
  1878. */
  1879. int set_page_dirty_lock(struct page *page)
  1880. {
  1881. int ret;
  1882. lock_page(page);
  1883. ret = set_page_dirty(page);
  1884. unlock_page(page);
  1885. return ret;
  1886. }
  1887. EXPORT_SYMBOL(set_page_dirty_lock);
  1888. /*
  1889. * Clear a page's dirty flag, while caring for dirty memory accounting.
  1890. * Returns true if the page was previously dirty.
  1891. *
  1892. * This is for preparing to put the page under writeout. We leave the page
  1893. * tagged as dirty in the radix tree so that a concurrent write-for-sync
  1894. * can discover it via a PAGECACHE_TAG_DIRTY walk. The ->writepage
  1895. * implementation will run either set_page_writeback() or set_page_dirty(),
  1896. * at which stage we bring the page's dirty flag and radix-tree dirty tag
  1897. * back into sync.
  1898. *
  1899. * This incoherency between the page's dirty flag and radix-tree tag is
  1900. * unfortunate, but it only exists while the page is locked.
  1901. */
  1902. int clear_page_dirty_for_io(struct page *page)
  1903. {
  1904. struct address_space *mapping = page_mapping(page);
  1905. BUG_ON(!PageLocked(page));
  1906. if (mapping && mapping_cap_account_dirty(mapping)) {
  1907. /*
  1908. * Yes, Virginia, this is indeed insane.
  1909. *
  1910. * We use this sequence to make sure that
  1911. * (a) we account for dirty stats properly
  1912. * (b) we tell the low-level filesystem to
  1913. * mark the whole page dirty if it was
  1914. * dirty in a pagetable. Only to then
  1915. * (c) clean the page again and return 1 to
  1916. * cause the writeback.
  1917. *
  1918. * This way we avoid all nasty races with the
  1919. * dirty bit in multiple places and clearing
  1920. * them concurrently from different threads.
  1921. *
  1922. * Note! Normally the "set_page_dirty(page)"
  1923. * has no effect on the actual dirty bit - since
  1924. * that will already usually be set. But we
  1925. * need the side effects, and it can help us
  1926. * avoid races.
  1927. *
  1928. * We basically use the page "master dirty bit"
  1929. * as a serialization point for all the different
  1930. * threads doing their things.
  1931. */
  1932. if (page_mkclean(page))
  1933. set_page_dirty(page);
  1934. /*
  1935. * We carefully synchronise fault handlers against
  1936. * installing a dirty pte and marking the page dirty
  1937. * at this point. We do this by having them hold the
  1938. * page lock at some point after installing their
  1939. * pte, but before marking the page dirty.
  1940. * Pages are always locked coming in here, so we get
  1941. * the desired exclusion. See mm/memory.c:do_wp_page()
  1942. * for more comments.
  1943. */
  1944. if (TestClearPageDirty(page)) {
  1945. dec_zone_page_state(page, NR_FILE_DIRTY);
  1946. dec_bdi_stat(mapping->backing_dev_info,
  1947. BDI_RECLAIMABLE);
  1948. return 1;
  1949. }
  1950. return 0;
  1951. }
  1952. return TestClearPageDirty(page);
  1953. }
  1954. EXPORT_SYMBOL(clear_page_dirty_for_io);
  1955. int test_clear_page_writeback(struct page *page)
  1956. {
  1957. struct address_space *mapping = page_mapping(page);
  1958. int ret;
  1959. if (mapping) {
  1960. struct backing_dev_info *bdi = mapping->backing_dev_info;
  1961. unsigned long flags;
  1962. spin_lock_irqsave(&mapping->tree_lock, flags);
  1963. ret = TestClearPageWriteback(page);
  1964. if (ret) {
  1965. radix_tree_tag_clear(&mapping->page_tree,
  1966. page_index(page),
  1967. PAGECACHE_TAG_WRITEBACK);
  1968. if (bdi_cap_account_writeback(bdi)) {
  1969. __dec_bdi_stat(bdi, BDI_WRITEBACK);
  1970. __bdi_writeout_inc(bdi);
  1971. }
  1972. }
  1973. spin_unlock_irqrestore(&mapping->tree_lock, flags);
  1974. } else {
  1975. ret = TestClearPageWriteback(page);
  1976. }
  1977. if (ret) {
  1978. dec_zone_page_state(page, NR_WRITEBACK);
  1979. inc_zone_page_state(page, NR_WRITTEN);
  1980. }
  1981. return ret;
  1982. }
  1983. int test_set_page_writeback(struct page *page)
  1984. {
  1985. struct address_space *mapping = page_mapping(page);
  1986. int ret;
  1987. if (mapping) {
  1988. struct backing_dev_info *bdi = mapping->backing_dev_info;
  1989. unsigned long flags;
  1990. spin_lock_irqsave(&mapping->tree_lock, flags);
  1991. ret = TestSetPageWriteback(page);
  1992. if (!ret) {
  1993. radix_tree_tag_set(&mapping->page_tree,
  1994. page_index(page),
  1995. PAGECACHE_TAG_WRITEBACK);
  1996. if (bdi_cap_account_writeback(bdi))
  1997. __inc_bdi_stat(bdi, BDI_WRITEBACK);
  1998. }
  1999. if (!PageDirty(page))
  2000. radix_tree_tag_clear(&mapping->page_tree,
  2001. page_index(page),
  2002. PAGECACHE_TAG_DIRTY);
  2003. radix_tree_tag_clear(&mapping->page_tree,
  2004. page_index(page),
  2005. PAGECACHE_TAG_TOWRITE);
  2006. spin_unlock_irqrestore(&mapping->tree_lock, flags);
  2007. } else {
  2008. ret = TestSetPageWriteback(page);
  2009. }
  2010. if (!ret)
  2011. account_page_writeback(page);
  2012. return ret;
  2013. }
  2014. EXPORT_SYMBOL(test_set_page_writeback);
  2015. /*
  2016. * Return true if any of the pages in the mapping are marked with the
  2017. * passed tag.
  2018. */
  2019. int mapping_tagged(struct address_space *mapping, int tag)
  2020. {
  2021. return radix_tree_tagged(&mapping->page_tree, tag);
  2022. }
  2023. EXPORT_SYMBOL(mapping_tagged);