forked from pool/mdadm
5563a724f6
- There are some important fixes merged in mdadm upstream which should go with jsc#SLE-13700. This is the update from upstream mdadm including the important fixes we should have. - Detail: show correct raid level when the array is inactive (jsc#SLE-13700) 0095-Detail-show-correct-raid-level-when-the-array-is-ina.patch - Don't create bitmap for raid5 with journal disk (jsc#SLE-13700) 0096-Don-t-create-bitmap-for-raid5-with-journal-disk.patch - Monitor: refresh mdstat fd after select (jsc#SLE-13700) 0097-Monitor-refresh-mdstat-fd-after-select.patch - Monitor: stop notifing about containers. (jsc#SLE-13700) 0098-Monitor-stop-notifing-about-containers.patch - mdmonitor: set small delay once (jsc#SLE-13700) 0099-mdmonitor-set-small-delay-once.patch - Check if other Monitor instance running before fork. (jsc#SLE-13700) 0100-Check-if-other-Monitor-instance-running-before-fork.patch - Super1: allow RAID0 layout setting to be removed. (jsc#SLE-13700) 0101-Super1-allow-RAID0-layout-setting-to-be-removed.patch - Detail: fix segfault during IMSM raid creation (jsc#SLE-13700) 0102-Detail-fix-segfault-during-IMSM-raid-creation.patch - Create.c: close mdfd and generate uevent (jsc#SLE-13700) 0103-Create.c-close-mdfd-and-generate-uevent.patch - imsm: update num_data_stripes according to dev_size (jsc#SLE-13700) 0104-imsm-update-num_data_stripes-according-to-dev_size.patch - imsm: remove redundant calls to imsm_get_map (jsc#SLE-13700) OBS-URL: https://build.opensuse.org/request/show/853269 OBS-URL: https://build.opensuse.org/package/show/Base:System/mdadm?expand=0&rev=191
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
From c3129b39a7d467eec063681529f46f84a2a85308 Mon Sep 17 00:00:00 2001
|
|
From: Lidong Zhong <lidong.zhong@suse.com>
|
|
Date: Sun, 22 Nov 2020 23:12:29 +0800
|
|
Subject: [PATCH 08/17] Detail: fix segfault during IMSM raid creation
|
|
|
|
It can be reproduced with non IMSM hardware and IMSM_NO_PLATFORM
|
|
environmental variable set. The array state is inactive when creating
|
|
an IMSM container. And the structure info is NULL because load_super()
|
|
always fails since no intel HBA information could be obtained.
|
|
|
|
Signed-off-by: Lidong Zhong <lidong.zhong@suse.com>
|
|
Reported-by: Tkaczyk Mariusz <mariusz.tkaczyk@intel.com>
|
|
Fixes: 64bf4dff3430 (Detail: show correct raid level when the array is inactive)
|
|
---
|
|
Detail.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/Detail.c b/Detail.c
|
|
index b6587c8..ea86884 100644
|
|
--- a/Detail.c
|
|
+++ b/Detail.c
|
|
@@ -224,7 +224,7 @@ int Detail(char *dev, struct context *c)
|
|
}
|
|
|
|
/* Ok, we have some info to print... */
|
|
- if (inactive)
|
|
+ if (inactive && info)
|
|
str = map_num(pers, info->array.level);
|
|
else
|
|
str = map_num(pers, array.level);
|
|
--
|
|
2.26.2
|
|
|