6148d71c1d
- Fix Monitor mode sometimes crashes when a resync completes - Fix missing symlink for mdadm container device when incremental creates the array - Make sure when creating a second array in a container that the second array uses all available space since leaving space for a third array is invalid - Validate the number of imsm volumes per controller - Fix issues with imsm arrays and disks larger than 2TB - Add support for expanding imsm arrays/containers - The support for expanding imsm arrays/containers was accepted upstream, update to the official patches from there - Fix for the issue of --add not being very smart - Fix an issue causing rebuilds to fail to restart on reboot (data corrupter level problem) - Reset the bad flag on map file updates - Correctly fix failure when trying to add internal bitmap to 1.0 arrays - Resolves: bz817023 (f17) bz817024 (f17) bz817026 (f17) bz817028 (f17) - Resolves: bz817029 (f17) bz817032 (f17) bz817038 (f17) bz808774 (f17) - Resolves: bz817039 (f17) bz817042 (f17) Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
30 lines
1.0 KiB
Diff
30 lines
1.0 KiB
Diff
From 4ff46bbc34aca294afe2127536b620672486598e Mon Sep 17 00:00:00 2001
|
|
From: Marcin Labun <Marcin.Labun@intel.com>
|
|
Date: Wed, 14 Dec 2011 15:02:49 +0100
|
|
Subject: [PATCH 1/6] imsm: display maximum volumes per controller in --detail-platform command
|
|
|
|
Signed-off-by: Marcin Labun <marcin.labun@intel.com>
|
|
---
|
|
super-intel.c | 5 +++--
|
|
1 files changed, 3 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/super-intel.c b/super-intel.c
|
|
index b64aa7a..1c22aff 100644
|
|
--- a/super-intel.c
|
|
+++ b/super-intel.c
|
|
@@ -1663,8 +1663,9 @@ 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(" 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;
|
|
}
|
|
|
|
--
|
|
1.7.1
|
|
|