From: maw48@labyrinth.cl.cam.ac.uk Date: Fri, 4 Jun 2004 14:07:21 +0000 (+0000) Subject: bitkeeper revision 1.935 (40c082191KRYrcGxH9cNhHpNJYp7Eg) X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~18186 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=caeacad44b1756a4247b0b6cec53e0ba7fcf236b;p=xen.git bitkeeper revision 1.935 (40c082191KRYrcGxH9cNhHpNJYp7Eg) Temporarily disable backend permission checking - it was stopping dom0 acting as a backend :-( --- diff --git a/tools/xend/lib/main.py b/tools/xend/lib/main.py index 65ba7f2d38..90776c11d8 100755 --- a/tools/xend/lib/main.py +++ b/tools/xend/lib/main.py @@ -199,7 +199,7 @@ def daemon_loop(): xend.blkif.backend_rx_req(port, msg) elif type == CMSG_NETIF_FE and net_if: net_if.ctrlif_rx_req(port, msg) - elif type == CMSG_NETIF_BE and port == xend.netif.be_port: + elif type == CMSG_NETIF_BE: xend.netif.backend_rx_req(port, msg) else: port.write_response(msg) @@ -211,7 +211,7 @@ def daemon_loop(): type = (msg.get_header())['type'] if type == CMSG_BLKIF_BE and port == dom0_port: xend.blkif.backend_rx_rsp(port, msg) - elif type == CMSG_NETIF_BE and port == xend.netif.be_port: + elif type == CMSG_NETIF_BE: xend.netif.backend_rx_rsp(port, msg) # Send console data.