From ed98c9fcea16a96e117417e32e6c5b25e5a1c6cf Mon Sep 17 00:00:00 2001 From: Ross Philipson Date: Fri, 18 Sep 2009 11:18:47 -0400 Subject: [PATCH] Added the V2V debug config option to the patch. Changes to be committed: modified: master/v2v-core --- master/v2v-core | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/master/v2v-core b/master/v2v-core index cd90dba..d326137 100644 --- a/master/v2v-core +++ b/master/v2v-core @@ -25,7 +25,7 @@ new file mode 100644 index 0000000..afcbba2 --- /dev/null +++ b/drivers/xen/v2v/Kconfig -@@ -0,0 +1,17 @@ +@@ -0,0 +1,24 @@ +# +# This Kconfig describe xen v2v options +# @@ -37,6 +37,13 @@ index 0000000..afcbba2 + help + Xen interdomain communication services. + ++config XEN_V2V_DEBUG ++ bool "Xen V2V Debugging" ++ depends on XEN_V2V ++ default n ++ help ++ V2V debugging and messages. ++ +config XEN_V2V_DRV + tristate "Xen V2V sample communications client driver" + depends on XEN_V2V @@ -48,10 +55,12 @@ new file mode 100644 index 0000000..7d6e45e --- /dev/null +++ b/drivers/xen/v2v/Makefile -@@ -0,0 +1,3 @@ +@@ -0,0 +1,5 @@ + +obj-$(CONFIG_XEN_V2V) += v2v.o v2vutl.o +obj-$(CONFIG_XEN_V2V_DRV) += v2vdrv.o v2vops.o ++ ++ccflags-$(CONFIG_XEN_V2V_DEBUG) += -DDEBUG diff --git a/drivers/xen/v2v/v2v.c b/drivers/xen/v2v/v2v.c new file mode 100644 index 0000000..104c31d -- 2.39.5