Displaying 1 result from an estimated 1 matches for "opt_dom0_ioports_disable".
2009 Aug 28
0
[PATCH] properly __initdata-annotate command line option string buffers
...2009-08-24 17:40:18.000000000 +0200
@@ -101,10 +101,10 @@ struct vcpu *__init alloc_dom0_vcpu0(voi
return alloc_vcpu(dom0, 0, 0);
}
-static unsigned int opt_dom0_shadow;
+static unsigned int __initdata opt_dom0_shadow;
boolean_param("dom0_shadow", opt_dom0_shadow);
-static char opt_dom0_ioports_disable[200] = "";
+static char __initdata opt_dom0_ioports_disable[200] = "";
string_param("dom0_ioports_disable", opt_dom0_ioports_disable);
#if defined(__i386__)
--- 2009-08-18.orig/xen/common/gdbstub.c 2009-08-17 11:37:45.000000000 +0200
+++ 2009-08-18/xen/common/gdbst...