backing-dev.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611
  1. #include <linux/wait.h>
  2. #include <linux/backing-dev.h>
  3. #include <linux/kthread.h>
  4. #include <linux/freezer.h>
  5. #include <linux/fs.h>
  6. #include <linux/pagemap.h>
  7. #include <linux/mm.h>
  8. #include <linux/sched.h>
  9. #include <linux/module.h>
  10. #include <linux/writeback.h>
  11. #include <linux/device.h>
  12. #include <trace/events/writeback.h>
  13. static atomic_long_t bdi_seq = ATOMIC_LONG_INIT(0);
  14. struct backing_dev_info noop_backing_dev_info = {
  15. .name = "noop",
  16. .capabilities = BDI_CAP_NO_ACCT_AND_WRITEBACK,
  17. };
  18. static struct class *bdi_class;
  19. /*
  20. * bdi_lock protects updates to bdi_list. bdi_list has RCU reader side
  21. * locking.
  22. */
  23. DEFINE_SPINLOCK(bdi_lock);
  24. LIST_HEAD(bdi_list);
  25. /* bdi_wq serves all asynchronous writeback tasks */
  26. struct workqueue_struct *bdi_wq;
  27. #ifdef CONFIG_DEBUG_FS
  28. #include <linux/debugfs.h>
  29. #include <linux/seq_file.h>
  30. static struct dentry *bdi_debug_root;
  31. static void bdi_debug_init(void)
  32. {
  33. bdi_debug_root = debugfs_create_dir("bdi", NULL);
  34. }
  35. static int bdi_debug_stats_show(struct seq_file *m, void *v)
  36. {
  37. struct backing_dev_info *bdi = m->private;
  38. struct bdi_writeback *wb = &bdi->wb;
  39. unsigned long background_thresh;
  40. unsigned long dirty_thresh;
  41. unsigned long bdi_thresh;
  42. unsigned long nr_dirty, nr_io, nr_more_io;
  43. struct inode *inode;
  44. nr_dirty = nr_io = nr_more_io = 0;
  45. spin_lock(&wb->list_lock);
  46. list_for_each_entry(inode, &wb->b_dirty, i_wb_list)
  47. nr_dirty++;
  48. list_for_each_entry(inode, &wb->b_io, i_wb_list)
  49. nr_io++;
  50. list_for_each_entry(inode, &wb->b_more_io, i_wb_list)
  51. nr_more_io++;
  52. spin_unlock(&wb->list_lock);
  53. global_dirty_limits(&background_thresh, &dirty_thresh);
  54. bdi_thresh = bdi_dirty_limit(bdi, dirty_thresh);
  55. #define K(x) ((x) << (PAGE_SHIFT - 10))
  56. seq_printf(m,
  57. "BdiWriteback: %10lu kB\n"
  58. "BdiReclaimable: %10lu kB\n"
  59. "BdiDirtyThresh: %10lu kB\n"
  60. "DirtyThresh: %10lu kB\n"
  61. "BackgroundThresh: %10lu kB\n"
  62. "BdiDirtied: %10lu kB\n"
  63. "BdiWritten: %10lu kB\n"
  64. "BdiWriteBandwidth: %10lu kBps\n"
  65. "b_dirty: %10lu\n"
  66. "b_io: %10lu\n"
  67. "b_more_io: %10lu\n"
  68. "bdi_list: %10u\n"
  69. "state: %10lx\n",
  70. (unsigned long) K(bdi_stat(bdi, BDI_WRITEBACK)),
  71. (unsigned long) K(bdi_stat(bdi, BDI_RECLAIMABLE)),
  72. K(bdi_thresh),
  73. K(dirty_thresh),
  74. K(background_thresh),
  75. (unsigned long) K(bdi_stat(bdi, BDI_DIRTIED)),
  76. (unsigned long) K(bdi_stat(bdi, BDI_WRITTEN)),
  77. (unsigned long) K(bdi->write_bandwidth),
  78. nr_dirty,
  79. nr_io,
  80. nr_more_io,
  81. !list_empty(&bdi->bdi_list), bdi->state);
  82. #undef K
  83. return 0;
  84. }
  85. static int bdi_debug_stats_open(struct inode *inode, struct file *file)
  86. {
  87. return single_open(file, bdi_debug_stats_show, inode->i_private);
  88. }
  89. static const struct file_operations bdi_debug_stats_fops = {
  90. .open = bdi_debug_stats_open,
  91. .read = seq_read,
  92. .llseek = seq_lseek,
  93. .release = single_release,
  94. };
  95. static void bdi_debug_register(struct backing_dev_info *bdi, const char *name)
  96. {
  97. bdi->debug_dir = debugfs_create_dir(name, bdi_debug_root);
  98. bdi->debug_stats = debugfs_create_file("stats", 0444, bdi->debug_dir,
  99. bdi, &bdi_debug_stats_fops);
  100. }
  101. static void bdi_debug_unregister(struct backing_dev_info *bdi)
  102. {
  103. debugfs_remove(bdi->debug_stats);
  104. debugfs_remove(bdi->debug_dir);
  105. }
  106. #else
  107. static inline void bdi_debug_init(void)
  108. {
  109. }
  110. static inline void bdi_debug_register(struct backing_dev_info *bdi,
  111. const char *name)
  112. {
  113. }
  114. static inline void bdi_debug_unregister(struct backing_dev_info *bdi)
  115. {
  116. }
  117. #endif
  118. static ssize_t read_ahead_kb_store(struct device *dev,
  119. struct device_attribute *attr,
  120. const char *buf, size_t count)
  121. {
  122. struct backing_dev_info *bdi = dev_get_drvdata(dev);
  123. unsigned long read_ahead_kb;
  124. ssize_t ret;
  125. ret = kstrtoul(buf, 10, &read_ahead_kb);
  126. if (ret < 0)
  127. return ret;
  128. bdi->ra_pages = read_ahead_kb >> (PAGE_SHIFT - 10);
  129. return count;
  130. }
  131. #define K(pages) ((pages) << (PAGE_SHIFT - 10))
  132. #define BDI_SHOW(name, expr) \
  133. static ssize_t name##_show(struct device *dev, \
  134. struct device_attribute *attr, char *page) \
  135. { \
  136. struct backing_dev_info *bdi = dev_get_drvdata(dev); \
  137. \
  138. return snprintf(page, PAGE_SIZE-1, "%lld\n", (long long)expr); \
  139. } \
  140. static DEVICE_ATTR_RW(name);
  141. BDI_SHOW(read_ahead_kb, K(bdi->ra_pages))
  142. static ssize_t min_ratio_store(struct device *dev,
  143. struct device_attribute *attr, const char *buf, size_t count)
  144. {
  145. struct backing_dev_info *bdi = dev_get_drvdata(dev);
  146. unsigned int ratio;
  147. ssize_t ret;
  148. ret = kstrtouint(buf, 10, &ratio);
  149. if (ret < 0)
  150. return ret;
  151. ret = bdi_set_min_ratio(bdi, ratio);
  152. if (!ret)
  153. ret = count;
  154. return ret;
  155. }
  156. BDI_SHOW(min_ratio, bdi->min_ratio)
  157. static ssize_t max_ratio_store(struct device *dev,
  158. struct device_attribute *attr, const char *buf, size_t count)
  159. {
  160. struct backing_dev_info *bdi = dev_get_drvdata(dev);
  161. unsigned int ratio;
  162. ssize_t ret;
  163. ret = kstrtouint(buf, 10, &ratio);
  164. if (ret < 0)
  165. return ret;
  166. ret = bdi_set_max_ratio(bdi, ratio);
  167. if (!ret)
  168. ret = count;
  169. return ret;
  170. }
  171. BDI_SHOW(max_ratio, bdi->max_ratio)
  172. static ssize_t stable_pages_required_show(struct device *dev,
  173. struct device_attribute *attr,
  174. char *page)
  175. {
  176. struct backing_dev_info *bdi = dev_get_drvdata(dev);
  177. return snprintf(page, PAGE_SIZE-1, "%d\n",
  178. bdi_cap_stable_pages_required(bdi) ? 1 : 0);
  179. }
  180. static DEVICE_ATTR_RO(stable_pages_required);
  181. static struct attribute *bdi_dev_attrs[] = {
  182. &dev_attr_read_ahead_kb.attr,
  183. &dev_attr_min_ratio.attr,
  184. &dev_attr_max_ratio.attr,
  185. &dev_attr_stable_pages_required.attr,
  186. NULL,
  187. };
  188. ATTRIBUTE_GROUPS(bdi_dev);
  189. static __init int bdi_class_init(void)
  190. {
  191. bdi_class = class_create(THIS_MODULE, "bdi");
  192. if (IS_ERR(bdi_class))
  193. return PTR_ERR(bdi_class);
  194. bdi_class->dev_groups = bdi_dev_groups;
  195. bdi_debug_init();
  196. return 0;
  197. }
  198. postcore_initcall(bdi_class_init);
  199. static int __init default_bdi_init(void)
  200. {
  201. int err;
  202. bdi_wq = alloc_workqueue("writeback", WQ_MEM_RECLAIM | WQ_FREEZABLE |
  203. WQ_UNBOUND | WQ_SYSFS, 0);
  204. if (!bdi_wq)
  205. return -ENOMEM;
  206. err = bdi_init(&noop_backing_dev_info);
  207. return err;
  208. }
  209. subsys_initcall(default_bdi_init);
  210. int bdi_has_dirty_io(struct backing_dev_info *bdi)
  211. {
  212. return wb_has_dirty_io(&bdi->wb);
  213. }
  214. /*
  215. * This function is used when the first inode for this bdi is marked dirty. It
  216. * wakes-up the corresponding bdi thread which should then take care of the
  217. * periodic background write-out of dirty inodes. Since the write-out would
  218. * starts only 'dirty_writeback_interval' centisecs from now anyway, we just
  219. * set up a timer which wakes the bdi thread up later.
  220. *
  221. * Note, we wouldn't bother setting up the timer, but this function is on the
  222. * fast-path (used by '__mark_inode_dirty()'), so we save few context switches
  223. * by delaying the wake-up.
  224. *
  225. * We have to be careful not to postpone flush work if it is scheduled for
  226. * earlier. Thus we use queue_delayed_work().
  227. */
  228. void bdi_wakeup_thread_delayed(struct backing_dev_info *bdi)
  229. {
  230. unsigned long timeout;
  231. timeout = msecs_to_jiffies(dirty_writeback_interval * 10);
  232. spin_lock_bh(&bdi->wb_lock);
  233. if (test_bit(BDI_registered, &bdi->state))
  234. queue_delayed_work(bdi_wq, &bdi->wb.dwork, timeout);
  235. spin_unlock_bh(&bdi->wb_lock);
  236. }
  237. /*
  238. * Remove bdi from bdi_list, and ensure that it is no longer visible
  239. */
  240. static void bdi_remove_from_list(struct backing_dev_info *bdi)
  241. {
  242. spin_lock_bh(&bdi_lock);
  243. list_del_rcu(&bdi->bdi_list);
  244. spin_unlock_bh(&bdi_lock);
  245. synchronize_rcu_expedited();
  246. }
  247. int bdi_register(struct backing_dev_info *bdi, struct device *parent,
  248. const char *fmt, ...)
  249. {
  250. va_list args;
  251. struct device *dev;
  252. if (bdi->dev) /* The driver needs to use separate queues per device */
  253. return 0;
  254. va_start(args, fmt);
  255. dev = device_create_vargs(bdi_class, parent, MKDEV(0, 0), bdi, fmt, args);
  256. va_end(args);
  257. if (IS_ERR(dev))
  258. return PTR_ERR(dev);
  259. bdi->dev = dev;
  260. bdi_debug_register(bdi, dev_name(dev));
  261. set_bit(BDI_registered, &bdi->state);
  262. spin_lock_bh(&bdi_lock);
  263. list_add_tail_rcu(&bdi->bdi_list, &bdi_list);
  264. spin_unlock_bh(&bdi_lock);
  265. trace_writeback_bdi_register(bdi);
  266. return 0;
  267. }
  268. EXPORT_SYMBOL(bdi_register);
  269. int bdi_register_dev(struct backing_dev_info *bdi, dev_t dev)
  270. {
  271. return bdi_register(bdi, NULL, "%u:%u", MAJOR(dev), MINOR(dev));
  272. }
  273. EXPORT_SYMBOL(bdi_register_dev);
  274. /*
  275. * Remove bdi from the global list and shutdown any threads we have running
  276. */
  277. static void bdi_wb_shutdown(struct backing_dev_info *bdi)
  278. {
  279. /* Make sure nobody queues further work */
  280. spin_lock_bh(&bdi->wb_lock);
  281. if (!test_and_clear_bit(BDI_registered, &bdi->state)) {
  282. spin_unlock_bh(&bdi->wb_lock);
  283. return;
  284. }
  285. spin_unlock_bh(&bdi->wb_lock);
  286. /*
  287. * Make sure nobody finds us on the bdi_list anymore
  288. */
  289. bdi_remove_from_list(bdi);
  290. /*
  291. * Drain work list and shutdown the delayed_work. At this point,
  292. * @bdi->bdi_list is empty telling bdi_Writeback_workfn() that @bdi
  293. * is dying and its work_list needs to be drained no matter what.
  294. */
  295. mod_delayed_work(bdi_wq, &bdi->wb.dwork, 0);
  296. flush_delayed_work(&bdi->wb.dwork);
  297. }
  298. /*
  299. * Called when the device behind @bdi has been removed or ejected.
  300. *
  301. * We can't really do much here except for reducing the dirty ratio at
  302. * the moment. In the future we should be able to set a flag so that
  303. * the filesystem can handle errors at mark_inode_dirty time instead
  304. * of only at writeback time.
  305. */
  306. void bdi_unregister(struct backing_dev_info *bdi)
  307. {
  308. if (WARN_ON_ONCE(!bdi->dev))
  309. return;
  310. bdi_set_min_ratio(bdi, 0);
  311. }
  312. EXPORT_SYMBOL(bdi_unregister);
  313. static void bdi_wb_init(struct bdi_writeback *wb, struct backing_dev_info *bdi)
  314. {
  315. memset(wb, 0, sizeof(*wb));
  316. wb->bdi = bdi;
  317. wb->last_old_flush = jiffies;
  318. INIT_LIST_HEAD(&wb->b_dirty);
  319. INIT_LIST_HEAD(&wb->b_io);
  320. INIT_LIST_HEAD(&wb->b_more_io);
  321. spin_lock_init(&wb->list_lock);
  322. INIT_DELAYED_WORK(&wb->dwork, bdi_writeback_workfn);
  323. }
  324. /*
  325. * Initial write bandwidth: 100 MB/s
  326. */
  327. #define INIT_BW (100 << (20 - PAGE_SHIFT))
  328. int bdi_init(struct backing_dev_info *bdi)
  329. {
  330. int i, err;
  331. bdi->dev = NULL;
  332. bdi->min_ratio = 0;
  333. bdi->max_ratio = 100;
  334. bdi->max_prop_frac = FPROP_FRAC_BASE;
  335. spin_lock_init(&bdi->wb_lock);
  336. INIT_LIST_HEAD(&bdi->bdi_list);
  337. INIT_LIST_HEAD(&bdi->work_list);
  338. bdi_wb_init(&bdi->wb, bdi);
  339. for (i = 0; i < NR_BDI_STAT_ITEMS; i++) {
  340. err = percpu_counter_init(&bdi->bdi_stat[i], 0, GFP_KERNEL);
  341. if (err)
  342. goto err;
  343. }
  344. bdi->dirty_exceeded = 0;
  345. bdi->bw_time_stamp = jiffies;
  346. bdi->written_stamp = 0;
  347. bdi->balanced_dirty_ratelimit = INIT_BW;
  348. bdi->dirty_ratelimit = INIT_BW;
  349. bdi->write_bandwidth = INIT_BW;
  350. bdi->avg_write_bandwidth = INIT_BW;
  351. err = fprop_local_init_percpu(&bdi->completions, GFP_KERNEL);
  352. if (err) {
  353. err:
  354. while (i--)
  355. percpu_counter_destroy(&bdi->bdi_stat[i]);
  356. }
  357. return err;
  358. }
  359. EXPORT_SYMBOL(bdi_init);
  360. void bdi_destroy(struct backing_dev_info *bdi)
  361. {
  362. int i;
  363. bdi_wb_shutdown(bdi);
  364. WARN_ON(!list_empty(&bdi->work_list));
  365. WARN_ON(delayed_work_pending(&bdi->wb.dwork));
  366. if (bdi->dev) {
  367. bdi_debug_unregister(bdi);
  368. device_unregister(bdi->dev);
  369. bdi->dev = NULL;
  370. }
  371. for (i = 0; i < NR_BDI_STAT_ITEMS; i++)
  372. percpu_counter_destroy(&bdi->bdi_stat[i]);
  373. fprop_local_destroy_percpu(&bdi->completions);
  374. }
  375. EXPORT_SYMBOL(bdi_destroy);
  376. /*
  377. * For use from filesystems to quickly init and register a bdi associated
  378. * with dirty writeback
  379. */
  380. int bdi_setup_and_register(struct backing_dev_info *bdi, char *name)
  381. {
  382. int err;
  383. bdi->name = name;
  384. bdi->capabilities = 0;
  385. err = bdi_init(bdi);
  386. if (err)
  387. return err;
  388. err = bdi_register(bdi, NULL, "%.28s-%ld", name,
  389. atomic_long_inc_return(&bdi_seq));
  390. if (err) {
  391. bdi_destroy(bdi);
  392. return err;
  393. }
  394. return 0;
  395. }
  396. EXPORT_SYMBOL(bdi_setup_and_register);
  397. static wait_queue_head_t congestion_wqh[2] = {
  398. __WAIT_QUEUE_HEAD_INITIALIZER(congestion_wqh[0]),
  399. __WAIT_QUEUE_HEAD_INITIALIZER(congestion_wqh[1])
  400. };
  401. static atomic_t nr_bdi_congested[2];
  402. void clear_bdi_congested(struct backing_dev_info *bdi, int sync)
  403. {
  404. enum bdi_state bit;
  405. wait_queue_head_t *wqh = &congestion_wqh[sync];
  406. bit = sync ? BDI_sync_congested : BDI_async_congested;
  407. if (test_and_clear_bit(bit, &bdi->state))
  408. atomic_dec(&nr_bdi_congested[sync]);
  409. smp_mb__after_atomic();
  410. if (waitqueue_active(wqh))
  411. wake_up(wqh);
  412. }
  413. EXPORT_SYMBOL(clear_bdi_congested);
  414. void set_bdi_congested(struct backing_dev_info *bdi, int sync)
  415. {
  416. enum bdi_state bit;
  417. bit = sync ? BDI_sync_congested : BDI_async_congested;
  418. if (!test_and_set_bit(bit, &bdi->state))
  419. atomic_inc(&nr_bdi_congested[sync]);
  420. }
  421. EXPORT_SYMBOL(set_bdi_congested);
  422. /**
  423. * congestion_wait - wait for a backing_dev to become uncongested
  424. * @sync: SYNC or ASYNC IO
  425. * @timeout: timeout in jiffies
  426. *
  427. * Waits for up to @timeout jiffies for a backing_dev (any backing_dev) to exit
  428. * write congestion. If no backing_devs are congested then just wait for the
  429. * next write to be completed.
  430. */
  431. long congestion_wait(int sync, long timeout)
  432. {
  433. long ret;
  434. unsigned long start = jiffies;
  435. DEFINE_WAIT(wait);
  436. wait_queue_head_t *wqh = &congestion_wqh[sync];
  437. prepare_to_wait(wqh, &wait, TASK_UNINTERRUPTIBLE);
  438. ret = io_schedule_timeout(timeout);
  439. finish_wait(wqh, &wait);
  440. trace_writeback_congestion_wait(jiffies_to_usecs(timeout),
  441. jiffies_to_usecs(jiffies - start));
  442. return ret;
  443. }
  444. EXPORT_SYMBOL(congestion_wait);
  445. /**
  446. * wait_iff_congested - Conditionally wait for a backing_dev to become uncongested or a zone to complete writes
  447. * @zone: A zone to check if it is heavily congested
  448. * @sync: SYNC or ASYNC IO
  449. * @timeout: timeout in jiffies
  450. *
  451. * In the event of a congested backing_dev (any backing_dev) and the given
  452. * @zone has experienced recent congestion, this waits for up to @timeout
  453. * jiffies for either a BDI to exit congestion of the given @sync queue
  454. * or a write to complete.
  455. *
  456. * In the absence of zone congestion, cond_resched() is called to yield
  457. * the processor if necessary but otherwise does not sleep.
  458. *
  459. * The return value is 0 if the sleep is for the full timeout. Otherwise,
  460. * it is the number of jiffies that were still remaining when the function
  461. * returned. return_value == timeout implies the function did not sleep.
  462. */
  463. long wait_iff_congested(struct zone *zone, int sync, long timeout)
  464. {
  465. long ret;
  466. unsigned long start = jiffies;
  467. DEFINE_WAIT(wait);
  468. wait_queue_head_t *wqh = &congestion_wqh[sync];
  469. /*
  470. * If there is no congestion, or heavy congestion is not being
  471. * encountered in the current zone, yield if necessary instead
  472. * of sleeping on the congestion queue
  473. */
  474. if (atomic_read(&nr_bdi_congested[sync]) == 0 ||
  475. !test_bit(ZONE_CONGESTED, &zone->flags)) {
  476. cond_resched();
  477. /* In case we scheduled, work out time remaining */
  478. ret = timeout - (jiffies - start);
  479. if (ret < 0)
  480. ret = 0;
  481. goto out;
  482. }
  483. /* Sleep until uncongested or a write happens */
  484. prepare_to_wait(wqh, &wait, TASK_UNINTERRUPTIBLE);
  485. ret = io_schedule_timeout(timeout);
  486. finish_wait(wqh, &wait);
  487. out:
  488. trace_writeback_wait_iff_congested(jiffies_to_usecs(timeout),
  489. jiffies_to_usecs(jiffies - start));
  490. return ret;
  491. }
  492. EXPORT_SYMBOL(wait_iff_congested);
  493. int pdflush_proc_obsolete(struct ctl_table *table, int write,
  494. void __user *buffer, size_t *lenp, loff_t *ppos)
  495. {
  496. char kbuf[] = "0\n";
  497. if (*ppos || *lenp < sizeof(kbuf)) {
  498. *lenp = 0;
  499. return 0;
  500. }
  501. if (copy_to_user(buffer, kbuf, sizeof(kbuf)))
  502. return -EFAULT;
  503. printk_once(KERN_WARNING "%s exported in /proc is scheduled for removal\n",
  504. table->procname);
  505. *lenp = 2;
  506. *ppos += *lenp;
  507. return 2;
  508. }