writeback.h 5.1 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. 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. long nr_to_write; /* Write this many pages, and decrement
  33. this for each page written */
  34. long pages_skipped; /* Pages which were not written */
  35. /*
  36. * For a_ops->writepages(): is start or end are non-zero then this is
  37. * a hint that the filesystem need only write out the pages inside that
  38. * byterange. The byte at `end' is included in the writeout request.
  39. */
  40. loff_t range_start;
  41. loff_t range_end;
  42. unsigned nonblocking:1; /* Don't get stuck on request queues */
  43. unsigned encountered_congestion:1; /* An output: a queue is full */
  44. unsigned for_kupdate:1; /* A kupdate writeback */
  45. unsigned for_reclaim:1; /* Invoked from the page allocator */
  46. unsigned for_writepages:1; /* This is a writepages() call */
  47. unsigned range_cyclic:1; /* range_start is cyclic */
  48. unsigned more_io:1; /* more io to be dispatched */
  49. /*
  50. * write_cache_pages() won't update wbc->nr_to_write and
  51. * mapping->writeback_index if no_nrwrite_index_update
  52. * is set. write_cache_pages() may write more than we
  53. * requested and we want to make sure nr_to_write and
  54. * writeback_index are updated in a consistent manner
  55. * so we use a single control to update them
  56. */
  57. unsigned no_nrwrite_index_update:1;
  58. };
  59. /*
  60. * fs/fs-writeback.c
  61. */
  62. struct bdi_writeback;
  63. int inode_wait(void *);
  64. long writeback_inodes_sb(struct super_block *);
  65. long sync_inodes_sb(struct super_block *);
  66. void writeback_inodes_wbc(struct writeback_control *wbc);
  67. long wb_do_writeback(struct bdi_writeback *wb, int force_wait);
  68. void wakeup_flusher_threads(long nr_pages);
  69. /* writeback.h requires fs.h; it, too, is not included from here. */
  70. static inline void wait_on_inode(struct inode *inode)
  71. {
  72. might_sleep();
  73. wait_on_bit(&inode->i_state, __I_LOCK, inode_wait,
  74. TASK_UNINTERRUPTIBLE);
  75. }
  76. static inline void inode_sync_wait(struct inode *inode)
  77. {
  78. might_sleep();
  79. wait_on_bit(&inode->i_state, __I_SYNC, inode_wait,
  80. TASK_UNINTERRUPTIBLE);
  81. }
  82. /*
  83. * mm/page-writeback.c
  84. */
  85. void laptop_io_completion(void);
  86. void laptop_sync_completion(void);
  87. void throttle_vm_writeout(gfp_t gfp_mask);
  88. /* These are exported to sysctl. */
  89. extern int dirty_background_ratio;
  90. extern unsigned long dirty_background_bytes;
  91. extern int vm_dirty_ratio;
  92. extern unsigned long vm_dirty_bytes;
  93. extern unsigned int dirty_writeback_interval;
  94. extern unsigned int dirty_expire_interval;
  95. extern int vm_highmem_is_dirtyable;
  96. extern int block_dump;
  97. extern int laptop_mode;
  98. extern unsigned long determine_dirtyable_memory(void);
  99. extern int dirty_background_ratio_handler(struct ctl_table *table, int write,
  100. struct file *filp, void __user *buffer, size_t *lenp,
  101. loff_t *ppos);
  102. extern int dirty_background_bytes_handler(struct ctl_table *table, int write,
  103. struct file *filp, void __user *buffer, size_t *lenp,
  104. loff_t *ppos);
  105. extern int dirty_ratio_handler(struct ctl_table *table, int write,
  106. struct file *filp, void __user *buffer, size_t *lenp,
  107. loff_t *ppos);
  108. extern int dirty_bytes_handler(struct ctl_table *table, int write,
  109. struct file *filp, void __user *buffer, size_t *lenp,
  110. loff_t *ppos);
  111. struct ctl_table;
  112. struct file;
  113. int dirty_writeback_centisecs_handler(struct ctl_table *, int, struct file *,
  114. void __user *, size_t *, loff_t *);
  115. void get_dirty_limits(unsigned long *pbackground, unsigned long *pdirty,
  116. unsigned long *pbdi_dirty, struct backing_dev_info *bdi);
  117. void page_writeback_init(void);
  118. void balance_dirty_pages_ratelimited_nr(struct address_space *mapping,
  119. unsigned long nr_pages_dirtied);
  120. static inline void
  121. balance_dirty_pages_ratelimited(struct address_space *mapping)
  122. {
  123. balance_dirty_pages_ratelimited_nr(mapping, 1);
  124. }
  125. typedef int (*writepage_t)(struct page *page, struct writeback_control *wbc,
  126. void *data);
  127. int generic_writepages(struct address_space *mapping,
  128. struct writeback_control *wbc);
  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. /* pdflush.c */
  136. extern int nr_pdflush_threads; /* Global so it can be exported to sysctl
  137. read-only. */
  138. #endif /* WRITEBACK_H */