writeback.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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. unsigned long *older_than_this; /* If !NULL, only write back inodes
  24. older than this */
  25. unsigned long wb_start; /* Time writeback_inodes_wb was
  26. called. This is needed to avoid
  27. extra jobs and livelock */
  28. long nr_to_write; /* Write this many pages, and decrement
  29. this for each page written */
  30. long pages_skipped; /* Pages which were not written */
  31. long inodes_written; /* # of inodes written (at least) */
  32. /*
  33. * For a_ops->writepages(): is start or end are non-zero then this is
  34. * a hint that the filesystem need only write out the pages inside that
  35. * byterange. The byte at `end' is included in the writeout request.
  36. */
  37. loff_t range_start;
  38. loff_t range_end;
  39. unsigned nonblocking:1; /* Don't get stuck on request queues */
  40. unsigned encountered_congestion:1; /* An output: a queue is full */
  41. unsigned for_kupdate:1; /* A kupdate writeback */
  42. unsigned for_background:1; /* A background writeback */
  43. unsigned tagged_writepages:1; /* tag-and-write to avoid livelock */
  44. unsigned for_reclaim:1; /* Invoked from the page allocator */
  45. unsigned range_cyclic:1; /* range_start is cyclic */
  46. unsigned more_io:1; /* more io to be dispatched */
  47. };
  48. /*
  49. * fs/fs-writeback.c
  50. */
  51. struct bdi_writeback;
  52. int inode_wait(void *);
  53. void writeback_inodes_sb(struct super_block *);
  54. void writeback_inodes_sb_nr(struct super_block *, unsigned long nr);
  55. int writeback_inodes_sb_if_idle(struct super_block *);
  56. int writeback_inodes_sb_nr_if_idle(struct super_block *, unsigned long nr);
  57. void sync_inodes_sb(struct super_block *);
  58. void writeback_inodes_wb(struct bdi_writeback *wb,
  59. struct writeback_control *wbc);
  60. long wb_do_writeback(struct bdi_writeback *wb, int force_wait);
  61. void wakeup_flusher_threads(long nr_pages);
  62. /* writeback.h requires fs.h; it, too, is not included from here. */
  63. static inline void wait_on_inode(struct inode *inode)
  64. {
  65. might_sleep();
  66. wait_on_bit(&inode->i_state, __I_NEW, inode_wait, TASK_UNINTERRUPTIBLE);
  67. }
  68. static inline void inode_sync_wait(struct inode *inode)
  69. {
  70. might_sleep();
  71. wait_on_bit(&inode->i_state, __I_SYNC, inode_wait,
  72. TASK_UNINTERRUPTIBLE);
  73. }
  74. /*
  75. * mm/page-writeback.c
  76. */
  77. #ifdef CONFIG_BLOCK
  78. void laptop_io_completion(struct backing_dev_info *info);
  79. void laptop_sync_completion(void);
  80. void laptop_mode_sync(struct work_struct *work);
  81. void laptop_mode_timer_fn(unsigned long data);
  82. #else
  83. static inline void laptop_sync_completion(void) { }
  84. #endif
  85. void throttle_vm_writeout(gfp_t gfp_mask);
  86. /* These are exported to sysctl. */
  87. extern int dirty_background_ratio;
  88. extern unsigned long dirty_background_bytes;
  89. extern int vm_dirty_ratio;
  90. extern unsigned long vm_dirty_bytes;
  91. extern unsigned int dirty_writeback_interval;
  92. extern unsigned int dirty_expire_interval;
  93. extern int vm_highmem_is_dirtyable;
  94. extern int block_dump;
  95. extern int laptop_mode;
  96. extern unsigned long determine_dirtyable_memory(void);
  97. extern int dirty_background_ratio_handler(struct ctl_table *table, int write,
  98. void __user *buffer, size_t *lenp,
  99. loff_t *ppos);
  100. extern int dirty_background_bytes_handler(struct ctl_table *table, int write,
  101. void __user *buffer, size_t *lenp,
  102. loff_t *ppos);
  103. extern int dirty_ratio_handler(struct ctl_table *table, int write,
  104. void __user *buffer, size_t *lenp,
  105. loff_t *ppos);
  106. extern int dirty_bytes_handler(struct ctl_table *table, int write,
  107. void __user *buffer, size_t *lenp,
  108. loff_t *ppos);
  109. struct ctl_table;
  110. int dirty_writeback_centisecs_handler(struct ctl_table *, int,
  111. void __user *, size_t *, loff_t *);
  112. void global_dirty_limits(unsigned long *pbackground, unsigned long *pdirty);
  113. unsigned long bdi_dirty_limit(struct backing_dev_info *bdi,
  114. unsigned long dirty);
  115. void page_writeback_init(void);
  116. void balance_dirty_pages_ratelimited_nr(struct address_space *mapping,
  117. unsigned long nr_pages_dirtied);
  118. static inline void
  119. balance_dirty_pages_ratelimited(struct address_space *mapping)
  120. {
  121. balance_dirty_pages_ratelimited_nr(mapping, 1);
  122. }
  123. typedef int (*writepage_t)(struct page *page, struct writeback_control *wbc,
  124. void *data);
  125. int generic_writepages(struct address_space *mapping,
  126. struct writeback_control *wbc);
  127. void tag_pages_for_writeback(struct address_space *mapping,
  128. pgoff_t start, pgoff_t end);
  129. int write_cache_pages(struct address_space *mapping,
  130. struct writeback_control *wbc, writepage_t writepage,
  131. void *data);
  132. int do_writepages(struct address_space *mapping, struct writeback_control *wbc);
  133. void set_page_dirty_balance(struct page *page, int page_mkwrite);
  134. void writeback_set_ratelimit(void);
  135. void tag_pages_for_writeback(struct address_space *mapping,
  136. pgoff_t start, pgoff_t end);
  137. /* pdflush.c */
  138. extern int nr_pdflush_threads; /* Global so it can be exported to sysctl
  139. read-only. */
  140. #endif /* WRITEBACK_H */