writeback.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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. * Yes, writeback.h requires sched.h
  14. * No, sched.h is not included from here.
  15. */
  16. static inline int task_is_pdflush(struct task_struct *task)
  17. {
  18. return task->flags & PF_FLUSHER;
  19. }
  20. #define current_is_pdflush() task_is_pdflush(current)
  21. /*
  22. * fs/fs-writeback.c
  23. */
  24. enum writeback_sync_modes {
  25. WB_SYNC_NONE, /* Don't wait on anything */
  26. WB_SYNC_ALL, /* Wait on every mapping */
  27. WB_SYNC_HOLD, /* Hold the inode on sb_dirty for sys_sync() */
  28. };
  29. /*
  30. * A control structure which tells the writeback code what to do. These are
  31. * always on the stack, and hence need no locking. They are always initialised
  32. * in a manner such that unspecified fields are set to zero.
  33. */
  34. struct writeback_control {
  35. struct backing_dev_info *bdi; /* If !NULL, only write back this
  36. queue */
  37. enum writeback_sync_modes sync_mode;
  38. unsigned long *older_than_this; /* If !NULL, only write back inodes
  39. older than this */
  40. long nr_to_write; /* Write this many pages, and decrement
  41. this for each page written */
  42. long pages_skipped; /* Pages which were not written */
  43. /*
  44. * For a_ops->writepages(): is start or end are non-zero then this is
  45. * a hint that the filesystem need only write out the pages inside that
  46. * byterange. The byte at `end' is included in the writeout request.
  47. */
  48. loff_t range_start;
  49. loff_t range_end;
  50. unsigned nonblocking:1; /* Don't get stuck on request queues */
  51. unsigned encountered_congestion:1; /* An output: a queue is full */
  52. unsigned for_kupdate:1; /* A kupdate writeback */
  53. unsigned for_reclaim:1; /* Invoked from the page allocator */
  54. unsigned for_writepages:1; /* This is a writepages() call */
  55. unsigned range_cyclic:1; /* range_start is cyclic */
  56. unsigned more_io:1; /* more io to be dispatched */
  57. /*
  58. * write_cache_pages() won't update wbc->nr_to_write and
  59. * mapping->writeback_index if no_nrwrite_index_update
  60. * is set. write_cache_pages() may write more than we
  61. * requested and we want to make sure nr_to_write and
  62. * writeback_index are updated in a consistent manner
  63. * so we use a single control to update them
  64. */
  65. unsigned no_nrwrite_index_update:1;
  66. };
  67. /*
  68. * fs/fs-writeback.c
  69. */
  70. void writeback_inodes(struct writeback_control *wbc);
  71. int inode_wait(void *);
  72. void sync_inodes_sb(struct super_block *, int wait);
  73. void sync_inodes(int wait);
  74. /* writeback.h requires fs.h; it, too, is not included from here. */
  75. static inline void wait_on_inode(struct inode *inode)
  76. {
  77. might_sleep();
  78. wait_on_bit(&inode->i_state, __I_LOCK, inode_wait,
  79. TASK_UNINTERRUPTIBLE);
  80. }
  81. static inline void inode_sync_wait(struct inode *inode)
  82. {
  83. might_sleep();
  84. wait_on_bit(&inode->i_state, __I_SYNC, inode_wait,
  85. TASK_UNINTERRUPTIBLE);
  86. }
  87. /*
  88. * mm/page-writeback.c
  89. */
  90. int wakeup_pdflush(long nr_pages);
  91. void laptop_io_completion(void);
  92. void laptop_sync_completion(void);
  93. void throttle_vm_writeout(gfp_t gfp_mask);
  94. /* These are exported to sysctl. */
  95. extern int dirty_background_ratio;
  96. extern int vm_dirty_ratio;
  97. extern int dirty_writeback_interval;
  98. extern int dirty_expire_interval;
  99. extern int vm_highmem_is_dirtyable;
  100. extern int block_dump;
  101. extern int laptop_mode;
  102. extern unsigned long determine_dirtyable_memory(void);
  103. extern int dirty_ratio_handler(struct ctl_table *table, int write,
  104. struct file *filp, void __user *buffer, size_t *lenp,
  105. loff_t *ppos);
  106. struct ctl_table;
  107. struct file;
  108. int dirty_writeback_centisecs_handler(struct ctl_table *, int, struct file *,
  109. void __user *, size_t *, loff_t *);
  110. void get_dirty_limits(unsigned long *pbackground, unsigned long *pdirty,
  111. unsigned long *pbdi_dirty, struct backing_dev_info *bdi);
  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 pdflush_operation(void (*fn)(unsigned long), unsigned long arg0);
  123. int generic_writepages(struct address_space *mapping,
  124. struct writeback_control *wbc);
  125. int write_cache_pages(struct address_space *mapping,
  126. struct writeback_control *wbc, writepage_t writepage,
  127. void *data);
  128. int do_writepages(struct address_space *mapping, struct writeback_control *wbc);
  129. int sync_page_range(struct inode *inode, struct address_space *mapping,
  130. loff_t pos, loff_t count);
  131. int sync_page_range_nolock(struct inode *inode, struct address_space *mapping,
  132. loff_t pos, loff_t count);
  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 */