Prev: [PATCHv6 6/7] USB: gadget: functionfs: code cleanup
Next: [PATCH 2/2] apic,trace: IPI sent trace event.
From: Tejun Heo on 5 Aug 2010 07:00 Hello, On 08/04/2010 08:22 PM, Will Drewry wrote: > @@ -642,6 +642,7 @@ void __init printk_all_partitions(void) > struct hd_struct *part; > char name_buf[BDEVNAME_SIZE]; > char devt_buf[BDEVT_SIZE]; > + u8 uuid[PARTITION_META_INFO_UUIDLTH * 2 + 1]; > > /* > * Don't show empty devices or things that have been > @@ -660,10 +661,14 @@ void __init printk_all_partitions(void) > while ((part = disk_part_iter_next(&piter))) { > bool is_part0 = part == &disk->part0; > > - printk("%s%s %10llu %s", is_part0 ? "" : " ", > + uuid[0] = 0; > + if (part->info) > + part_unpack_uuid(part->info->uuid, uuid); > + > + printk("%s%s %10llu %s %s", is_part0 ? "" : " ", > bdevt_str(part_devt(part), devt_buf), > (unsigned long long)part->nr_sects >> 1, > - disk_name(disk, part->partno, name_buf)); > + disk_name(disk, part->partno, name_buf), uuid); Hmmm... I'm a bit worried about this. This might break userspace tools. I think it would be better to export it via sysfs. Thanks. -- tejun -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |