writeback.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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. struct backing_dev_info;
  9. /*
  10. * fs/fs-writeback.c
  11. */
  12. enum writeback_sync_modes {
  13. WB_SYNC_NONE, /* Don't wait on anything */
  14. WB_SYNC_ALL, /* Wait on every mapping */
  15. };
  16. /*
  17. * A control structure which tells the writeback code what to do. These are
  18. * always on the stack, and hence need no locking. They are always initialised
  19. * in a manner such that unspecified fields are set to zero.
  20. */
  21. struct writeback_control {
  22. enum writeback_sync_modes sync_mode;
  23. long nr_to_write; /* Write this many pages, and decrement
  24. this for each page written */
  25. long pages_skipped; /* Pages which were not written */
  26. /*
  27. * For a_ops->writepages(): is start or end are non-zero then this is
  28. * a hint that the filesystem need only write out the pages inside that
  29. * byterange. The byte at `end' is included in the writeout request.
  30. */
  31. loff_t range_start;
  32. loff_t range_end;
  33. unsigned for_kupdate:1; /* A kupdate writeback */
  34. unsigned for_background:1; /* A background writeback */
  35. unsigned tagged_writepages:1; /* tag-and-write to avoid livelock */
  36. unsigned for_reclaim:1; /* Invoked from the page allocator */
  37. unsigned range_cyclic:1; /* range_start is cyclic */
  38. };
  39. /*
  40. * fs/fs-writeback.c
  41. */
  42. struct bdi_writeback;
  43. int inode_wait(void *);
  44. void writeback_inodes_sb(struct super_block *);
  45. void writeback_inodes_sb_nr(struct super_block *, unsigned long nr);
  46. int writeback_inodes_sb_if_idle(struct super_block *);
  47. int writeback_inodes_sb_nr_if_idle(struct super_block *, unsigned long nr);
  48. void sync_inodes_sb(struct super_block *);
  49. long writeback_inodes_wb(struct bdi_writeback *wb, long nr_pages);
  50. long wb_do_writeback(struct bdi_writeback *wb, int force_wait);
  51. void wakeup_flusher_threads(long nr_pages);
  52. /* writeback.h requires fs.h; it, too, is not included from here. */
  53. static inline void wait_on_inode(struct inode *inode)
  54. {
  55. might_sleep();
  56. wait_on_bit(&inode->i_state, __I_NEW, inode_wait, TASK_UNINTERRUPTIBLE);
  57. }
  58. static inline void inode_sync_wait(struct inode *inode)
  59. {
  60. might_sleep();
  61. wait_on_bit(&inode->i_state, __I_SYNC, inode_wait,
  62. TASK_UNINTERRUPTIBLE);
  63. }
  64. /*
  65. * mm/page-writeback.c
  66. */
  67. #ifdef CONFIG_BLOCK
  68. void laptop_io_completion(struct backing_dev_info *info);
  69. void laptop_sync_completion(void);
  70. void laptop_mode_sync(struct work_struct *work);
  71. void laptop_mode_timer_fn(unsigned long data);
  72. #else
  73. static inline void laptop_sync_completion(void) { }
  74. #endif
  75. void throttle_vm_writeout(gfp_t gfp_mask);
  76. extern unsigned long global_dirty_limit;
  77. /* These are exported to sysctl. */
  78. extern int dirty_background_ratio;
  79. extern unsigned long dirty_background_bytes;
  80. extern int vm_dirty_ratio;
  81. extern unsigned long vm_dirty_bytes;
  82. extern unsigned int dirty_writeback_interval;
  83. extern unsigned int dirty_expire_interval;
  84. extern int vm_highmem_is_dirtyable;
  85. extern int block_dump;
  86. extern int laptop_mode;
  87. extern unsigned long determine_dirtyable_memory(void);
  88. extern int dirty_background_ratio_handler(struct ctl_table *table, int write,
  89. void __user *buffer, size_t *lenp,
  90. loff_t *ppos);
  91. extern int dirty_background_bytes_handler(struct ctl_table *table, int write,
  92. void __user *buffer, size_t *lenp,
  93. loff_t *ppos);
  94. extern int dirty_ratio_handler(struct ctl_table *table, int write,
  95. void __user *buffer, size_t *lenp,
  96. loff_t *ppos);
  97. extern int dirty_bytes_handler(struct ctl_table *table, int write,
  98. void __user *buffer, size_t *lenp,
  99. loff_t *ppos);
  100. struct ctl_table;
  101. int dirty_writeback_centisecs_handler(struct ctl_table *, int,
  102. void __user *, size_t *, loff_t *);
  103. void global_dirty_limits(unsigned long *pbackground, unsigned long *pdirty);
  104. unsigned long bdi_dirty_limit(struct backing_dev_info *bdi,
  105. unsigned long dirty);
  106. void __bdi_update_bandwidth(struct backing_dev_info *bdi,
  107. unsigned long thresh,
  108. unsigned long dirty,
  109. unsigned long bdi_thresh,
  110. unsigned long bdi_dirty,
  111. unsigned long start_time);
  112. void page_writeback_init(void);
  113. void balance_dirty_pages_ratelimited_nr(struct address_space *mapping,
  114. unsigned long nr_pages_dirtied);
  115. static inline void
  116. balance_dirty_pages_ratelimited(struct address_space *mapping)
  117. {
  118. balance_dirty_pages_ratelimited_nr(mapping, 1);
  119. }
  120. typedef int (*writepage_t)(struct page *page, struct writeback_control *wbc,
  121. void *data);
  122. int generic_writepages(struct address_space *mapping,
  123. struct writeback_control *wbc);
  124. void tag_pages_for_writeback(struct address_space *mapping,
  125. pgoff_t start, pgoff_t end);
  126. int write_cache_pages(struct address_space *mapping,
  127. struct writeback_control *wbc, writepage_t writepage,
  128. void *data);
  129. int do_writepages(struct address_space *mapping, struct writeback_control *wbc);
  130. void set_page_dirty_balance(struct page *page, int page_mkwrite);
  131. void writeback_set_ratelimit(void);
  132. void tag_pages_for_writeback(struct address_space *mapping,
  133. pgoff_t start, pgoff_t end);
  134. /* pdflush.c */
  135. extern int nr_pdflush_threads; /* Global so it can be exported to sysctl
  136. read-only. */
  137. #endif /* WRITEBACK_H */