writeback.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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 current_is_pdflush(void)
  15. {
  16. return current->flags & PF_FLUSHER;
  17. }
  18. /*
  19. * fs/fs-writeback.c
  20. */
  21. enum writeback_sync_modes {
  22. WB_SYNC_NONE, /* Don't wait on anything */
  23. WB_SYNC_ALL, /* Wait on every mapping */
  24. WB_SYNC_HOLD, /* Hold the inode on sb_dirty for sys_sync() */
  25. };
  26. /*
  27. * A control structure which tells the writeback code what to do. These are
  28. * always on the stack, and hence need no locking. They are always initialised
  29. * in a manner such that unspecified fields are set to zero.
  30. */
  31. struct writeback_control {
  32. struct backing_dev_info *bdi; /* If !NULL, only write back this
  33. queue */
  34. enum writeback_sync_modes sync_mode;
  35. unsigned long *older_than_this; /* If !NULL, only write back inodes
  36. older than this */
  37. long nr_to_write; /* Write this many pages, and decrement
  38. this for each page written */
  39. long pages_skipped; /* Pages which were not written */
  40. /*
  41. * For a_ops->writepages(): is start or end are non-zero then this is
  42. * a hint that the filesystem need only write out the pages inside that
  43. * byterange. The byte at `end' is included in the writeout request.
  44. */
  45. loff_t start;
  46. loff_t end;
  47. unsigned nonblocking:1; /* Don't get stuck on request queues */
  48. unsigned encountered_congestion:1; /* An output: a queue is full */
  49. unsigned for_kupdate:1; /* A kupdate writeback */
  50. unsigned for_reclaim:1; /* Invoked from the page allocator */
  51. };
  52. /*
  53. * ->writepage() return values (make these much larger than a pagesize, in
  54. * case some fs is returning number-of-bytes-written from writepage)
  55. */
  56. #define WRITEPAGE_ACTIVATE 0x80000 /* IO was not started: activate page */
  57. /*
  58. * fs/fs-writeback.c
  59. */
  60. void writeback_inodes(struct writeback_control *wbc);
  61. void wake_up_inode(struct inode *inode);
  62. int inode_wait(void *);
  63. void sync_inodes_sb(struct super_block *, int wait);
  64. void sync_inodes(int wait);
  65. /* writeback.h requires fs.h; it, too, is not included from here. */
  66. static inline void wait_on_inode(struct inode *inode)
  67. {
  68. might_sleep();
  69. wait_on_bit(&inode->i_state, __I_LOCK, inode_wait,
  70. TASK_UNINTERRUPTIBLE);
  71. }
  72. /*
  73. * mm/page-writeback.c
  74. */
  75. int wakeup_bdflush(long nr_pages);
  76. void laptop_io_completion(void);
  77. void laptop_sync_completion(void);
  78. void throttle_vm_writeout(void);
  79. /* These are exported to sysctl. */
  80. extern int dirty_background_ratio;
  81. extern int vm_dirty_ratio;
  82. extern int dirty_writeback_centisecs;
  83. extern int dirty_expire_centisecs;
  84. extern int block_dump;
  85. extern int laptop_mode;
  86. struct ctl_table;
  87. struct file;
  88. int dirty_writeback_centisecs_handler(struct ctl_table *, int, struct file *,
  89. void __user *, size_t *, loff_t *);
  90. void page_writeback_init(void);
  91. void balance_dirty_pages_ratelimited(struct address_space *mapping);
  92. int pdflush_operation(void (*fn)(unsigned long), unsigned long arg0);
  93. int do_writepages(struct address_space *mapping, struct writeback_control *wbc);
  94. int sync_page_range(struct inode *inode, struct address_space *mapping,
  95. loff_t pos, size_t count);
  96. int sync_page_range_nolock(struct inode *inode, struct address_space
  97. *mapping, loff_t pos, size_t count);
  98. /* pdflush.c */
  99. extern int nr_pdflush_threads; /* Global so it can be exported to sysctl
  100. read-only. */
  101. #endif /* WRITEBACK_H */