aboutsummaryrefslogtreecommitdiffstats
path: root/package/utils/mdadm/patches/200-reduce_size.patch
blob: 3d8c2f421c8b12a7ddb865994181c9b26e125dbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
--- a/Incremental.c
+++ b/Incremental.c
@@ -1508,6 +1508,10 @@ static int Incremental_container(struct 
 	if (ra_all == ra_blocked)
 		return 0;
 
+#ifndef MDADM_FULL
+	return 0;
+#endif
+
 	/* Now move all suitable spares from spare container */
 	domains = domain_from_array(list, st->ss->name);
 	memcpy(suuid, uuid_zero, sizeof(int[4]));
--- a/util.c
+++ b/util.c
@@ -928,7 +928,9 @@ void wait_for(char *dev, int fd)
 struct superswitch *superlist[] =
 {
 	&super0, &super1,
+#ifdef MDADM_FULL
 	&super_ddf, &super_imsm,
+#endif
 	&mbr, &gpt,
 	NULL };