Displaying 1 result from an estimated 1 matches for "opt_gdb".
Did you mean:
opt_ddb
2009 Aug 28
0
[PATCH] properly __initdata-annotate command line option string buffers
...(__i386__)
--- 2009-08-18.orig/xen/common/gdbstub.c 2009-08-17 11:37:45.000000000 +0200
+++ 2009-08-18/xen/common/gdbstub.c 2009-08-24 17:54:20.000000000 +0200
@@ -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);
--- 2009-08-18.orig/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,...