writeback.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /*
  2. * include/linux/writeback.h.
  3. */
  4. #ifndef WRITEBACK_H
  5. #define WRITEBACK_H
  6. struct backing_dev_info;
  7. extern spinlock_t inode_lock;
  8. extern struct list_head inode_in_use;
  9. extern struct list_head inode_unused;
  10. /*
  11. * Yes, writeback.h requires sched.h
  12. * No, sched.h is not included from here.
  13. */
  14. static inline int task_is_pdflush(struct task_struct *task)
  15. {
  16. return task->flags & PF_FLUSHER;
  17. }
  18. #define current_is_pdflush() task_is_pdflush(current)
  19. /*
  20. * fs/fs-writeback.c
  21. */
  22. enum writeback_sync_modes {
  23. WB_SYNC_NONE, /* Don't wait on anything */
  24. WB_SYNC_ALL, /* Wait on every mapping */
  25. WB_SYNC_HOLD, /* Hold the inode on sb_dirty for sys_sync() */
  26. };
  27. /*
  28. * A control structure which tells the writeback code what to do. These are
  29. * always on the stack, and hence need no locking. They are always initialised
  30. * in a manner such that unspecified fields are set to zero.
  31. */
  32. struct writeback_control {
  33. struct backing_dev_info *bdi; /* If !NULL, only write back this
  34. queue */
  35. enum writeback_sync_modes sync_mode;
  36. unsigned long *older_than_this; /* If !NULL, only write back inodes
  37. older than this */
  38. long nr_to_write; /* Write this many pages, and decrement
  39. this for each page written */
  40. long pages_skipped; /* Pages which were not written */
  41. /*
  42. * For a_ops->writepages(): is start or end are non-zero then this is
  43. * a hint that the filesystem need only write out the pages inside that
  44. * byterange. The byte at `end' is included in the writeout request.
  45. */
  46. loff_t range_start;
  47. loff_t range_end;
  48. unsigned nonblocking:1; /* Don't get stuck on request queues */
  49. unsigned encountered_congestion:1; /* An output: a queue is full */
  50. unsigned for_kupdate:1; /* A kupdate writeback */
  51. unsigned for_reclaim:1; /* Invoked from the page allocator */
  52. unsigned for_writepages:1; /* This is a writepages() call */
  53. unsigned range_cyclic:1; /* range_start is cyclic */
  54. };
  55. /*
  56. * fs/fs-writeback.c
  57. */
  58. void writeback_inodes(struct writeback_control *wbc);
  59. void wake_up_inode(struct inode *inode);
  60. int inode_wait(void *);
  61. void sync_inodes_sb(struct super_block *, int wait);
  62. void sync_inodes(int wait);
  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_LOCK, inode_wait,
  68. TASK_UNINTERRUPTIBLE);
  69. }
  70. /*
  71. * mm/page-writeback.c
  72. */
  73. int wakeup_pdflush(long nr_pages);
  74. void laptop_io_completion(void);
  75. void laptop_sync_completion(void);
  76. void throttle_vm_writeout(void);
  77. void writeback_congestion_end(void);
  78. /* These are exported to sysctl. */
  79. extern int dirty_background_ratio;
  80. extern int vm_dirty_ratio;
  81. extern int dirty_writeback_interval;
  82. extern int dirty_expire_interval;
  83. extern int block_dump;
  84. extern int laptop_mode;
  85. struct ctl_table;
  86. struct file;
  87. int dirty_writeback_centisecs_handler(struct ctl_table *, int, struct file *,
  88. void __user *, size_t *, loff_t *);
  89. void page_writeback_init(void);
  90. void balance_dirty_pages_ratelimited_nr(struct address_space *mapping,
  91. unsigned long nr_pages_dirtied);
  92. static inline void
  93. balance_dirty_pages_ratelimited(struct address_space *mapping)
  94. {
  95. balance_dirty_pages_ratelimited_nr(mapping, 1);
  96. }
  97. int pdflush_operation(void (*fn)(unsigned long), unsigned long arg0);
  98. int do_writepages(struct address_space *mapping, struct writeback_control *wbc);
  99. int sync_page_range(struct inode *inode, struct address_space *mapping,
  100. loff_t pos, loff_t count);
  101. int sync_page_range_nolock(struct inode *inode, struct address_space *mapping,
  102. loff_t pos, loff_t count);
  103. void set_page_dirty_balance(struct page *page);
  104. /* pdflush.c */
  105. extern int nr_pdflush_threads; /* Global so it can be exported to sysctl
  106. read-only. */
  107. #endif /* WRITEBACK_H */