writeback.h 5.0 KB

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