Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 24397
b: refs/heads/master
c: 6a4d44c
h: refs/heads/master
i:
  24395: c8d6103
v: v3
  • Loading branch information
Jun'ichi Nomura authored and Linus Torvalds committed Mar 27, 2006
1 parent 8d46f32 commit c78ae09
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3ac51e741a46af7a20f55e79d3e3aeaa93c6c544
refs/heads/master: 6a4d44c1f1108d6c9e8850e8cf166aaba0e56eae
36 changes: 36 additions & 0 deletions trunk/fs/partitions/check.c
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,30 @@ struct kobj_type ktype_part = {
.sysfs_ops = &part_sysfs_ops,
};

#ifdef CONFIG_SYSFS
static inline void partition_sysfs_add_subdir(struct hd_struct *p)
{
struct kobject *k;

k = kobject_get(&p->kobj);
p->holder_dir = kobject_add_dir(k, "holders");
kobject_put(k);
}

static inline void disk_sysfs_add_subdirs(struct gendisk *disk)
{
struct kobject *k;

k = kobject_get(&disk->kobj);
disk->holder_dir = kobject_add_dir(k, "holders");
disk->slave_dir = kobject_add_dir(k, "slaves");
kobject_put(k);
}
#else
#define partition_sysfs_add_subdir(x) do { } while (0)
#define disk_sysfs_add_subdirs(x) do { } while (0)
#endif

void delete_partition(struct gendisk *disk, int part)
{
struct hd_struct *p = disk->part[part-1];
Expand All @@ -310,6 +334,10 @@ void delete_partition(struct gendisk *disk, int part)
p->ios[0] = p->ios[1] = 0;
p->sectors[0] = p->sectors[1] = 0;
devfs_remove("%s/part%d", disk->devfs_name, part);
#ifdef CONFIG_SYSFS
if (p->holder_dir)
kobject_unregister(p->holder_dir);
#endif
kobject_unregister(&p->kobj);
}

Expand Down Expand Up @@ -337,6 +365,7 @@ void add_partition(struct gendisk *disk, int part, sector_t start, sector_t len)
p->kobj.parent = &disk->kobj;
p->kobj.ktype = &ktype_part;
kobject_register(&p->kobj);
partition_sysfs_add_subdir(p);
disk->part[part-1] = p;
}

Expand Down Expand Up @@ -383,6 +412,7 @@ void register_disk(struct gendisk *disk)
if ((err = kobject_add(&disk->kobj)))
return;
disk_sysfs_symlinks(disk);
disk_sysfs_add_subdirs(disk);
kobject_uevent(&disk->kobj, KOBJ_ADD);

/* No minors to use for partitions */
Expand Down Expand Up @@ -483,6 +513,12 @@ void del_gendisk(struct gendisk *disk)

devfs_remove_disk(disk);

#ifdef CONFIG_SYSFS
if (disk->holder_dir)
kobject_unregister(disk->holder_dir);
if (disk->slave_dir)
kobject_unregister(disk->slave_dir);
#endif
if (disk->driverfs_dev) {
char *disk_name = make_block_name(disk);
sysfs_remove_link(&disk->kobj, "device");
Expand Down
7 changes: 7 additions & 0 deletions trunk/include/linux/genhd.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ struct hd_struct {
sector_t start_sect;
sector_t nr_sects;
struct kobject kobj;
#ifdef CONFIG_SYSFS
struct kobject *holder_dir;
#endif
unsigned ios[2], sectors[2]; /* READs and WRITEs */
int policy, partno;
};
Expand Down Expand Up @@ -114,6 +117,10 @@ struct gendisk {
int number; /* more of the same */
struct device *driverfs_dev;
struct kobject kobj;
#ifdef CONFIG_SYSFS
struct kobject *holder_dir;
struct kobject *slave_dir;
#endif

struct timer_rand_state *random;
int policy;
Expand Down

0 comments on commit c78ae09

Please sign in to comment.