[PATCH 2.6.27-rc1-git5 22/26] mdb: add main.c fixes

From: jmerkey
Date: Tue Aug 05 2008 - 03:09:18 EST


Centralized external definitions into include files and corrected
the file to conform to Linux coding practices. fixed word wrap
problems with patches.

using an embadded extern for void f(void) function seems pretty safe since
its called from init and has no parms.

Signed-off-by: Jeffrey Vernon Merkey (jmerkey@xxxxxxxxxxxxxxxxxxxxx)

--- a/init/main.c 2008-08-04 15:53:53.000000000 -0600
+++ b/init/main.c 2008-08-04 15:49:51.000000000 -0600
@@ -660,6 +660,12 @@
pgtable_cache_init();
prio_tree_init();
anon_vma_init();
+#ifdef CONFIG_MDB
+ {
+ extern int mdb_init(void);
+ mdb_init();
+ }
+#endif
#ifdef CONFIG_X86
if (efi_enabled)
efi_enter_virtual_mode();
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/