Skip to content

Commit

Permalink
dlm: Replace default_attrs in dlm_ktype with default_groups
Browse files Browse the repository at this point in the history
The kobj_type default_attrs field is being replaced by the
default_groups field, so replace the default_attrs field in dlm_ktype
with default_groups. Use the ATTRIBUTE_GROUPS macro to create
dlm_groups.

Signed-off-by: Kimberly Brown <kimbrownkd@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Kimberly Brown authored and Greg Kroah-Hartman committed Jun 13, 2019
1 parent 59137a9 commit c9c5b5e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fs/dlm/lockspace.c
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ static struct attribute *dlm_attrs[] = {
&dlm_attr_recover_nodeid.attr,
NULL,
};
ATTRIBUTE_GROUPS(dlm);

static ssize_t dlm_attr_show(struct kobject *kobj, struct attribute *attr,
char *buf)
Expand Down Expand Up @@ -187,7 +188,7 @@ static const struct sysfs_ops dlm_attr_ops = {
};

static struct kobj_type dlm_ktype = {
.default_attrs = dlm_attrs,
.default_groups = dlm_groups,
.sysfs_ops = &dlm_attr_ops,
.release = lockspace_kobj_release,
};
Expand Down

0 comments on commit c9c5b5e

Please sign in to comment.