[RHEL5 PATCH 1/2] Fix RAID5 components

Aron Griffis aron at hp.com
Sat Jul 29 02:55:33 UTC 2006


Prarit Bhargava wrote:  [Fri Jul 28 2006, 06:40:47PM EDT]
> The issue is that CONFIG_RAID456 is tristate, and if it's config'd as a 
> module, then #ifdef CONFIG_RAID456 is not true.

Ah, thanks for the explanation and the pointer to the BZ.  It appears
that #ifdef CONFIG_MD_RAID456_MODULE works in that case.  This patch
seems to solve the issue.  What do you think?

Regards,
Aron

 kernel/ia64_ksyms.c |    2 +-
 lib/Makefile        |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

CONFIG_MD_RAID5 became CONFIG_MD_RAID456 in drivers/md/Kconfig.  Make the same
change in arch/ia64

Signed-off-by: Aron Griffis <aron at hp.com>

diff -r 825f7ede8fb3 -r 18551d19b60d kernel/ia64_ksyms.c
--- a/kernel/ia64_ksyms.c	Fri Jul 28 22:37:50 2006 -0400
+++ b/kernel/ia64_ksyms.c	Fri Jul 28 22:41:01 2006 -0400
@@ -68,7 +68,7 @@ EXPORT_SYMBOL(__moddi3);
 EXPORT_SYMBOL(__moddi3);
 EXPORT_SYMBOL(__umoddi3);
 
-#if defined(CONFIG_MD_RAID5) || defined(CONFIG_MD_RAID5_MODULE)
+#if defined(CONFIG_MD_RAID456) || defined(CONFIG_MD_RAID456_MODULE)
 extern void xor_ia64_2(void);
 extern void xor_ia64_3(void);
 extern void xor_ia64_4(void);
diff -r 825f7ede8fb3 -r 18551d19b60d lib/Makefile
--- a/lib/Makefile	Fri Jul 28 22:37:50 2006 -0400
+++ b/lib/Makefile	Fri Jul 28 22:41:01 2006 -0400
@@ -14,7 +14,7 @@ lib-$(CONFIG_ITANIUM)	+= copy_page.o cop
 lib-$(CONFIG_ITANIUM)	+= copy_page.o copy_user.o memcpy.o
 lib-$(CONFIG_MCKINLEY)	+= copy_page_mck.o memcpy_mck.o
 lib-$(CONFIG_PERFMON)	+= carta_random.o
-lib-$(CONFIG_MD_RAID5)	+= xor.o
+lib-$(CONFIG_MD_RAID456)	+= xor.o
 
 AFLAGS___divdi3.o	=
 AFLAGS___udivdi3.o	= -DUNSIGNED
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/fedora-devel-list/attachments/20060728/04f26e61/attachment.sig>


More information about the fedora-devel-list mailing list