diff options
author | Thomas Bushnell <thomas@gnu.org> | 1999-05-04 15:30:41 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1999-05-04 15:30:41 +0000 |
commit | d0dbcf1f4d24fec513176a80379d60f20f4630d7 (patch) | |
tree | ecf51574cb383b7d53e063d995cb969466d77ac1 | |
parent | bd75084ef9f15a01863a978bc97e1c01360b33f5 (diff) |
1999-04-28 OKUJI Yoshinori <okuji@localhost>
* linux/dev/drivers/block/genhd.c (bsd_disklabel_partition) [MACH]:
Print BSD slices, using Mach device syntax instead of Linux extented
partition syntax.
-rw-r--r-- | linux/dev/drivers/block/genhd.c | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/linux/dev/drivers/block/genhd.c b/linux/dev/drivers/block/genhd.c index 37c41a6..a499698 100644 --- a/linux/dev/drivers/block/genhd.c +++ b/linux/dev/drivers/block/genhd.c @@ -240,6 +240,37 @@ static void bsd_disklabel_partition(struct gendisk *hd, kdev_t dev) p = &l->d_partitions[0]; while (p - &l->d_partitions[0] <= BSD_MAXPARTITIONS) { +#ifdef MACH + /* Print BSD slices like hd0s1a (Mach syntax) instead of hd0s5 + (Linux syntax), and do not add them into HD. In Mach, + the partitions of HD will not be used anyway. */ + if (p->p_fstype != BSD_FS_UNUSED) + { + unsigned int part = current_minor & mask; + const char *maj = hd->major_name; + char unit = (current_minor >> hd->minor_shift) + '0'; + char slice = p - &l->d_partitions[0] + 'a'; + +#ifdef CONFIG_BLK_DEV_IDE + switch (hd->major) + { + case IDE3_MAJOR: + unit += 2; + case IDE2_MAJOR: + unit += 2; + case IDE1_MAJOR: + unit += 2; + case IDE0_MAJOR: + maj = "hd"; + } +#endif + if (part) + printk (" %s%cs%d%c", maj, unit, part, slice); + else + printk (" %s%c%c", maj, unit, slice); + } + p++; +#else /* ! MACH */ if ((current_minor & mask) >= (4 + hd->max_p)) break; @@ -248,6 +279,7 @@ static void bsd_disklabel_partition(struct gendisk *hd, kdev_t dev) current_minor++; } p++; +#endif /* ! MACH */ } brelse(bh); |