Skip to content

Commit

Permalink
padata: Replace padata_attr_type default_attrs field with 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. Replace padata_attr_type's default_attrs field
with default_groups and use the ATTRIBUTE_GROUPS macro to create
padata_default_groups.

This patch was tested by loading the pcrypt module and verifying that
the sysfs files for the attributes in the default groups were created.

Signed-off-by: Kimberly Brown <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
kbrown9 authored and gregkh committed Apr 25, 2019
1 parent 52ba92f commit 2064fbc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kernel/padata.c
Original file line number Diff line number Diff line change
Expand Up @@ -957,6 +957,7 @@ static struct attribute *padata_default_attrs[] = {
&parallel_cpumask_attr.attr,
NULL,
};
ATTRIBUTE_GROUPS(padata_default);

static ssize_t padata_sysfs_show(struct kobject *kobj,
struct attribute *attr, char *buf)
Expand Down Expand Up @@ -995,7 +996,7 @@ static const struct sysfs_ops padata_sysfs_ops = {

static struct kobj_type padata_attr_type = {
.sysfs_ops = &padata_sysfs_ops,
.default_attrs = padata_default_attrs,
.default_groups = padata_default_groups,
.release = padata_sysfs_release,
};

Expand Down

0 comments on commit 2064fbc

Please sign in to comment.