diff options
author | Peter Zijlstra <a.p.zijlstra@chello.nl> | 2008-04-30 03:54:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-30 11:29:50 -0400 |
commit | a42dde04152750426cc620fd277e80fffae2f65a (patch) | |
tree | 98cdf246280c59e0bf044ae6d2c229fc27b73203 /mm/backing-dev.c | |
parent | 189d3c4a94ef19fca2a71a6a336e9fda900e25e7 (diff) |
mm: bdi: allow setting a maximum for the bdi dirty limit
Add "max_ratio" to /sys/class/bdi. This indicates the maximum percentage of
the global dirty threshold allocated to this bdi.
[mszeredi@suse.cz]
- fix parsing in max_ratio_store().
- export bdi_set_max_ratio() to modules
- limit bdi_dirty with bdi->max_ratio
- document new sysfs attribute
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/backing-dev.c')
-rw-r--r-- | mm/backing-dev.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/mm/backing-dev.c b/mm/backing-dev.c index 4967fb176e53..08361b6aad50 100644 --- a/mm/backing-dev.c +++ b/mm/backing-dev.c | |||
@@ -73,6 +73,24 @@ static ssize_t min_ratio_store(struct device *dev, | |||
73 | } | 73 | } |
74 | BDI_SHOW(min_ratio, bdi->min_ratio) | 74 | BDI_SHOW(min_ratio, bdi->min_ratio) |
75 | 75 | ||
76 | static ssize_t max_ratio_store(struct device *dev, | ||
77 | struct device_attribute *attr, const char *buf, size_t count) | ||
78 | { | ||
79 | struct backing_dev_info *bdi = dev_get_drvdata(dev); | ||
80 | char *end; | ||
81 | unsigned int ratio; | ||
82 | ssize_t ret = -EINVAL; | ||
83 | |||
84 | ratio = simple_strtoul(buf, &end, 10); | ||
85 | if (*buf && (end[0] == '\0' || (end[0] == '\n' && end[1] == '\0'))) { | ||
86 | ret = bdi_set_max_ratio(bdi, ratio); | ||
87 | if (!ret) | ||
88 | ret = count; | ||
89 | } | ||
90 | return ret; | ||
91 | } | ||
92 | BDI_SHOW(max_ratio, bdi->max_ratio) | ||
93 | |||
76 | #define __ATTR_RW(attr) __ATTR(attr, 0644, attr##_show, attr##_store) | 94 | #define __ATTR_RW(attr) __ATTR(attr, 0644, attr##_show, attr##_store) |
77 | 95 | ||
78 | static struct device_attribute bdi_dev_attrs[] = { | 96 | static struct device_attribute bdi_dev_attrs[] = { |
@@ -82,6 +100,7 @@ static struct device_attribute bdi_dev_attrs[] = { | |||
82 | __ATTR_RO(dirty_kb), | 100 | __ATTR_RO(dirty_kb), |
83 | __ATTR_RO(bdi_dirty_kb), | 101 | __ATTR_RO(bdi_dirty_kb), |
84 | __ATTR_RW(min_ratio), | 102 | __ATTR_RW(min_ratio), |
103 | __ATTR_RW(max_ratio), | ||
85 | __ATTR_NULL, | 104 | __ATTR_NULL, |
86 | }; | 105 | }; |
87 | 106 | ||
@@ -147,6 +166,8 @@ int bdi_init(struct backing_dev_info *bdi) | |||
147 | bdi->dev = NULL; | 166 | bdi->dev = NULL; |
148 | 167 | ||
149 | bdi->min_ratio = 0; | 168 | bdi->min_ratio = 0; |
169 | bdi->max_ratio = 100; | ||
170 | bdi->max_prop_frac = PROP_FRAC_BASE; | ||
150 | 171 | ||
151 | for (i = 0; i < NR_BDI_STAT_ITEMS; i++) { | 172 | for (i = 0; i < NR_BDI_STAT_ITEMS; i++) { |
152 | err = percpu_counter_init_irq(&bdi->bdi_stat[i], 0); | 173 | err = percpu_counter_init_irq(&bdi->bdi_stat[i], 0); |