diff options
Diffstat (limited to 'mm/backing-dev.c')
-rw-r--r-- | mm/backing-dev.c | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/mm/backing-dev.c b/mm/backing-dev.c index e04454cdb33f..37d9edcd14cf 100644 --- a/mm/backing-dev.c +++ b/mm/backing-dev.c | |||
@@ -180,7 +180,8 @@ static ssize_t name##_show(struct device *dev, \ | |||
180 | struct backing_dev_info *bdi = dev_get_drvdata(dev); \ | 180 | struct backing_dev_info *bdi = dev_get_drvdata(dev); \ |
181 | \ | 181 | \ |
182 | return snprintf(page, PAGE_SIZE-1, "%lld\n", (long long)expr); \ | 182 | return snprintf(page, PAGE_SIZE-1, "%lld\n", (long long)expr); \ |
183 | } | 183 | } \ |
184 | static DEVICE_ATTR_RW(name); | ||
184 | 185 | ||
185 | BDI_SHOW(read_ahead_kb, K(bdi->ra_pages)) | 186 | BDI_SHOW(read_ahead_kb, K(bdi->ra_pages)) |
186 | 187 | ||
@@ -231,14 +232,16 @@ static ssize_t stable_pages_required_show(struct device *dev, | |||
231 | return snprintf(page, PAGE_SIZE-1, "%d\n", | 232 | return snprintf(page, PAGE_SIZE-1, "%d\n", |
232 | bdi_cap_stable_pages_required(bdi) ? 1 : 0); | 233 | bdi_cap_stable_pages_required(bdi) ? 1 : 0); |
233 | } | 234 | } |
235 | static DEVICE_ATTR_RO(stable_pages_required); | ||
234 | 236 | ||
235 | static struct device_attribute bdi_dev_attrs[] = { | 237 | static struct attribute *bdi_dev_attrs[] = { |
236 | __ATTR_RW(read_ahead_kb), | 238 | &dev_attr_read_ahead_kb.attr, |
237 | __ATTR_RW(min_ratio), | 239 | &dev_attr_min_ratio.attr, |
238 | __ATTR_RW(max_ratio), | 240 | &dev_attr_max_ratio.attr, |
239 | __ATTR_RO(stable_pages_required), | 241 | &dev_attr_stable_pages_required.attr, |
240 | __ATTR_NULL, | 242 | NULL, |
241 | }; | 243 | }; |
244 | ATTRIBUTE_GROUPS(bdi_dev); | ||
242 | 245 | ||
243 | static __init int bdi_class_init(void) | 246 | static __init int bdi_class_init(void) |
244 | { | 247 | { |
@@ -246,7 +249,7 @@ static __init int bdi_class_init(void) | |||
246 | if (IS_ERR(bdi_class)) | 249 | if (IS_ERR(bdi_class)) |
247 | return PTR_ERR(bdi_class); | 250 | return PTR_ERR(bdi_class); |
248 | 251 | ||
249 | bdi_class->dev_attrs = bdi_dev_attrs; | 252 | bdi_class->dev_groups = bdi_dev_groups; |
250 | bdi_debug_init(); | 253 | bdi_debug_init(); |
251 | return 0; | 254 | return 0; |
252 | } | 255 | } |