The patch titled Subject: block: partition: add partition specific uevent callbacks for partition info has been added to the -mm tree. Its filename is block-partition-add-partition-specific-uevent-callbacks-for-partition-info.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/block-partition-add-partition-specific-uevent-callbacks-for-partition-info.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/block-partition-add-partition-specific-uevent-callbacks-for-partition-info.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: San Mehat <san@xxxxxxxxxx> Subject: block: partition: add partition specific uevent callbacks for partition info This patch has been carried in the Android tree for quite some time and is one of the few patches required to get a mainline kernel up and running with an exsiting Android userspace. So I wanted to submit it for review and consideration if it should be merged. For partitions, add new uevent parameters 'PARTN' which specifies the partitions index in the table, and 'PARTNAME', which specifies PARTNAME specifices the partition name of a partition device. Android's userspace uses this for creating device node links from the partition name and number: ie: /dev/block/platform/soc/by-name/system or /dev/block/platform/soc/by-num/p1 One can see its usage here: https://android.googlesource.com/platform/system/core/+/master/init/devices.cpp#355 and https://android.googlesource.com/platform/system/core/+/master/init/devices.cpp#494 [john.stultz@xxxxxxxxxx: dropped NPARTS and reworded commit message for context] Signed-off-by: Dima Zavin <dima@xxxxxxxxxxx> Signed-off-by: John Stultz <john.stultz@xxxxxxxxxx> Cc: Jens Axboe <axboe@xxxxxxxxx> Cc: Rom Lemarchand <romlem@xxxxxxxxxx> Cc: Android Kernel Team <kernel-team@xxxxxxxxxxx> Cc: Jeff Moyer <jmoyer@xxxxxxxxxx> Cc: <harald@xxxxxxxxxx> Cc: Kees Cook <keescook@xxxxxxxxxxxx> Cc: Kay Sievers <kay@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- block/partition-generic.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff -puN block/partition-generic.c~block-partition-add-partition-specific-uevent-callbacks-for-partition-info block/partition-generic.c --- a/block/partition-generic.c~block-partition-add-partition-specific-uevent-callbacks-for-partition-info +++ a/block/partition-generic.c @@ -217,10 +217,21 @@ static void part_release(struct device * kfree(p); } +static int part_uevent(struct device *dev, struct kobj_uevent_env *env) +{ + struct hd_struct *part = dev_to_part(dev); + + add_uevent_var(env, "PARTN=%u", part->partno); + if (part->info && part->info->volname[0]) + add_uevent_var(env, "PARTNAME=%s", part->info->volname); + return 0; +} + struct device_type part_type = { .name = "partition", .groups = part_attr_groups, .release = part_release, + .uevent = part_uevent, }; static void delete_partition_rcu_cb(struct rcu_head *head) _ Patches currently in -mm which might be from san@xxxxxxxxxx are block-partition-add-partition-specific-uevent-callbacks-for-partition-info.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html