aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/page_alloc.c
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2009-08-31 10:09:12 +0100
committerKeir Fraser <keir.fraser@citrix.com>2009-08-31 10:09:12 +0100
commit66c5b440e1475fc1ff10197ce5653e669305b82d (patch)
tree4aadb6ca50fd489e7fbc2e9309d9fc9c5b5ab0ce /xen/common/page_alloc.c
parent088b657e65d0b35bd27d4cdb6348853b23ba2cb6 (diff)
downloadxen-66c5b440e1475fc1ff10197ce5653e669305b82d.tar.gz
xen-66c5b440e1475fc1ff10197ce5653e669305b82d.tar.bz2
xen-66c5b440e1475fc1ff10197ce5653e669305b82d.zip
properly __initdata-annotate command line option string buffers
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Diffstat (limited to 'xen/common/page_alloc.c')
-rw-r--r--xen/common/page_alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/common/page_alloc.c b/xen/common/page_alloc.c
index f175ff9f7c..29e10759a3 100644
--- a/xen/common/page_alloc.c
+++ b/xen/common/page_alloc.c
@@ -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);
/*