On Wed, 11 Apr 2012 14:25:41 +0000 "Labun, Marcin" <Marcin.Labun@xxxxxxxxx> wrote: > Display maximum volumes per array and per controller > in --detail-platform command. > > Signed-off-by: Marcin Labun <marcin.labun@xxxxxxxxx> > --- > super-intel.c | 5 +++-- > 1 files changed, 3 insertions(+), 2 deletions(-) > > diff --git a/super-intel.c b/super-intel.c > index dad4c4d..1e6df30 100644 > --- a/super-intel.c > +++ b/super-intel.c > @@ -1783,12 +1783,13 @@ static void print_imsm_capability(const struct imsm_orom *orom) > imsm_orom_has_chunk(orom, 1024*16) ? " 16M" : "", > imsm_orom_has_chunk(orom, 1024*32) ? " 32M" : "", > imsm_orom_has_chunk(orom, 1024*64) ? " 64M" : ""); > - printf(" Max Disks : %d\n", orom->tds); > - printf(" Max Volumes : %d\n", orom->vpa); > printf(" 2TB volumes :%s supported\n", > (orom->attr & IMSM_OROM_ATTR_2TB)?"":" not"); > printf(" 2TB disks :%s supported\n", > (orom->attr & IMSM_OROM_ATTR_2TB_DISK)?"":" not"); > + printf(" Max Disks : %d\n", orom->tds); > + printf(" Max Volumes per array : %d\n", orom->vpa); > + printf(" Max Volumes per controller: %d\n", orom->vphba); > return; > } > Thanks. However this messes up the formatting. I've changed it to the following, and applied. Thanks, NeilBrown diff --git a/super-intel.c b/super-intel.c index ed7792d..088e6bc 100644 --- a/super-intel.c +++ b/super-intel.c @@ -1783,12 +1783,13 @@ static void print_imsm_capability(const struct imsm_orom *orom) imsm_orom_has_chunk(orom, 1024*16) ? " 16M" : "", imsm_orom_has_chunk(orom, 1024*32) ? " 32M" : "", imsm_orom_has_chunk(orom, 1024*64) ? " 64M" : ""); - printf(" Max Disks : %d\n", orom->tds); - printf(" Max Volumes : %d\n", orom->vpa); printf(" 2TB volumes :%s supported\n", (orom->attr & IMSM_OROM_ATTR_2TB)?"":" not"); printf(" 2TB disks :%s supported\n", (orom->attr & IMSM_OROM_ATTR_2TB_DISK)?"":" not"); + printf(" Max Disks : %d\n", orom->tds); + printf(" Max Volumes : %d per array, %d per controller\n", + orom->vpa, orom->vphba); return; }
Attachment:
signature.asc
Description: PGP signature