writeback.h 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. /*
  2. * include/linux/writeback.h
  3. */
  4. #ifndef WRITEBACK_H
  5. #define WRITEBACK_H
  6. #include <linux/sched.h>
  7. #include <linux/fs.h>
  8. DECLARE_PER_CPU(int, dirty_throttle_leaks);
  9. /*
  10. * The 1/4 region under the global dirty thresh is for smooth dirty throttling:
  11. *
  12. * (thresh - thresh/DIRTY_FULL_SCOPE, thresh)
  13. *
  14. * Further beyond, all dirtier tasks will enter a loop waiting (possibly long
  15. * time) for the dirty pages to drop, unless written enough pages.
  16. *
  17. * The global dirty threshold is normally equal to the global dirty limit,
  18. * except when the system suddenly allocates a lot of anonymous memory and
  19. * knocks down the global dirty threshold quickly, in which case the global
  20. * dirty limit will follow down slowly to prevent livelocking all dirtier tasks.
  21. */
  22. #define DIRTY_SCOPE 8
  23. #define DIRTY_FULL_SCOPE (DIRTY_SCOPE / 2)
  24. struct backing_dev_info;
  25. /*
  26. * fs/fs-writeback.c
  27. */
  28. enum writeback_sync_modes {
  29. WB_SYNC_NONE, /* Don't wait on anything */
  30. WB_SYNC_ALL, /* Wait on every mapping */
  31. };
  32. /*
  33. * why some writeback work was initiated
  34. */
  35. enum wb_reason {
  36. WB_REASON_BACKGROUND,
  37. WB_REASON_TRY_TO_FREE_PAGES,
  38. WB_REASON_SYNC,
  39. WB_REASON_PERIODIC,
  40. WB_REASON_LAPTOP_TIMER,
  41. WB_REASON_FREE_MORE_MEM,
  42. WB_REASON_FS_FREE_SPACE,
  43. WB_REASON_FORKER_THREAD,
  44. WB_REASON_MAX,
  45. };
  46. extern const char *wb_reason_name[];
  47. /*
  48. * A control structure which tells the writeback code what to do. These are
  49. * always on the stack, and hence need no locking. They are always initialised
  50. * in a manner such that unspecified fields are set to zero.
  51. */
  52. struct writeback_control {
  53. enum writeback_sync_modes sync_mode;
  54. long nr_to_write; /* Write this many pages, and decrement
  55. this for each page written */
  56. long pages_skipped; /* Pages which were not written */
  57. /*
  58. * For a_ops->writepages(): if start or end are non-zero then this is
  59. * a hint that the filesystem need only write out the pages inside that
  60. * byterange. The byte at `end' is included in the writeout request.
  61. */
  62. loff_t range_start;
  63. loff_t range_end;
  64. unsigned for_kupdate:1; /* A kupdate writeback */
  65. unsigned for_background:1; /* A background writeback */
  66. unsigned tagged_writepages:1; /* tag-and-write to avoid livelock */
  67. unsigned for_reclaim:1; /* Invoked from the page allocator */
  68. unsigned range_cyclic:1; /* range_start is cyclic */
  69. unsigned for_sync:1; /* sync(2) WB_SYNC_ALL writeback */
  70. };
  71. /*
  72. * fs/fs-writeback.c
  73. */
  74. struct bdi_writeback;
  75. int inode_wait(void *);
  76. void writeback_inodes_sb(struct super_block *, enum wb_reason reason);
  77. void writeback_inodes_sb_nr(struct super_block *, unsigned long nr,
  78. enum wb_reason reason);
  79. int writeback_inodes_sb_if_idle(struct super_block *, enum wb_reason reason);
  80. int writeback_inodes_sb_nr_if_idle(struct super_block *, unsigned long nr,
  81. enum wb_reason reason);
  82. void sync_inodes_sb(struct super_block *);
  83. long writeback_inodes_wb(struct bdi_writeback *wb, long nr_pages,
  84. enum wb_reason reason);
  85. long wb_do_writeback(struct bdi_writeback *wb, int force_wait);
  86. void wakeup_flusher_threads(long nr_pages, enum wb_reason reason);
  87. /* writeback.h requires fs.h; it, too, is not included from here. */
  88. static inline void wait_on_inode(struct inode *inode)
  89. {
  90. might_sleep();
  91. wait_on_bit(&inode->i_state, __I_NEW, inode_wait, TASK_UNINTERRUPTIBLE);
  92. }
  93. static inline void inode_sync_wait(struct inode *inode)
  94. {
  95. might_sleep();
  96. wait_on_bit(&inode->i_state, __I_SYNC, inode_wait,
  97. TASK_UNINTERRUPTIBLE);
  98. }
  99. /*
  100. * mm/page-writeback.c
  101. */
  102. #ifdef CONFIG_BLOCK
  103. void laptop_io_completion(struct backing_dev_info *info);
  104. void laptop_sync_completion(void);
  105. void laptop_mode_sync(struct work_struct *work);
  106. void laptop_mode_timer_fn(unsigned long data);
  107. #else
  108. static inline void laptop_sync_completion(void) { }
  109. #endif
  110. void throttle_vm_writeout(gfp_t gfp_mask);
  111. bool zone_dirty_ok(struct zone *zone);
  112. extern unsigned long global_dirty_limit;
  113. /* These are exported to sysctl. */
  114. extern int dirty_background_ratio;
  115. extern unsigned long dirty_background_bytes;
  116. extern int vm_dirty_ratio;
  117. extern unsigned long vm_dirty_bytes;
  118. extern unsigned int dirty_writeback_interval;
  119. extern unsigned int dirty_expire_interval;
  120. extern int vm_highmem_is_dirtyable;
  121. extern int block_dump;
  122. extern int laptop_mode;
  123. extern int dirty_background_ratio_handler(struct ctl_table *table, int write,
  124. void __user *buffer, size_t *lenp,
  125. loff_t *ppos);
  126. extern int dirty_background_bytes_handler(struct ctl_table *table, int write,
  127. void __user *buffer, size_t *lenp,
  128. loff_t *ppos);
  129. extern int dirty_ratio_handler(struct ctl_table *table, int write,
  130. void __user *buffer, size_t *lenp,
  131. loff_t *ppos);
  132. extern int dirty_bytes_handler(struct ctl_table *table, int write,
  133. void __user *buffer, size_t *lenp,
  134. loff_t *ppos);
  135. struct ctl_table;
  136. int dirty_writeback_centisecs_handler(struct ctl_table *, int,
  137. void __user *, size_t *, loff_t *);
  138. void global_dirty_limits(unsigned long *pbackground, unsigned long *pdirty);
  139. unsigned long bdi_dirty_limit(struct backing_dev_info *bdi,
  140. unsigned long dirty);
  141. void __bdi_update_bandwidth(struct backing_dev_info *bdi,
  142. unsigned long thresh,
  143. unsigned long bg_thresh,
  144. unsigned long dirty,
  145. unsigned long bdi_thresh,
  146. unsigned long bdi_dirty,
  147. unsigned long start_time);
  148. void page_writeback_init(void);
  149. void balance_dirty_pages_ratelimited_nr(struct address_space *mapping,
  150. unsigned long nr_pages_dirtied);
  151. static inline void
  152. balance_dirty_pages_ratelimited(struct address_space *mapping)
  153. {
  154. balance_dirty_pages_ratelimited_nr(mapping, 1);
  155. }
  156. typedef int (*writepage_t)(struct page *page, struct writeback_control *wbc,
  157. void *data);
  158. int generic_writepages(struct address_space *mapping,
  159. struct writeback_control *wbc);
  160. void tag_pages_for_writeback(struct address_space *mapping,
  161. pgoff_t start, pgoff_t end);
  162. int write_cache_pages(struct address_space *mapping,
  163. struct writeback_control *wbc, writepage_t writepage,
  164. void *data);
  165. int do_writepages(struct address_space *mapping, struct writeback_control *wbc);
  166. void writeback_set_ratelimit(void);
  167. void tag_pages_for_writeback(struct address_space *mapping,
  168. pgoff_t start, pgoff_t end);
  169. void account_page_redirty(struct page *page);
  170. /* pdflush.c */
  171. extern int nr_pdflush_threads; /* Global so it can be exported to sysctl
  172. read-only. */
  173. #endif /* WRITEBACK_H */