diff options
| author | Jeff Garzik <jeff@garzik.org> | 2006-03-24 12:29:39 -0500 |
|---|---|---|
| committer | Jeff Garzik <jeff@garzik.org> | 2006-03-24 12:29:39 -0500 |
| commit | 4bbf7bc4c7bf1c80ec3c942fa5f1b6e6fa67dd99 (patch) | |
| tree | c4ff89dc09abe69d58db1e14da22ecda9fdd3ce8 /include/linux/writeback.h | |
| parent | 84ac69e8bf9f36eb0166817373336d14fa58f5cc (diff) | |
| parent | aec5c3c1a929d7d79a420e943285cf3ba26a7c0d (diff) | |
Merge branch 'upstream'
Conflicts:
drivers/scsi/libata-core.c
Diffstat (limited to 'include/linux/writeback.h')
| -rw-r--r-- | include/linux/writeback.h | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/include/linux/writeback.h b/include/linux/writeback.h index beaef5c7a0ea..56f92fcbe94a 100644 --- a/include/linux/writeback.h +++ b/include/linux/writeback.h | |||
| @@ -88,8 +88,8 @@ void throttle_vm_writeout(void); | |||
| 88 | /* These are exported to sysctl. */ | 88 | /* These are exported to sysctl. */ |
| 89 | extern int dirty_background_ratio; | 89 | extern int dirty_background_ratio; |
| 90 | extern int vm_dirty_ratio; | 90 | extern int vm_dirty_ratio; |
| 91 | extern int dirty_writeback_centisecs; | 91 | extern int dirty_writeback_interval; |
| 92 | extern int dirty_expire_centisecs; | 92 | extern int dirty_expire_interval; |
| 93 | extern int block_dump; | 93 | extern int block_dump; |
| 94 | extern int laptop_mode; | 94 | extern int laptop_mode; |
| 95 | 95 | ||
| @@ -99,7 +99,15 @@ int dirty_writeback_centisecs_handler(struct ctl_table *, int, struct file *, | |||
| 99 | void __user *, size_t *, loff_t *); | 99 | void __user *, size_t *, loff_t *); |
| 100 | 100 | ||
| 101 | void page_writeback_init(void); | 101 | void page_writeback_init(void); |
| 102 | void balance_dirty_pages_ratelimited(struct address_space *mapping); | 102 | void balance_dirty_pages_ratelimited_nr(struct address_space *mapping, |
| 103 | unsigned long nr_pages_dirtied); | ||
| 104 | |||
| 105 | static inline void | ||
| 106 | balance_dirty_pages_ratelimited(struct address_space *mapping) | ||
| 107 | { | ||
| 108 | balance_dirty_pages_ratelimited_nr(mapping, 1); | ||
| 109 | } | ||
| 110 | |||
| 103 | int pdflush_operation(void (*fn)(unsigned long), unsigned long arg0); | 111 | int pdflush_operation(void (*fn)(unsigned long), unsigned long arg0); |
| 104 | int do_writepages(struct address_space *mapping, struct writeback_control *wbc); | 112 | int do_writepages(struct address_space *mapping, struct writeback_control *wbc); |
| 105 | int sync_page_range(struct inode *inode, struct address_space *mapping, | 113 | int sync_page_range(struct inode *inode, struct address_space *mapping, |
