writeback.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  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. extern spinlock_t inode_lock;
  10. extern struct list_head inode_in_use;
  11. extern struct list_head inode_unused;
  12. /*
  13. * fs/fs-writeback.c
  14. */
  15. enum writeback_sync_modes {
  16. WB_SYNC_NONE, /* Don't wait on anything */
  17. WB_SYNC_ALL, /* Wait on every mapping */
  18. };
  19. /*
  20. * A control structure which tells the writeback code what to do. These are
  21. * always on the stack, and hence need no locking. They are always initialised
  22. * in a manner such that unspecified fields are set to zero.
  23. */
  24. struct writeback_control {
  25. struct backing_dev_info *bdi; /* If !NULL, only write back this
  26. queue */
  27. struct super_block *sb; /* if !NULL, only write inodes from
  28. this super_block */
  29. enum writeback_sync_modes sync_mode;
  30. unsigned long *older_than_this; /* If !NULL, only write back inodes
  31. older than this */
  32. unsigned long wb_start; /* Time writeback_inodes_wb was
  33. called. This is needed to avoid
  34. extra jobs and livelock */
  35. long nr_to_write; /* Write this many pages, and decrement
  36. this for each page written */
  37. long pages_skipped; /* Pages which were not written */
  38. /*
  39. * For a_ops->writepages(): is start or end are non-zero then this is
  40. * a hint that the filesystem need only write out the pages inside that
  41. * byterange. The byte at `end' is included in the writeout request.
  42. */
  43. loff_t range_start;
  44. loff_t range_end;
  45. unsigned nonblocking:1; /* Don't get stuck on request queues */
  46. unsigned encountered_congestion:1; /* An output: a queue is full */
  47. unsigned for_kupdate:1; /* A kupdate writeback */
  48. unsigned for_background:1; /* A background writeback */
  49. unsigned for_reclaim:1; /* Invoked from the page allocator */
  50. unsigned range_cyclic:1; /* range_start is cyclic */
  51. unsigned more_io:1; /* more io to be dispatched */
  52. /*
  53. * write_cache_pages() won't update wbc->nr_to_write and
  54. * mapping->writeback_index if no_nrwrite_index_update
  55. * is set. write_cache_pages() may write more than we
  56. * requested and we want to make sure nr_to_write and
  57. * writeback_index are updated in a consistent manner
  58. * so we use a single control to update them
  59. */
  60. unsigned no_nrwrite_index_update:1;
  61. /*
  62. * For WB_SYNC_ALL, the sb must always be pinned. For WB_SYNC_NONE,
  63. * the writeback code will pin the sb for the caller. However,
  64. * for eg umount, the caller does WB_SYNC_NONE but already has
  65. * the sb pinned. If the below is set, caller already has the
  66. * sb pinned.
  67. */
  68. unsigned sb_pinned:1;
  69. };
  70. /*
  71. * fs/fs-writeback.c
  72. */
  73. struct bdi_writeback;
  74. int inode_wait(void *);
  75. void writeback_inodes_sb(struct super_block *);
  76. void writeback_inodes_sb_locked(struct super_block *);
  77. int writeback_inodes_sb_if_idle(struct super_block *);
  78. void sync_inodes_sb(struct super_block *);
  79. void writeback_inodes_wbc(struct writeback_control *wbc);
  80. long wb_do_writeback(struct bdi_writeback *wb, int force_wait);
  81. void wakeup_flusher_threads(long nr_pages);
  82. /* writeback.h requires fs.h; it, too, is not included from here. */
  83. static inline void wait_on_inode(struct inode *inode)
  84. {
  85. might_sleep();
  86. wait_on_bit(&inode->i_state, __I_NEW, inode_wait, TASK_UNINTERRUPTIBLE);
  87. }
  88. static inline void inode_sync_wait(struct inode *inode)
  89. {
  90. might_sleep();
  91. wait_on_bit(&inode->i_state, __I_SYNC, inode_wait,
  92. TASK_UNINTERRUPTIBLE);
  93. }
  94. /*
  95. * mm/page-writeback.c
  96. */
  97. #ifdef CONFIG_BLOCK
  98. void laptop_io_completion(struct backing_dev_info *info);
  99. void laptop_sync_completion(void);
  100. void laptop_mode_sync(struct work_struct *work);
  101. void laptop_mode_timer_fn(unsigned long data);
  102. #else
  103. static inline void laptop_sync_completion(void) { }
  104. #endif
  105. void throttle_vm_writeout(gfp_t gfp_mask);
  106. /* These are exported to sysctl. */
  107. extern int dirty_background_ratio;
  108. extern unsigned long dirty_background_bytes;
  109. extern int vm_dirty_ratio;
  110. extern unsigned long vm_dirty_bytes;
  111. extern unsigned int dirty_writeback_interval;
  112. extern unsigned int dirty_expire_interval;
  113. extern int vm_highmem_is_dirtyable;
  114. extern int block_dump;
  115. extern int laptop_mode;
  116. extern unsigned long determine_dirtyable_memory(void);
  117. extern int dirty_background_ratio_handler(struct ctl_table *table, int write,
  118. void __user *buffer, size_t *lenp,
  119. loff_t *ppos);
  120. extern int dirty_background_bytes_handler(struct ctl_table *table, int write,
  121. void __user *buffer, size_t *lenp,
  122. loff_t *ppos);
  123. extern int dirty_ratio_handler(struct ctl_table *table, int write,
  124. void __user *buffer, size_t *lenp,
  125. loff_t *ppos);
  126. extern int dirty_bytes_handler(struct ctl_table *table, int write,
  127. void __user *buffer, size_t *lenp,
  128. loff_t *ppos);
  129. struct ctl_table;
  130. int dirty_writeback_centisecs_handler(struct ctl_table *, int,
  131. void __user *, size_t *, loff_t *);
  132. void get_dirty_limits(unsigned long *pbackground, unsigned long *pdirty,
  133. unsigned long *pbdi_dirty, struct backing_dev_info *bdi);
  134. void page_writeback_init(void);
  135. void balance_dirty_pages_ratelimited_nr(struct address_space *mapping,
  136. unsigned long nr_pages_dirtied);
  137. static inline void
  138. balance_dirty_pages_ratelimited(struct address_space *mapping)
  139. {
  140. balance_dirty_pages_ratelimited_nr(mapping, 1);
  141. }
  142. typedef int (*writepage_t)(struct page *page, struct writeback_control *wbc,
  143. void *data);
  144. int generic_writepages(struct address_space *mapping,
  145. struct writeback_control *wbc);
  146. int write_cache_pages(struct address_space *mapping,
  147. struct writeback_control *wbc, writepage_t writepage,
  148. void *data);
  149. int do_writepages(struct address_space *mapping, struct writeback_control *wbc);
  150. void set_page_dirty_balance(struct page *page, int page_mkwrite);
  151. void writeback_set_ratelimit(void);
  152. /* pdflush.c */
  153. extern int nr_pdflush_threads; /* Global so it can be exported to sysctl
  154. read-only. */
  155. #endif /* WRITEBACK_H */