aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/minios.mk
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-03-26 13:15:00 +0000
committerKeir Fraser <keir.fraser@citrix.com>2008-03-26 13:15:00 +0000
commitd3ca7ebeccd4a93deea2c2eadee40c0b3be57aeb (patch)
tree57f611598b750ba7683d1ba7d2f3a4a3fe45c500 /extras/mini-os/minios.mk
parentaecea1aa6522c44d8111731c8b6f0e9a6e08f001 (diff)
downloadxen-d3ca7ebeccd4a93deea2c2eadee40c0b3be57aeb.tar.gz
xen-d3ca7ebeccd4a93deea2c2eadee40c0b3be57aeb.tar.bz2
xen-d3ca7ebeccd4a93deea2c2eadee40c0b3be57aeb.zip
minios: blkfront_aio_poll may reenter
if the callback calls blkfront_sync for instance. In such a case, we would see responses and hence release grants several times. We need to be more synchronous and stop when we detect that we have re-entered. This fixes HVM restore with stubdomains. Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
Diffstat (limited to 'extras/mini-os/minios.mk')
-rw-r--r--extras/mini-os/minios.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/extras/mini-os/minios.mk b/extras/mini-os/minios.mk
index d881e3da4e..2282a187e2 100644
--- a/extras/mini-os/minios.mk
+++ b/extras/mini-os/minios.mk
@@ -16,10 +16,10 @@ DEF_LDFLAGS =
ifeq ($(debug),y)
DEF_CFLAGS += -g
-#DEF_CFLAGS += MM_DEBUG
-#DEF_CFLAGS += FS_DEBUG
-#DEF_CFLAGS += LIBC_DEBUG
-#DEF_CFLAGS += GNT_DEBUG
+#DEF_CFLAGS += -DMM_DEBUG
+#DEF_CFLAGS += -DFS_DEBUG
+#DEF_CFLAGS += -DLIBC_DEBUG
+DEF_CFLAGS += -DGNT_DEBUG
else
DEF_CFLAGS += -O3
endif