1
2
3
4#ifndef WRITEBACK_H
5#define WRITEBACK_H
6
7#include <linux/sched.h>
8#include <linux/fs.h>
9
10struct backing_dev_info;
11
12extern spinlock_t inode_lock;
13extern struct list_head inode_in_use;
14extern struct list_head inode_unused;
15
16
17
18
19enum writeback_sync_modes {
20 WB_SYNC_NONE,
21 WB_SYNC_ALL,
22};
23
24
25
26
27
28
29struct writeback_control {
30 struct backing_dev_info *bdi;
31
32 struct super_block *sb;
33
34 enum writeback_sync_modes sync_mode;
35 unsigned long *older_than_this;
36
37 unsigned long wb_start;
38
39
40 long nr_to_write;
41
42 long pages_skipped;
43
44
45
46
47
48
49 loff_t range_start;
50 loff_t range_end;
51
52 unsigned nonblocking:1;
53 unsigned encountered_congestion:1;
54 unsigned for_kupdate:1;
55 unsigned for_background:1;
56 unsigned for_reclaim:1;
57 unsigned range_cyclic:1;
58 unsigned more_io:1;
59
60
61
62
63
64
65
66
67 unsigned no_nrwrite_index_update:1;
68};
69
70
71
72
73struct bdi_writeback;
74int inode_wait(void *);
75void writeback_inodes_sb(struct super_block *);
76int writeback_inodes_sb_if_idle(struct super_block *);
77void sync_inodes_sb(struct super_block *);
78void writeback_inodes_wbc(struct writeback_control *wbc);
79long wb_do_writeback(struct bdi_writeback *wb, int force_wait);
80void wakeup_flusher_threads(long nr_pages);
81
82
83static inline void wait_on_inode(struct inode *inode)
84{
85 might_sleep();
86 wait_on_bit(&inode->i_state, __I_NEW, inode_wait, TASK_UNINTERRUPTIBLE);
87}
88static inline void inode_sync_wait(struct inode *inode)
89{
90 might_sleep();
91 wait_on_bit(&inode->i_state, __I_SYNC, inode_wait,
92 TASK_UNINTERRUPTIBLE);
93}
94
95
96
97
98
99void laptop_io_completion(void);
100void laptop_sync_completion(void);
101void throttle_vm_writeout(gfp_t gfp_mask);
102
103
104extern int dirty_background_ratio;
105extern unsigned long dirty_background_bytes;
106extern int vm_dirty_ratio;
107extern unsigned long vm_dirty_bytes;
108extern unsigned int dirty_writeback_interval;
109extern unsigned int dirty_expire_interval;
110extern int vm_highmem_is_dirtyable;
111extern int block_dump;
112extern int laptop_mode;
113
114extern unsigned long determine_dirtyable_memory(void);
115
116extern int dirty_background_ratio_handler(struct ctl_table *table, int write,
117 void __user *buffer, size_t *lenp,
118 loff_t *ppos);
119extern int dirty_background_bytes_handler(struct ctl_table *table, int write,
120 void __user *buffer, size_t *lenp,
121 loff_t *ppos);
122extern int dirty_ratio_handler(struct ctl_table *table, int write,
123 void __user *buffer, size_t *lenp,
124 loff_t *ppos);
125extern int dirty_bytes_handler(struct ctl_table *table, int write,
126 void __user *buffer, size_t *lenp,
127 loff_t *ppos);
128
129struct ctl_table;
130int dirty_writeback_centisecs_handler(struct ctl_table *, int,
131 void __user *, size_t *, loff_t *);
132
133void get_dirty_limits(unsigned long *pbackground, unsigned long *pdirty,
134 unsigned long *pbdi_dirty, struct backing_dev_info *bdi);
135
136void page_writeback_init(void);
137void balance_dirty_pages_ratelimited_nr(struct address_space *mapping,
138 unsigned long nr_pages_dirtied);
139
140static inline void
141balance_dirty_pages_ratelimited(struct address_space *mapping)
142{
143 balance_dirty_pages_ratelimited_nr(mapping, 1);
144}
145
146typedef int (*writepage_t)(struct page *page, struct writeback_control *wbc,
147 void *data);
148
149int generic_writepages(struct address_space *mapping,
150 struct writeback_control *wbc);
151int write_cache_pages(struct address_space *mapping,
152 struct writeback_control *wbc, writepage_t writepage,
153 void *data);
154int do_writepages(struct address_space *mapping, struct writeback_control *wbc);
155void set_page_dirty_balance(struct page *page, int page_mkwrite);
156void writeback_set_ratelimit(void);
157
158
159extern int nr_pdflush_threads;
160
161
162
163#endif
164