Skip to content

Commit 0704a85

Browse files
gregkhhcahca
authored andcommitted
s390/dasd: use default_groups in kobj_type
There are currently 2 ways to create a set of sysfs files for a kobj_type, through the default_attrs field, and the default_groups field. Move the s390 dasd sysfs code to use default_groups field which has been the preferred way since commit aa30f47 ("kobject: Add support for default attribute groups to kobj_type") so that we can soon get rid of the obsolete default_attrs field. Cc: Stefan Haberland <sth@linux.ibm.com> Cc: Jan Hoeppner <hoeppner@linux.ibm.com> Cc: Vasily Gorbik <gor@linux.ibm.com> Cc: Christian Borntraeger <borntraeger@linux.ibm.com> Cc: Alexander Gordeev <agordeev@linux.ibm.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Link: https://lore.kernel.org/r/20220106095401.3274637-1-gregkh@linuxfoundation.org Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
1 parent 1350f36 commit 0704a85

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

drivers/s390/block/dasd_devmap.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1824,10 +1824,11 @@ static struct attribute *paths_info_attrs[] = {
18241824
&path_fcs_attribute.attr,
18251825
NULL,
18261826
};
1827+
ATTRIBUTE_GROUPS(paths_info);
18271828

18281829
static struct kobj_type path_attr_type = {
18291830
.release = dasd_path_release,
1830-
.default_attrs = paths_info_attrs,
1831+
.default_groups = paths_info_groups,
18311832
.sysfs_ops = &kobj_sysfs_ops,
18321833
};
18331834

0 commit comments

Comments
 (0)