cuse: convert class code to use dev_groups
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 24 Jul 2013 22:05:24 +0000 (15:05 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 27 Jul 2013 01:05:18 +0000 (18:05 -0700)
The dev_attrs field of struct class is going away soon, dev_groups
should be used instead.  This converts the cuse class code to use the
correct field.

Acked-by: Miklos Szeredi <mszeredi@suse.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/fuse/cuse.c

index aef34b1e635e9a424659e721a8a891a3084b8bf4..adbfd66b380f6bbc3d275234851746ba0c33c6d4 100644 (file)
@@ -568,6 +568,7 @@ static ssize_t cuse_class_waiting_show(struct device *dev,
 
        return sprintf(buf, "%d\n", atomic_read(&cc->fc.num_waiting));
 }
+static DEVICE_ATTR(waiting, S_IFREG | 0400, cuse_class_waiting_show, NULL);
 
 static ssize_t cuse_class_abort_store(struct device *dev,
                                      struct device_attribute *attr,
@@ -578,12 +579,14 @@ static ssize_t cuse_class_abort_store(struct device *dev,
        fuse_abort_conn(&cc->fc);
        return count;
 }
+static DEVICE_ATTR(abort, S_IFREG | 0200, NULL, cuse_class_abort_store);
 
-static struct device_attribute cuse_class_dev_attrs[] = {
-       __ATTR(waiting, S_IFREG | 0400, cuse_class_waiting_show, NULL),
-       __ATTR(abort, S_IFREG | 0200, NULL, cuse_class_abort_store),
-       { }
+static struct attribute *cuse_class_dev_attrs[] = {
+       &dev_attr_waiting.attr,
+       &dev_attr_abort.attr,
+       NULL,
 };
+ATTRIBUTE_GROUPS(cuse_class_dev);
 
 static struct miscdevice cuse_miscdev = {
        .minor          = MISC_DYNAMIC_MINOR,
@@ -609,7 +612,7 @@ static int __init cuse_init(void)
        if (IS_ERR(cuse_class))
                return PTR_ERR(cuse_class);
 
-       cuse_class->dev_attrs = cuse_class_dev_attrs;
+       cuse_class->dev_groups = cuse_class_dev_groups;
 
        rc = misc_register(&cuse_miscdev);
        if (rc) {
This page took 0.025975 seconds and 5 git commands to generate.