aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/gdbstub.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/gdbstub.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/gdbstub.c')
-rw-r--r--xen/common/gdbstub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/common/gdbstub.c b/xen/common/gdbstub.c
index bbffc7c30e..cf03139d7f 100644
--- a/xen/common/gdbstub.c
+++ b/xen/common/gdbstub.c
@@ -65,7 +65,7 @@ static atomic_t gdb_smp_paused_count;
static void gdb_smp_pause(void);
static void gdb_smp_resume(void);
-static char opt_gdb[30];
+static char __initdata opt_gdb[30];
string_param("gdb", opt_gdb);
static void gdbstub_console_puts(const char *str);