Displaying 6 results from an estimated 6 matches for "crash_debug".
2006 Dec 22
6
[PATCH] two missing bits (was Re: Add -Wcast-qual flag)
Hi!
I catched two pieces with debug and crash_debug enabled.
One of them fixes a build error even without the -Wcast-qual flag.
Patch attached.
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2005 Sep 30
14
pdb missing files?
Hello,
I''m trying to get PDB working in accordance with the instructions at
http://www.cl.cam.ac.uk/~sos22/replay.bk/docs/misc/XenDebugger-HOWTO and
a message from this list:
http://lists.xensource.com/archives/html/xen-devel/2004-08/msg00017.html
When I try to build pdb I first get errors because the Makefile is
configured to treat warnings as errors, and there are some warnings.
2008 May 21
7
Debugging the hypervisor
I am trying to debug the Xen hypervisor from a second computer over the
serial port, but nothing seems to work. Using mercurial, I got
xen-3.2-testing.hg. I followed the steps in crashdb.txt in the docs/misc/
folder:
set debug=y in Config.mk, crash_debug=y in xen/Rules.mk
I also added -fno-omit-frame-pointer to these file as well.
I compiled with no errors and booted with minicom connected to the
workstation via com1 but when I do Ctrl-A three times to connect, nothing
happens. The debuggee boots find and gives me the login screen as normal.
Is...
2007 Jan 17
11
[PATCH] Add RCU support into Xen - Repost
...88aa93 xen/common/Makefile
--- a/xen/common/Makefile Tue Jan 16 10:02:50 2007 +0000
+++ b/xen/common/Makefile Tue Jan 16 14:17:36 2007 -0800
@@ -28,6 +28,7 @@ obj-y += version.o
obj-y += version.o
obj-y += vsprintf.o
obj-y += xmalloc.o
+obj-y += rcupdate.o
obj-$(perfc) += perfc.o
obj-$(crash_debug) += gdbstub.o
diff -r 895d873a00b4 -r fa213888aa93 xen/common/rcupdate.c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/xen/common/rcupdate.c Tue Jan 16 14:17:36 2007 -0800
@@ -0,0 +1,381 @@
+/*
+ * Read-Copy Update mechanism for mutual exclusion
+ *
+ * This program is free software; you can r...
2007 Jan 17
11
[PATCH] Add RCU support into Xen - Repost
...88aa93 xen/common/Makefile
--- a/xen/common/Makefile Tue Jan 16 10:02:50 2007 +0000
+++ b/xen/common/Makefile Tue Jan 16 14:17:36 2007 -0800
@@ -28,6 +28,7 @@ obj-y += version.o
obj-y += version.o
obj-y += vsprintf.o
obj-y += xmalloc.o
+obj-y += rcupdate.o
obj-$(perfc) += perfc.o
obj-$(crash_debug) += gdbstub.o
diff -r 895d873a00b4 -r fa213888aa93 xen/common/rcupdate.c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/xen/common/rcupdate.c Tue Jan 16 14:17:36 2007 -0800
@@ -0,0 +1,381 @@
+/*
+ * Read-Copy Update mechanism for mutual exclusion
+ *
+ * This program is free software; you can r...
2013 Sep 23
28
[PATCH 0/2] add LZ4 kernel decompression support
Linux 3.11 added respective support, so I think we should follow
suit.
1: xen: add LZ4 decompression support
2: libxc: add LZ4 decompression support
Signed-off-by: Jan Beulich <jbeulich@suse.com>