mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-02 20:16:59 +00:00
mdadm: strip support for intel/ddf hardware raid to significantly reduce code size
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37064
This commit is contained in:
parent
e0606b7af2
commit
08a4d8b8e6
25
package/utils/mdadm/patches/200-reduce_size.patch
Normal file
25
package/utils/mdadm/patches/200-reduce_size.patch
Normal file
@ -0,0 +1,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 };
|
||||||
|
|
Loading…
Reference in New Issue
Block a user