aboutsummaryrefslogtreecommitdiffstats
path: root/fs/partitions/check.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/partitions/check.c')
-rw-r--r--fs/partitions/check.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/partitions/check.c b/fs/partitions/check.c
index 69685bb51c62..9184215f3ef3 100644
--- a/fs/partitions/check.c
+++ b/fs/partitions/check.c
@@ -316,7 +316,7 @@ static struct attribute * default_attrs[] = {
316 NULL, 316 NULL,
317}; 317};
318 318
319extern struct kset block_subsys; 319extern struct kset *block_kset;
320 320
321static void part_release(struct kobject *kobj) 321static void part_release(struct kobject *kobj)
322{ 322{
@@ -393,7 +393,7 @@ void add_partition(struct gendisk *disk, int part, sector_t start, sector_t len,
393 kobject_add(&p->kobj); 393 kobject_add(&p->kobj);
394 if (!disk->part_uevent_suppress) 394 if (!disk->part_uevent_suppress)
395 kobject_uevent(&p->kobj, KOBJ_ADD); 395 kobject_uevent(&p->kobj, KOBJ_ADD);
396 sysfs_create_link(&p->kobj, &block_subsys.kobj, "subsystem"); 396 sysfs_create_link(&p->kobj, &block_kset->kobj, "subsystem");
397 if (flags & ADDPART_FLAG_WHOLEDISK) { 397 if (flags & ADDPART_FLAG_WHOLEDISK) {
398 static struct attribute addpartattr = { 398 static struct attribute addpartattr = {
399 .name = "whole_disk", 399 .name = "whole_disk",
@@ -448,7 +448,7 @@ static int disk_sysfs_symlinks(struct gendisk *disk)
448 goto err_out_dev_link; 448 goto err_out_dev_link;
449 } 449 }
450 450
451 err = sysfs_create_link(&disk->kobj, &block_subsys.kobj, 451 err = sysfs_create_link(&disk->kobj, &block_kset->kobj,
452 "subsystem"); 452 "subsystem");
453 if (err) 453 if (err)
454 goto err_out_disk_name_lnk; 454 goto err_out_disk_name_lnk;