Displaying 1 result from an estimated 1 matches for "opt_badpage".
2009 Aug 28
0
[PATCH] properly __initdata-annotate command line option string buffers
.../xen/common/page_alloc.c 2009-08-07 09:20:56.000000000 +0200
+++ 2009-08-18/xen/common/page_alloc.c 2009-08-24 17:53:10.000000000 +0200
@@ -45,7 +45,7 @@
* Comma-separated list of hexadecimal page numbers containing bad bytes.
* e.g. ''badpage=0x3f45,0x8a321''.
*/
-static char opt_badpage[100] = "";
+static char __initdata opt_badpage[100] = "";
string_param("badpage", opt_badpage);
/*
--- 2009-08-18.orig/xen/common/schedule.c 2009-07-15 16:34:17.000000000 +0200
+++ 2009-08-18/xen/common/schedule.c 2009-08-24 17:53:43.000000000 +0200
@@ -35,7 +35,7...