* PV USB Use Case for Xen 4.x
@ 2012-08-15 17:07 Tom Parker
2012-08-16 9:25 ` Ian Campbell
0 siblings, 1 reply; 6+ messages in thread
From: Tom Parker @ 2012-08-15 17:07 UTC (permalink / raw)
To: xen-devel
[-- Attachment #1.1: Type: text/plain, Size: 1325 bytes --]
Good Afternoon. My colleague Stefan (sstan) was asked on the IRC
channel to provide our use case for PV USB in our environment. This is
possible with the current xm stack but not available with the xl stack.
Currently we use PVUSB to attach a USB Smartcard reader through our dom0
(SLES 11 SP1) running on an HP Blade Server with the Token mounted on an
internal USB Port to our domU CA server (SLES 11)
The config file syntax is broken so we have to manually attach (I have
it scripted) whenever our hosts reboot (which is almost never.)
On the dom0 server I have to do the following steps:
*/usr/sbin/xm usb-list-assignable-devices* (get the bus-id of the USB
device)
*/usr/sbin/xm usb-hc-create $Domain 2 2* (Create a USB 2.0 Root Hub with
2 ports in $Domain)
*/usr/sbin/xm usb-attach $Domain $DevId $PortNumber $BusId* (Attach the
USB bus-id found in step 1 to the hub created in step 2)
On the domU the lsusb looks like this after the above (before it returns
nothing)
*
mgaca:~ # lsusb
Bus 001 Device 002: ID 04e6:5116 SCM Microsystems, Inc. SCR331-LC1
SmartCard Reader
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub*
Once I have done this I can use the usb devce in the domU as if it was
directly connected.
Thanks for your time.
Tom Parker
Canadian Bank Note Company, Ltd.
tparker@cbnco.com
[-- Attachment #1.2: Type: text/html, Size: 1893 bytes --]
[-- Attachment #2: Type: text/plain, Size: 126 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: PV USB Use Case for Xen 4.x
2012-08-15 17:07 PV USB Use Case for Xen 4.x Tom Parker
@ 2012-08-16 9:25 ` Ian Campbell
2012-08-16 12:21 ` Pasi Kärkkäinen
2012-08-20 19:48 ` Tom Parker
0 siblings, 2 replies; 6+ messages in thread
From: Ian Campbell @ 2012-08-16 9:25 UTC (permalink / raw)
To: Tom Parker; +Cc: xen-devel@lists.xen.org
On Wed, 2012-08-15 at 18:07 +0100, Tom Parker wrote:
> Good Afternoon. My colleague Stefan (sstan) was asked on the IRC
> channel to provide our use case for PV USB in our environment. This
> is possible with the current xm stack but not available with the xl
> stack.
Thanks for doing this.
At first glance this doesn't seem like something which we could do for
4.2.0 at this stage, although we should do it for 4.3 and potentially
consider it for 4.2.1.
Is it something which you guys might be interested in providing patches
for? It is at heart a moderately simple C coding exercise, I'm more than
happy to provide guidance etc. Much of the generic framework already
exists and there are examples in the form of other device types.
> Currently we use PVUSB to attach a USB Smartcard reader through our
> dom0 (SLES 11 SP1) running on an HP Blade Server with the Token
> mounted on an internal USB Port to our domU CA server (SLES 11)
>
> The config file syntax is broken so we have to manually attach (I have
> it scripted) whenever our hosts reboot (which is almost never.)
Can you give an example of what the syntax *should* be?
> On the dom0 server I have to do the following steps:
>
> /usr/sbin/xm usb-list-assignable-devices (get the bus-id of the USB
> device)
> /usr/sbin/xm usb-hc-create $Domain 2 2 (Create a USB 2.0 Root Hub with
> 2 ports in $Domain)
> /usr/sbin/xm usb-attach $Domain $DevId $PortNumber $BusId (Attach the
> USB bus-id found in step 1 to the hub created in step 2)
What (if anything) is the output of these commands?
Do you need to do anything to make a device "assignable"? (I get no
output from the list command for example)
> On the domU the lsusb looks like this after the above (before it
> returns nothing)
>
> mgaca:~ # lsusb
> Bus 001 Device 002: ID 04e6:5116 SCM Microsystems, Inc. SCR331-LC1
> SmartCard Reader
> Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Can you post the output of "xenstore-ls -fp" while the device is
connected?
Do you happen to know if this uses the PVUSB drivers or some other
mechanism? "lsmod" in both dom0 and domU should provide a clue if the
drivers are loaded.
Does this work for both PV and HVM guests or do you only use one or the
other?
> Once I have done this I can use the usb devce in the domU as if it was
> directly connected.
>
> Thanks for your time.
Thank you for describing the functionality.
Ian.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: PV USB Use Case for Xen 4.x
2012-08-16 9:25 ` Ian Campbell
@ 2012-08-16 12:21 ` Pasi Kärkkäinen
2012-08-20 19:48 ` Tom Parker
1 sibling, 0 replies; 6+ messages in thread
From: Pasi Kärkkäinen @ 2012-08-16 12:21 UTC (permalink / raw)
To: Ian Campbell; +Cc: Tom Parker, xen-devel@lists.xen.org
On Thu, Aug 16, 2012 at 10:25:02AM +0100, Ian Campbell wrote:
> On Wed, 2012-08-15 at 18:07 +0100, Tom Parker wrote:
> > Good Afternoon. My colleague Stefan (sstan) was asked on the IRC
> > channel to provide our use case for PV USB in our environment. This
> > is possible with the current xm stack but not available with the xl
> > stack.
>
> Thanks for doing this.
>
> At first glance this doesn't seem like something which we could do for
> 4.2.0 at this stage, although we should do it for 4.3 and potentially
> consider it for 4.2.1.
>
> Is it something which you guys might be interested in providing patches
> for? It is at heart a moderately simple C coding exercise, I'm more than
> happy to provide guidance etc. Much of the generic framework already
> exists and there are examples in the form of other device types.
>
> > Currently we use PVUSB to attach a USB Smartcard reader through our
> > dom0 (SLES 11 SP1) running on an HP Blade Server with the Token
> > mounted on an internal USB Port to our domU CA server (SLES 11)
> >
> > The config file syntax is broken so we have to manually attach (I have
> > it scripted) whenever our hosts reboot (which is almost never.)
>
> Can you give an example of what the syntax *should* be?
>
> > On the dom0 server I have to do the following steps:
> >
> > /usr/sbin/xm usb-list-assignable-devices (get the bus-id of the USB
> > device)
> > /usr/sbin/xm usb-hc-create $Domain 2 2 (Create a USB 2.0 Root Hub with
> > 2 ports in $Domain)
> > /usr/sbin/xm usb-attach $Domain $DevId $PortNumber $BusId (Attach the
> > USB bus-id found in step 1 to the hub created in step 2)
>
> What (if anything) is the output of these commands?
>
> Do you need to do anything to make a device "assignable"? (I get no
> output from the list command for example)
>
> > On the domU the lsusb looks like this after the above (before it
> > returns nothing)
> >
> > mgaca:~ # lsusb
> > Bus 001 Device 002: ID 04e6:5116 SCM Microsystems, Inc. SCR331-LC1
> > SmartCard Reader
> > Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
>
> Can you post the output of "xenstore-ls -fp" while the device is
> connected?
>
> Do you happen to know if this uses the PVUSB drivers or some other
> mechanism? "lsmod" in both dom0 and domU should provide a clue if the
> drivers are loaded.
>
> Does this work for both PV and HVM guests or do you only use one or the
> other?
>
> > Once I have done this I can use the usb devce in the domU as if it was
> > directly connected.
> >
> > Thanks for your time.
>
> Thank you for describing the functionality.
>
We should also update / keep up-to-date this wiki page:
http://wiki.xen.org/wiki/Xen_USB_Passthrough
already earlier I added the missing USB features to :
http://wiki.xen.org/wiki/XL_vs_Xend_Feature_Comparison
Worth a note: in xm/xend there are two different kind of USB passthru methods available:
1) Xen qemu-dm usb 1.1 passthru for HVM guests.
2) Xen PVUSB usb 2.0 passthru for both PV and PVHVM guests.
-- Pasi
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: PV USB Use Case for Xen 4.x
2012-08-16 9:25 ` Ian Campbell
2012-08-16 12:21 ` Pasi Kärkkäinen
@ 2012-08-20 19:48 ` Tom Parker
2012-08-20 20:10 ` Pasi Kärkkäinen
1 sibling, 1 reply; 6+ messages in thread
From: Tom Parker @ 2012-08-20 19:48 UTC (permalink / raw)
To: Ian Campbell; +Cc: xen-devel@lists.xen.org
[-- Attachment #1: Type: text/plain, Size: 4359 bytes --]
Hi Ian
Sorry to be slow to respond. I missed this e-mail when you sent it. I
will try to get the information you are looking for.
On 08/16/2012 05:25 AM, Ian Campbell wrote:
> On Wed, 2012-08-15 at 18:07 +0100, Tom Parker wrote:
>> Good Afternoon. My colleague Stefan (sstan) was asked on the IRC
>> channel to provide our use case for PV USB in our environment. This
>> is possible with the current xm stack but not available with the xl
>> stack.
> Thanks for doing this.
>
> At first glance this doesn't seem like something which we could do for
> 4.2.0 at this stage, although we should do it for 4.3 and potentially
> consider it for 4.2.1.
>
> Is it something which you guys might be interested in providing patches
> for? It is at heart a moderately simple C coding exercise, I'm more than
> happy to provide guidance etc. Much of the generic framework already
> exists and there are examples in the form of other device types.
At this time we can't provide patches. We are a sysadmin group and have
no programmers with experience in this. It would take me a long time to
get back into C programming :) Sorry.
>
>> Currently we use PVUSB to attach a USB Smartcard reader through our
>> dom0 (SLES 11 SP1) running on an HP Blade Server with the Token
>> mounted on an internal USB Port to our domU CA server (SLES 11)
>>
>> The config file syntax is broken so we have to manually attach (I have
>> it scripted) whenever our hosts reboot (which is almost never.)
> Can you give an example of what the syntax *should* be?
There used to be some data in the wiki or in an initial presentation on
PVUSB but as it has never worked for me. I don't remember how it worked.
>
>> On the dom0 server I have to do the following steps:
>>
>> /usr/sbin/xm usb-list-assignable-devices (get the bus-id of the USB
>> device)
>> /usr/sbin/xm usb-hc-create $Domain 2 2 (Create a USB 2.0 Root Hub with
>> 2 ports in $Domain)
>> /usr/sbin/xm usb-attach $Domain $DevId $PortNumber $BusId (Attach the
>> USB bus-id found in step 1 to the hub created in step 2)
> What (if anything) is the output of these commands?
Nothing. They return silently if there is no error.
>
> Do you need to do anything to make a device "assignable"? (I get no
> output from the list command for example)
You just have to have a device that is not attached anywhere else. For
example:
mgaxen1:~ # xm usb-list-assignable-devices
6-1 : ID 03f0:1027 HP Virtual Keyboard
That means that for the xm usb-attach (/usr/sbin/xm usb-attach $Domain
$DevId $PortNumber $BusId) part I would use the 6-1 as the $BusId
>
>> On the domU the lsusb looks like this after the above (before it
>> returns nothing)
>>
>> mgaca:~ # lsusb
>> Bus 001 Device 002: ID 04e6:5116 SCM Microsystems, Inc. SCR331-LC1
>> SmartCard Reader
>> Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
> Can you post the output of "xenstore-ls -fp" while the device is
> connected?
This is the part of the output that refers to the the vusb:
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vusb = "" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vusb/0 = "" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vusb/0/frontend =
"/local/domain/3/device/vusb/0" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vusb/0/frontend-id =
"3" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vusb/0/backend-id =
"0" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vusb/0/backend =
"/local/domain/0/backend/vusb/3/0" (n0)
The rest of the output I have attached as a file.
>
> Do you happen to know if this uses the PVUSB drivers or some other
> mechanism? "lsmod" in both dom0 and domU should provide a clue if the
> drivers are loaded.
Looks like it:
dom0
mgaxen1:~ # lsmod | grep usb
usbbk 23503 0
xenbus_be 3952 4 usbbk,netbk,blkbk,blktap
usbhid 50900 0
hid 83977 1 usbhid
usbcore 221920 5 usbbk,usbhid,uhci_hcd,ehci_hcd
domU
mgaca:~ # lsmod | grep usb
usbcore 220777 3 xen_hcd
>
> Does this work for both PV and HVM guests or do you only use one or the
> other?
I only use PV guests.
>
>> Once I have done this I can use the usb devce in the domU as if it was
>> directly connected.
>>
>> Thanks for your time.
> Thank you for describing the functionality.
>
> Ian.
>
>
[-- Attachment #2: xenstore-ls.fp.out --]
[-- Type: text/plain, Size: 83607 bytes --]
/tool = "" (n0)
/tool/xenstored = "" (n0)
/local = "" (n0)
/local/domain = "" (n0)
/local/domain/0 = "" (r0)
/local/domain/0/vm = "/vm/00000000-0000-0000-0000-000000000000" (r0)
/local/domain/0/device = "" (n0)
/local/domain/0/control = "" (n0)
/local/domain/0/control/platform-feature-multiprocessor-suspend = "1" (n0)
/local/domain/0/error = "" (n0)
/local/domain/0/memory = "" (n0)
/local/domain/0/memory/target = "510464" (n0)
/local/domain/0/guest = "" (n0)
/local/domain/0/hvmpv = "" (n0)
/local/domain/0/data = "" (n0)
/local/domain/0/cpu = "" (r0)
/local/domain/0/cpu/1 = "" (r0)
/local/domain/0/cpu/1/availability = "offline" (r0)
/local/domain/0/cpu/3 = "" (r0)
/local/domain/0/cpu/3/availability = "offline" (r0)
/local/domain/0/cpu/2 = "" (r0)
/local/domain/0/cpu/2/availability = "offline" (r0)
/local/domain/0/cpu/0 = "" (r0)
/local/domain/0/cpu/0/availability = "online" (r0)
/local/domain/0/description = "" (r0)
/local/domain/0/console = "" (r0)
/local/domain/0/console/limit = "1048576" (r0)
/local/domain/0/console/type = "xenconsoled" (r0)
/local/domain/0/domid = "0" (r0)
/local/domain/0/name = "Domain-0" (r0)
/local/domain/0/backend = "" (r0)
/local/domain/0/backend/vkbd = "" (r0)
/local/domain/0/backend/vkbd/3 = "" (r0)
/local/domain/0/backend/vkbd/3/0 = "" (n0,r3)
/local/domain/0/backend/vkbd/3/0/frontend-id = "3" (n0,r3)
/local/domain/0/backend/vkbd/3/0/domain = "mgaca" (n0,r3)
/local/domain/0/backend/vkbd/3/0/frontend = "/local/domain/3/device/vkbd/0" (n0,r3)
/local/domain/0/backend/vkbd/3/0/state = "4" (n0,r3)
/local/domain/0/backend/vkbd/3/0/online = "1" (n0,r3)
/local/domain/0/backend/vkbd/3/0/feature-abs-pointer = "1" (n0,r3)
/local/domain/0/backend/vkbd/3/0/hotplug-status = "connected" (n0,r3)
/local/domain/0/backend/vkbd/4 = "" (r0)
/local/domain/0/backend/vkbd/4/0 = "" (n0,r4)
/local/domain/0/backend/vkbd/4/0/frontend-id = "4" (n0,r4)
/local/domain/0/backend/vkbd/4/0/domain = "mgatrain" (n0,r4)
/local/domain/0/backend/vkbd/4/0/frontend = "/local/domain/4/device/vkbd/0" (n0,r4)
/local/domain/0/backend/vkbd/4/0/state = "4" (n0,r4)
/local/domain/0/backend/vkbd/4/0/online = "1" (n0,r4)
/local/domain/0/backend/vkbd/4/0/feature-abs-pointer = "1" (n0,r4)
/local/domain/0/backend/vkbd/4/0/hotplug-status = "connected" (n0,r4)
/local/domain/0/backend/vkbd/5 = "" (r0)
/local/domain/0/backend/vkbd/5/0 = "" (n0,r5)
/local/domain/0/backend/vkbd/5/0/frontend-id = "5" (n0,r5)
/local/domain/0/backend/vkbd/5/0/domain = "mgaextws" (n0,r5)
/local/domain/0/backend/vkbd/5/0/frontend = "/local/domain/5/device/vkbd/0" (n0,r5)
/local/domain/0/backend/vkbd/5/0/state = "4" (n0,r5)
/local/domain/0/backend/vkbd/5/0/online = "1" (n0,r5)
/local/domain/0/backend/vkbd/5/0/feature-abs-pointer = "1" (n0,r5)
/local/domain/0/backend/vkbd/5/0/hotplug-status = "connected" (n0,r5)
/local/domain/0/backend/vkbd/6 = "" (r0)
/local/domain/0/backend/vkbd/6/0 = "" (n0,r6)
/local/domain/0/backend/vkbd/6/0/frontend-id = "6" (n0,r6)
/local/domain/0/backend/vkbd/6/0/domain = "mgaweb1" (n0,r6)
/local/domain/0/backend/vkbd/6/0/frontend = "/local/domain/6/device/vkbd/0" (n0,r6)
/local/domain/0/backend/vkbd/6/0/state = "4" (n0,r6)
/local/domain/0/backend/vkbd/6/0/online = "1" (n0,r6)
/local/domain/0/backend/vkbd/6/0/feature-abs-pointer = "1" (n0,r6)
/local/domain/0/backend/vkbd/6/0/hotplug-status = "connected" (n0,r6)
/local/domain/0/backend/vfb = "" (r0)
/local/domain/0/backend/vfb/3 = "" (r0)
/local/domain/0/backend/vfb/3/0 = "" (n0,r3)
/local/domain/0/backend/vfb/3/0/vncunused = "1" (n0,r3)
/local/domain/0/backend/vfb/3/0/domain = "mgaca" (n0,r3)
/local/domain/0/backend/vfb/3/0/vnc = "1" (n0,r3)
/local/domain/0/backend/vfb/3/0/xauthority = "//.Xauthority" (n0,r3)
/local/domain/0/backend/vfb/3/0/frontend = "/local/domain/3/device/vfb/0" (n0,r3)
/local/domain/0/backend/vfb/3/0/state = "4" (n0,r3)
/local/domain/0/backend/vfb/3/0/keymap = "en-us" (n0,r3)
/local/domain/0/backend/vfb/3/0/online = "1" (n0,r3)
/local/domain/0/backend/vfb/3/0/frontend-id = "3" (n0,r3)
/local/domain/0/backend/vfb/3/0/uuid = "7e434190-c8a6-a205-2f4b-12b2c98dc056" (n0,r3)
/local/domain/0/backend/vfb/3/0/feature-resize = "1" (n0,r3)
/local/domain/0/backend/vfb/3/0/hotplug-status = "connected" (n0,r3)
/local/domain/0/backend/vfb/3/0/request-update = "1" (n0,r3)
/local/domain/0/backend/vfb/3/0/location = "127.0.0.1:5901" (n0,r3)
/local/domain/0/backend/vfb/4 = "" (r0)
/local/domain/0/backend/vfb/4/0 = "" (n0,r4)
/local/domain/0/backend/vfb/4/0/vncunused = "1" (n0,r4)
/local/domain/0/backend/vfb/4/0/domain = "mgatrain" (n0,r4)
/local/domain/0/backend/vfb/4/0/vnc = "1" (n0,r4)
/local/domain/0/backend/vfb/4/0/xauthority = "//.Xauthority" (n0,r4)
/local/domain/0/backend/vfb/4/0/frontend = "/local/domain/4/device/vfb/0" (n0,r4)
/local/domain/0/backend/vfb/4/0/state = "4" (n0,r4)
/local/domain/0/backend/vfb/4/0/keymap = "en-us" (n0,r4)
/local/domain/0/backend/vfb/4/0/online = "1" (n0,r4)
/local/domain/0/backend/vfb/4/0/frontend-id = "4" (n0,r4)
/local/domain/0/backend/vfb/4/0/uuid = "2aaf7c89-aac3-73df-900f-e679de9174c2" (n0,r4)
/local/domain/0/backend/vfb/4/0/feature-resize = "1" (n0,r4)
/local/domain/0/backend/vfb/4/0/hotplug-status = "connected" (n0,r4)
/local/domain/0/backend/vfb/4/0/location = "127.0.0.1:5900" (n0,r4)
/local/domain/0/backend/vfb/4/0/request-update = "1" (n0,r4)
/local/domain/0/backend/vfb/5 = "" (r0)
/local/domain/0/backend/vfb/5/0 = "" (n0,r5)
/local/domain/0/backend/vfb/5/0/vncunused = "1" (n0,r5)
/local/domain/0/backend/vfb/5/0/domain = "mgaextws" (n0,r5)
/local/domain/0/backend/vfb/5/0/vnc = "1" (n0,r5)
/local/domain/0/backend/vfb/5/0/xauthority = "//.Xauthority" (n0,r5)
/local/domain/0/backend/vfb/5/0/frontend = "/local/domain/5/device/vfb/0" (n0,r5)
/local/domain/0/backend/vfb/5/0/state = "4" (n0,r5)
/local/domain/0/backend/vfb/5/0/keymap = "en-us" (n0,r5)
/local/domain/0/backend/vfb/5/0/online = "1" (n0,r5)
/local/domain/0/backend/vfb/5/0/frontend-id = "5" (n0,r5)
/local/domain/0/backend/vfb/5/0/uuid = "7c1ffff8-6c55-0b90-5670-5a1bca0e1e2e" (n0,r5)
/local/domain/0/backend/vfb/5/0/feature-resize = "1" (n0,r5)
/local/domain/0/backend/vfb/5/0/hotplug-status = "connected" (n0,r5)
/local/domain/0/backend/vfb/5/0/location = "127.0.0.1:5902" (n0,r5)
/local/domain/0/backend/vfb/5/0/request-update = "1" (n0,r5)
/local/domain/0/backend/vfb/6 = "" (r0)
/local/domain/0/backend/vfb/6/0 = "" (n0,r6)
/local/domain/0/backend/vfb/6/0/vncunused = "1" (n0,r6)
/local/domain/0/backend/vfb/6/0/domain = "mgaweb1" (n0,r6)
/local/domain/0/backend/vfb/6/0/vnc = "1" (n0,r6)
/local/domain/0/backend/vfb/6/0/xauthority = "//.Xauthority" (n0,r6)
/local/domain/0/backend/vfb/6/0/frontend = "/local/domain/6/device/vfb/0" (n0,r6)
/local/domain/0/backend/vfb/6/0/state = "4" (n0,r6)
/local/domain/0/backend/vfb/6/0/keymap = "en-us" (n0,r6)
/local/domain/0/backend/vfb/6/0/online = "1" (n0,r6)
/local/domain/0/backend/vfb/6/0/frontend-id = "6" (n0,r6)
/local/domain/0/backend/vfb/6/0/uuid = "f486c7a3-a900-a671-b24c-365ce03b5b03" (n0,r6)
/local/domain/0/backend/vfb/6/0/feature-resize = "1" (n0,r6)
/local/domain/0/backend/vfb/6/0/hotplug-status = "connected" (n0,r6)
/local/domain/0/backend/vfb/6/0/location = "127.0.0.1:5903" (n0,r6)
/local/domain/0/backend/vfb/6/0/request-update = "1" (n0,r6)
/local/domain/0/backend/vbd = "" (r0)
/local/domain/0/backend/vbd/3 = "" (r0)
/local/domain/0/backend/vbd/3/51713 = "" (n0,r3)
/local/domain/0/backend/vbd/3/51713/domain = "mgaca" (n0,r3)
/local/domain/0/backend/vbd/3/51713/frontend = "/local/domain/3/device/vbd/51713" (n0,r3)
/local/domain/0/backend/vbd/3/51713/uuid = "4da405c9-6afe-e5d4-3351-02945da036c6" (n0,r3)
/local/domain/0/backend/vbd/3/51713/bootable = "1" (n0,r3)
/local/domain/0/backend/vbd/3/51713/dev = "xvda1" (n0,r3)
/local/domain/0/backend/vbd/3/51713/state = "4" (n0,r3)
/local/domain/0/backend/vbd/3/51713/params = "/dev/vg-mgadomu2/mgaca_os" (n0,r3)
/local/domain/0/backend/vbd/3/51713/mode = "w" (n0,r3)
/local/domain/0/backend/vbd/3/51713/online = "1" (n0,r3)
/local/domain/0/backend/vbd/3/51713/frontend-id = "3" (n0,r3)
/local/domain/0/backend/vbd/3/51713/type = "phy" (n0,r3)
/local/domain/0/backend/vbd/3/51713/physical-device = "fd:4" (n0,r3)
/local/domain/0/backend/vbd/3/51713/hotplug-status = "connected" (n0,r3)
/local/domain/0/backend/vbd/3/51713/feature-barrier = "1" (n0,r3)
/local/domain/0/backend/vbd/3/51713/sectors = "62914560" (n0,r3)
/local/domain/0/backend/vbd/3/51713/info = "0" (n0,r3)
/local/domain/0/backend/vbd/3/51713/sector-size = "512" (n0,r3)
/local/domain/0/backend/vbd/4 = "" (r0)
/local/domain/0/backend/vbd/4/51713 = "" (n0,r4)
/local/domain/0/backend/vbd/4/51713/domain = "mgatrain" (n0,r4)
/local/domain/0/backend/vbd/4/51713/frontend = "/local/domain/4/device/vbd/51713" (n0,r4)
/local/domain/0/backend/vbd/4/51713/uuid = "c78be812-74d5-1ace-fd61-caba4cc21937" (n0,r4)
/local/domain/0/backend/vbd/4/51713/bootable = "1" (n0,r4)
/local/domain/0/backend/vbd/4/51713/dev = "xvda1" (n0,r4)
/local/domain/0/backend/vbd/4/51713/state = "4" (n0,r4)
/local/domain/0/backend/vbd/4/51713/params = "/dev/vg-mgadomu2/mgatrain_os" (n0,r4)
/local/domain/0/backend/vbd/4/51713/mode = "w" (n0,r4)
/local/domain/0/backend/vbd/4/51713/online = "1" (n0,r4)
/local/domain/0/backend/vbd/4/51713/frontend-id = "4" (n0,r4)
/local/domain/0/backend/vbd/4/51713/type = "phy" (n0,r4)
/local/domain/0/backend/vbd/4/51713/physical-device = "fd:5" (n0,r4)
/local/domain/0/backend/vbd/4/51713/hotplug-status = "connected" (n0,r4)
/local/domain/0/backend/vbd/4/51713/feature-barrier = "1" (n0,r4)
/local/domain/0/backend/vbd/4/51713/sectors = "62914560" (n0,r4)
/local/domain/0/backend/vbd/4/51713/info = "0" (n0,r4)
/local/domain/0/backend/vbd/4/51713/sector-size = "512" (n0,r4)
/local/domain/0/backend/vbd/4/51714 = "" (n0,r4)
/local/domain/0/backend/vbd/4/51714/domain = "mgatrain" (n0,r4)
/local/domain/0/backend/vbd/4/51714/frontend = "/local/domain/4/device/vbd/51714" (n0,r4)
/local/domain/0/backend/vbd/4/51714/uuid = "dc438cec-0611-c938-009f-3c97428aa18d" (n0,r4)
/local/domain/0/backend/vbd/4/51714/bootable = "0" (n0,r4)
/local/domain/0/backend/vbd/4/51714/dev = "xvda2" (n0,r4)
/local/domain/0/backend/vbd/4/51714/state = "4" (n0,r4)
/local/domain/0/backend/vbd/4/51714/params = "/dev/vg-mgadomu2/mgatrain_swap" (n0,r4)
/local/domain/0/backend/vbd/4/51714/mode = "w" (n0,r4)
/local/domain/0/backend/vbd/4/51714/online = "1" (n0,r4)
/local/domain/0/backend/vbd/4/51714/frontend-id = "4" (n0,r4)
/local/domain/0/backend/vbd/4/51714/type = "phy" (n0,r4)
/local/domain/0/backend/vbd/4/51714/physical-device = "fd:6" (n0,r4)
/local/domain/0/backend/vbd/4/51714/hotplug-status = "connected" (n0,r4)
/local/domain/0/backend/vbd/4/51714/feature-barrier = "1" (n0,r4)
/local/domain/0/backend/vbd/4/51714/sectors = "4194304" (n0,r4)
/local/domain/0/backend/vbd/4/51714/info = "0" (n0,r4)
/local/domain/0/backend/vbd/4/51714/sector-size = "512" (n0,r4)
/local/domain/0/backend/vbd/5 = "" (r0)
/local/domain/0/backend/vbd/5/51713 = "" (n0,r5)
/local/domain/0/backend/vbd/5/51713/domain = "mgaextws" (n0,r5)
/local/domain/0/backend/vbd/5/51713/frontend = "/local/domain/5/device/vbd/51713" (n0,r5)
/local/domain/0/backend/vbd/5/51713/uuid = "7237d864-04ca-1a4e-964c-107aa25c4615" (n0,r5)
/local/domain/0/backend/vbd/5/51713/bootable = "1" (n0,r5)
/local/domain/0/backend/vbd/5/51713/dev = "xvda1" (n0,r5)
/local/domain/0/backend/vbd/5/51713/state = "4" (n0,r5)
/local/domain/0/backend/vbd/5/51713/params = "/dev/vg-mgadomu2/mgaextws_os" (n0,r5)
/local/domain/0/backend/vbd/5/51713/mode = "w" (n0,r5)
/local/domain/0/backend/vbd/5/51713/online = "1" (n0,r5)
/local/domain/0/backend/vbd/5/51713/frontend-id = "5" (n0,r5)
/local/domain/0/backend/vbd/5/51713/type = "phy" (n0,r5)
/local/domain/0/backend/vbd/5/51713/physical-device = "fd:16" (n0,r5)
/local/domain/0/backend/vbd/5/51713/hotplug-status = "connected" (n0,r5)
/local/domain/0/backend/vbd/5/51713/feature-barrier = "1" (n0,r5)
/local/domain/0/backend/vbd/5/51713/sectors = "62914560" (n0,r5)
/local/domain/0/backend/vbd/5/51713/info = "0" (n0,r5)
/local/domain/0/backend/vbd/5/51713/sector-size = "512" (n0,r5)
/local/domain/0/backend/vbd/5/51714 = "" (n0,r5)
/local/domain/0/backend/vbd/5/51714/domain = "mgaextws" (n0,r5)
/local/domain/0/backend/vbd/5/51714/frontend = "/local/domain/5/device/vbd/51714" (n0,r5)
/local/domain/0/backend/vbd/5/51714/uuid = "0baaa3a5-3f58-3e13-5896-0cf37dc9d533" (n0,r5)
/local/domain/0/backend/vbd/5/51714/bootable = "0" (n0,r5)
/local/domain/0/backend/vbd/5/51714/dev = "xvda2" (n0,r5)
/local/domain/0/backend/vbd/5/51714/state = "4" (n0,r5)
/local/domain/0/backend/vbd/5/51714/params = "/dev/vg-mgadomu2/mgaextws_swap" (n0,r5)
/local/domain/0/backend/vbd/5/51714/mode = "w" (n0,r5)
/local/domain/0/backend/vbd/5/51714/online = "1" (n0,r5)
/local/domain/0/backend/vbd/5/51714/frontend-id = "5" (n0,r5)
/local/domain/0/backend/vbd/5/51714/type = "phy" (n0,r5)
/local/domain/0/backend/vbd/5/51714/physical-device = "fd:17" (n0,r5)
/local/domain/0/backend/vbd/5/51714/hotplug-status = "connected" (n0,r5)
/local/domain/0/backend/vbd/5/51714/feature-barrier = "1" (n0,r5)
/local/domain/0/backend/vbd/5/51714/sectors = "4194304" (n0,r5)
/local/domain/0/backend/vbd/5/51714/info = "0" (n0,r5)
/local/domain/0/backend/vbd/5/51714/sector-size = "512" (n0,r5)
/local/domain/0/backend/vbd/6 = "" (r0)
/local/domain/0/backend/vbd/6/51713 = "" (n0,r6)
/local/domain/0/backend/vbd/6/51713/domain = "mgaweb1" (n0,r6)
/local/domain/0/backend/vbd/6/51713/frontend = "/local/domain/6/device/vbd/51713" (n0,r6)
/local/domain/0/backend/vbd/6/51713/uuid = "e068d988-7285-46aa-7bbe-f1325c0c55cb" (n0,r6)
/local/domain/0/backend/vbd/6/51713/bootable = "1" (n0,r6)
/local/domain/0/backend/vbd/6/51713/dev = "xvda1" (n0,r6)
/local/domain/0/backend/vbd/6/51713/state = "4" (n0,r6)
/local/domain/0/backend/vbd/6/51713/params = "/dev/vg-mgadomu1/mgaweb1_os" (n0,r6)
/local/domain/0/backend/vbd/6/51713/mode = "w" (n0,r6)
/local/domain/0/backend/vbd/6/51713/online = "1" (n0,r6)
/local/domain/0/backend/vbd/6/51713/frontend-id = "6" (n0,r6)
/local/domain/0/backend/vbd/6/51713/type = "phy" (n0,r6)
/local/domain/0/backend/vbd/6/51713/physical-device = "fd:20" (n0,r6)
/local/domain/0/backend/vbd/6/51713/hotplug-status = "connected" (n0,r6)
/local/domain/0/backend/vbd/6/51713/feature-barrier = "1" (n0,r6)
/local/domain/0/backend/vbd/6/51713/sectors = "104857600" (n0,r6)
/local/domain/0/backend/vbd/6/51713/info = "0" (n0,r6)
/local/domain/0/backend/vbd/6/51713/sector-size = "512" (n0,r6)
/local/domain/0/backend/vbd/6/51714 = "" (n0,r6)
/local/domain/0/backend/vbd/6/51714/domain = "mgaweb1" (n0,r6)
/local/domain/0/backend/vbd/6/51714/frontend = "/local/domain/6/device/vbd/51714" (n0,r6)
/local/domain/0/backend/vbd/6/51714/uuid = "f925c4cb-ef72-d505-7c86-a72309d480a2" (n0,r6)
/local/domain/0/backend/vbd/6/51714/bootable = "0" (n0,r6)
/local/domain/0/backend/vbd/6/51714/dev = "xvda2" (n0,r6)
/local/domain/0/backend/vbd/6/51714/state = "4" (n0,r6)
/local/domain/0/backend/vbd/6/51714/params = "/dev/vg-mgadomu1/mgaweb1_swap" (n0,r6)
/local/domain/0/backend/vbd/6/51714/mode = "w" (n0,r6)
/local/domain/0/backend/vbd/6/51714/online = "1" (n0,r6)
/local/domain/0/backend/vbd/6/51714/frontend-id = "6" (n0,r6)
/local/domain/0/backend/vbd/6/51714/type = "phy" (n0,r6)
/local/domain/0/backend/vbd/6/51714/physical-device = "fd:21" (n0,r6)
/local/domain/0/backend/vbd/6/51714/hotplug-status = "connected" (n0,r6)
/local/domain/0/backend/vbd/6/51714/feature-barrier = "1" (n0,r6)
/local/domain/0/backend/vbd/6/51714/sectors = "4194304" (n0,r6)
/local/domain/0/backend/vbd/6/51714/info = "0" (n0,r6)
/local/domain/0/backend/vbd/6/51714/sector-size = "512" (n0,r6)
/local/domain/0/backend/vif = "" (r0)
/local/domain/0/backend/vif/3 = "" (r0)
/local/domain/0/backend/vif/3/0 = "" (n0,r3)
/local/domain/0/backend/vif/3/0/bridge = "br60" (n0,r3)
/local/domain/0/backend/vif/3/0/domain = "mgaca" (n0,r3)
/local/domain/0/backend/vif/3/0/handle = "0" (n0,r3)
/local/domain/0/backend/vif/3/0/uuid = "ae3badb7-b3e9-0ec3-1472-e312f547028b" (n0,r3)
/local/domain/0/backend/vif/3/0/script = "/etc/xen/scripts/vif-bridge" (n0,r3)
/local/domain/0/backend/vif/3/0/state = "4" (n0,r3)
/local/domain/0/backend/vif/3/0/frontend = "/local/domain/3/device/vif/0" (n0,r3)
/local/domain/0/backend/vif/3/0/mac = "00:16:3e:7a:30:25" (n0,r3)
/local/domain/0/backend/vif/3/0/online = "1" (n0,r3)
/local/domain/0/backend/vif/3/0/frontend-id = "3" (n0,r3)
/local/domain/0/backend/vif/3/0/feature-sg = "1" (n0,r3)
/local/domain/0/backend/vif/3/0/feature-gso-tcpv4 = "1" (n0,r3)
/local/domain/0/backend/vif/3/0/feature-rx-copy = "1" (n0,r3)
/local/domain/0/backend/vif/3/0/feature-rx-flip = "0" (n0,r3)
/local/domain/0/backend/vif/3/0/hotplug-status = "connected" (n0,r3)
/local/domain/0/backend/vif/3/1 = "" (n0,r3)
/local/domain/0/backend/vif/3/1/bridge = "br250" (n0,r3)
/local/domain/0/backend/vif/3/1/domain = "mgaca" (n0,r3)
/local/domain/0/backend/vif/3/1/handle = "1" (n0,r3)
/local/domain/0/backend/vif/3/1/uuid = "8412664d-562d-8603-bbb0-b2ed30a47649" (n0,r3)
/local/domain/0/backend/vif/3/1/script = "/etc/xen/scripts/vif-bridge" (n0,r3)
/local/domain/0/backend/vif/3/1/state = "4" (n0,r3)
/local/domain/0/backend/vif/3/1/frontend = "/local/domain/3/device/vif/1" (n0,r3)
/local/domain/0/backend/vif/3/1/mac = "00:16:3e:7a:30:26" (n0,r3)
/local/domain/0/backend/vif/3/1/online = "1" (n0,r3)
/local/domain/0/backend/vif/3/1/frontend-id = "3" (n0,r3)
/local/domain/0/backend/vif/3/1/feature-sg = "1" (n0,r3)
/local/domain/0/backend/vif/3/1/feature-gso-tcpv4 = "1" (n0,r3)
/local/domain/0/backend/vif/3/1/feature-rx-copy = "1" (n0,r3)
/local/domain/0/backend/vif/3/1/feature-rx-flip = "0" (n0,r3)
/local/domain/0/backend/vif/3/1/hotplug-status = "connected" (n0,r3)
/local/domain/0/backend/vif/4 = "" (r0)
/local/domain/0/backend/vif/4/0 = "" (n0,r4)
/local/domain/0/backend/vif/4/0/bridge = "br250" (n0,r4)
/local/domain/0/backend/vif/4/0/domain = "mgatrain" (n0,r4)
/local/domain/0/backend/vif/4/0/handle = "0" (n0,r4)
/local/domain/0/backend/vif/4/0/uuid = "38b78e88-115a-1c04-e5bf-27af19064574" (n0,r4)
/local/domain/0/backend/vif/4/0/script = "/etc/xen/scripts/vif-bridge" (n0,r4)
/local/domain/0/backend/vif/4/0/state = "4" (n0,r4)
/local/domain/0/backend/vif/4/0/frontend = "/local/domain/4/device/vif/0" (n0,r4)
/local/domain/0/backend/vif/4/0/mac = "00:16:3e:1c:00:d4" (n0,r4)
/local/domain/0/backend/vif/4/0/online = "1" (n0,r4)
/local/domain/0/backend/vif/4/0/frontend-id = "4" (n0,r4)
/local/domain/0/backend/vif/4/0/feature-sg = "1" (n0,r4)
/local/domain/0/backend/vif/4/0/feature-gso-tcpv4 = "1" (n0,r4)
/local/domain/0/backend/vif/4/0/feature-rx-copy = "1" (n0,r4)
/local/domain/0/backend/vif/4/0/feature-rx-flip = "0" (n0,r4)
/local/domain/0/backend/vif/4/0/hotplug-status = "connected" (n0,r4)
/local/domain/0/backend/vif/4/1 = "" (n0,r4)
/local/domain/0/backend/vif/4/1/bridge = "br225" (n0,r4)
/local/domain/0/backend/vif/4/1/domain = "mgatrain" (n0,r4)
/local/domain/0/backend/vif/4/1/handle = "1" (n0,r4)
/local/domain/0/backend/vif/4/1/uuid = "e81a6ae9-2112-f89a-e515-fec3b2f3e0be" (n0,r4)
/local/domain/0/backend/vif/4/1/script = "/etc/xen/scripts/vif-bridge" (n0,r4)
/local/domain/0/backend/vif/4/1/state = "4" (n0,r4)
/local/domain/0/backend/vif/4/1/frontend = "/local/domain/4/device/vif/1" (n0,r4)
/local/domain/0/backend/vif/4/1/mac = "00:16:3e:1c:00:d6" (n0,r4)
/local/domain/0/backend/vif/4/1/online = "1" (n0,r4)
/local/domain/0/backend/vif/4/1/frontend-id = "4" (n0,r4)
/local/domain/0/backend/vif/4/1/feature-sg = "1" (n0,r4)
/local/domain/0/backend/vif/4/1/feature-gso-tcpv4 = "1" (n0,r4)
/local/domain/0/backend/vif/4/1/feature-rx-copy = "1" (n0,r4)
/local/domain/0/backend/vif/4/1/feature-rx-flip = "0" (n0,r4)
/local/domain/0/backend/vif/4/1/hotplug-status = "connected" (n0,r4)
/local/domain/0/backend/vif/5 = "" (r0)
/local/domain/0/backend/vif/5/0 = "" (n0,r5)
/local/domain/0/backend/vif/5/0/bridge = "br260" (n0,r5)
/local/domain/0/backend/vif/5/0/domain = "mgaextws" (n0,r5)
/local/domain/0/backend/vif/5/0/handle = "0" (n0,r5)
/local/domain/0/backend/vif/5/0/uuid = "26017add-8695-477b-d239-d260fef76bec" (n0,r5)
/local/domain/0/backend/vif/5/0/script = "/etc/xen/scripts/vif-bridge" (n0,r5)
/local/domain/0/backend/vif/5/0/state = "4" (n0,r5)
/local/domain/0/backend/vif/5/0/frontend = "/local/domain/5/device/vif/0" (n0,r5)
/local/domain/0/backend/vif/5/0/mac = "00:16:3e:87:06:56" (n0,r5)
/local/domain/0/backend/vif/5/0/online = "1" (n0,r5)
/local/domain/0/backend/vif/5/0/frontend-id = "5" (n0,r5)
/local/domain/0/backend/vif/5/0/feature-sg = "1" (n0,r5)
/local/domain/0/backend/vif/5/0/feature-gso-tcpv4 = "1" (n0,r5)
/local/domain/0/backend/vif/5/0/feature-rx-copy = "1" (n0,r5)
/local/domain/0/backend/vif/5/0/feature-rx-flip = "0" (n0,r5)
/local/domain/0/backend/vif/5/0/hotplug-status = "connected" (n0,r5)
/local/domain/0/backend/vif/5/1 = "" (n0,r5)
/local/domain/0/backend/vif/5/1/bridge = "br405" (n0,r5)
/local/domain/0/backend/vif/5/1/domain = "mgaextws" (n0,r5)
/local/domain/0/backend/vif/5/1/handle = "1" (n0,r5)
/local/domain/0/backend/vif/5/1/uuid = "82263a3a-3eb2-c86c-239c-9a03506ba51e" (n0,r5)
/local/domain/0/backend/vif/5/1/script = "/etc/xen/scripts/vif-bridge" (n0,r5)
/local/domain/0/backend/vif/5/1/state = "4" (n0,r5)
/local/domain/0/backend/vif/5/1/frontend = "/local/domain/5/device/vif/1" (n0,r5)
/local/domain/0/backend/vif/5/1/mac = "00:16:3e:87:06:58" (n0,r5)
/local/domain/0/backend/vif/5/1/online = "1" (n0,r5)
/local/domain/0/backend/vif/5/1/frontend-id = "5" (n0,r5)
/local/domain/0/backend/vif/5/1/feature-sg = "1" (n0,r5)
/local/domain/0/backend/vif/5/1/feature-gso-tcpv4 = "1" (n0,r5)
/local/domain/0/backend/vif/5/1/feature-rx-copy = "1" (n0,r5)
/local/domain/0/backend/vif/5/1/feature-rx-flip = "0" (n0,r5)
/local/domain/0/backend/vif/5/1/hotplug-status = "connected" (n0,r5)
/local/domain/0/backend/vif/6 = "" (r0)
/local/domain/0/backend/vif/6/0 = "" (n0,r6)
/local/domain/0/backend/vif/6/0/bridge = "br250" (n0,r6)
/local/domain/0/backend/vif/6/0/domain = "mgaweb1" (n0,r6)
/local/domain/0/backend/vif/6/0/handle = "0" (n0,r6)
/local/domain/0/backend/vif/6/0/uuid = "741a4b1d-6257-45f1-55f2-6a3dc29cee31" (n0,r6)
/local/domain/0/backend/vif/6/0/script = "/etc/xen/scripts/vif-bridge" (n0,r6)
/local/domain/0/backend/vif/6/0/state = "4" (n0,r6)
/local/domain/0/backend/vif/6/0/frontend = "/local/domain/6/device/vif/0" (n0,r6)
/local/domain/0/backend/vif/6/0/mac = "00:16:3e:03:52:b9" (n0,r6)
/local/domain/0/backend/vif/6/0/online = "1" (n0,r6)
/local/domain/0/backend/vif/6/0/frontend-id = "6" (n0,r6)
/local/domain/0/backend/vif/6/0/feature-sg = "1" (n0,r6)
/local/domain/0/backend/vif/6/0/feature-gso-tcpv4 = "1" (n0,r6)
/local/domain/0/backend/vif/6/0/feature-rx-copy = "1" (n0,r6)
/local/domain/0/backend/vif/6/0/feature-rx-flip = "0" (n0,r6)
/local/domain/0/backend/vif/6/0/hotplug-status = "connected" (n0,r6)
/local/domain/0/backend/vif/6/1 = "" (n0,r6)
/local/domain/0/backend/vif/6/1/bridge = "br260" (n0,r6)
/local/domain/0/backend/vif/6/1/domain = "mgaweb1" (n0,r6)
/local/domain/0/backend/vif/6/1/handle = "1" (n0,r6)
/local/domain/0/backend/vif/6/1/uuid = "ff3eb0cb-9193-e5a5-f1c7-56606c44a4bc" (n0,r6)
/local/domain/0/backend/vif/6/1/script = "/etc/xen/scripts/vif-bridge" (n0,r6)
/local/domain/0/backend/vif/6/1/state = "4" (n0,r6)
/local/domain/0/backend/vif/6/1/frontend = "/local/domain/6/device/vif/1" (n0,r6)
/local/domain/0/backend/vif/6/1/mac = "00:16:3e:3f:83:2a" (n0,r6)
/local/domain/0/backend/vif/6/1/online = "1" (n0,r6)
/local/domain/0/backend/vif/6/1/frontend-id = "6" (n0,r6)
/local/domain/0/backend/vif/6/1/feature-sg = "1" (n0,r6)
/local/domain/0/backend/vif/6/1/feature-gso-tcpv4 = "1" (n0,r6)
/local/domain/0/backend/vif/6/1/feature-rx-copy = "1" (n0,r6)
/local/domain/0/backend/vif/6/1/feature-rx-flip = "0" (n0,r6)
/local/domain/0/backend/vif/6/1/hotplug-status = "connected" (n0,r6)
/local/domain/0/backend/console = "" (r0)
/local/domain/0/backend/console/3 = "" (r0)
/local/domain/0/backend/console/3/0 = "" (n0,r3)
/local/domain/0/backend/console/3/0/domain = "mgaca" (n0,r3)
/local/domain/0/backend/console/3/0/protocol = "vt100" (n0,r3)
/local/domain/0/backend/console/3/0/uuid = "02f74b54-4174-74aa-4324-f2436c730a64" (n0,r3)
/local/domain/0/backend/console/3/0/frontend = "/local/domain/3/device/console/0" (n0,r3)
/local/domain/0/backend/console/3/0/state = "4" (n0,r3)
/local/domain/0/backend/console/3/0/location = "2" (n0,r3)
/local/domain/0/backend/console/3/0/online = "1" (n0,r3)
/local/domain/0/backend/console/3/0/frontend-id = "3" (n0,r3)
/local/domain/0/backend/console/3/0/hotplug-status = "connected" (n0,r3)
/local/domain/0/backend/console/4 = "" (r0)
/local/domain/0/backend/console/4/0 = "" (n0,r4)
/local/domain/0/backend/console/4/0/domain = "mgatrain" (n0,r4)
/local/domain/0/backend/console/4/0/protocol = "vt100" (n0,r4)
/local/domain/0/backend/console/4/0/uuid = "01a6c026-56a4-9d8a-43b7-6389a783e825" (n0,r4)
/local/domain/0/backend/console/4/0/frontend = "/local/domain/4/device/console/0" (n0,r4)
/local/domain/0/backend/console/4/0/state = "4" (n0,r4)
/local/domain/0/backend/console/4/0/location = "2" (n0,r4)
/local/domain/0/backend/console/4/0/online = "1" (n0,r4)
/local/domain/0/backend/console/4/0/frontend-id = "4" (n0,r4)
/local/domain/0/backend/console/4/0/hotplug-status = "connected" (n0,r4)
/local/domain/0/backend/console/5 = "" (r0)
/local/domain/0/backend/console/5/0 = "" (n0,r5)
/local/domain/0/backend/console/5/0/domain = "mgaextws" (n0,r5)
/local/domain/0/backend/console/5/0/protocol = "vt100" (n0,r5)
/local/domain/0/backend/console/5/0/uuid = "e3f73836-13ad-6372-0d82-31cea623bdd4" (n0,r5)
/local/domain/0/backend/console/5/0/frontend = "/local/domain/5/device/console/0" (n0,r5)
/local/domain/0/backend/console/5/0/state = "4" (n0,r5)
/local/domain/0/backend/console/5/0/location = "2" (n0,r5)
/local/domain/0/backend/console/5/0/online = "1" (n0,r5)
/local/domain/0/backend/console/5/0/frontend-id = "5" (n0,r5)
/local/domain/0/backend/console/5/0/hotplug-status = "connected" (n0,r5)
/local/domain/0/backend/console/6 = "" (r0)
/local/domain/0/backend/console/6/0 = "" (n0,r6)
/local/domain/0/backend/console/6/0/domain = "mgaweb1" (n0,r6)
/local/domain/0/backend/console/6/0/protocol = "vt100" (n0,r6)
/local/domain/0/backend/console/6/0/uuid = "1d96e799-7de9-1d6c-1c26-a543dacf250a" (n0,r6)
/local/domain/0/backend/console/6/0/frontend = "/local/domain/6/device/console/0" (n0,r6)
/local/domain/0/backend/console/6/0/state = "4" (n0,r6)
/local/domain/0/backend/console/6/0/location = "2" (n0,r6)
/local/domain/0/backend/console/6/0/online = "1" (n0,r6)
/local/domain/0/backend/console/6/0/frontend-id = "6" (n0,r6)
/local/domain/0/backend/console/6/0/hotplug-status = "connected" (n0,r6)
/local/domain/0/backend/vusb = "" (r0)
/local/domain/0/backend/vusb/3 = "" (r0)
/local/domain/0/backend/vusb/3/0 = "" (n0,r3)
/local/domain/0/backend/vusb/3/0/domain = "mgaca" (n0,r3)
/local/domain/0/backend/vusb/3/0/frontend = "/local/domain/3/device/vusb/0" (n0,r3)
/local/domain/0/backend/vusb/3/0/online = "1" (n0,r3)
/local/domain/0/backend/vusb/3/0/state = "4" (n0,r3)
/local/domain/0/backend/vusb/3/0/frontend-id = "3" (n0,r3)
/local/domain/0/backend/vusb/3/0/port = "" (n0,r3)
/local/domain/0/backend/vusb/3/0/port/2 = "" (n0,r3)
/local/domain/0/backend/vusb/3/0/port/1 = "2-1" (n0,r3)
/local/domain/0/backend/vusb/3/0/usb-ver = "2" (n0,r3)
/local/domain/0/backend/vusb/3/0/num-ports = "2" (n0,r3)
/local/domain/0/device-model = "" (r0)
/local/domain/0/device-model/3 = "" (n0,b3)
/local/domain/0/device-model/3/state = "running" (n0,b3)
/local/domain/0/device-model/4 = "" (n0,b4)
/local/domain/0/device-model/4/state = "running" (n0,b4)
/local/domain/0/device-model/5 = "" (n0,b5)
/local/domain/0/device-model/5/state = "running" (n0,b5)
/local/domain/0/device-model/6 = "" (n0,b6)
/local/domain/0/device-model/6/state = "running" (n0,b6)
/local/domain/3 = "" (n0,r3)
/local/domain/3/vm = "/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2" (n0,r3)
/local/domain/3/device = "" (n3)
/local/domain/3/device/vkbd = "" (n3)
/local/domain/3/device/vkbd/0 = "" (n3,r0)
/local/domain/3/device/vkbd/0/protocol = "x86_64-abi" (n3,r0)
/local/domain/3/device/vkbd/0/state = "4" (n3,r0)
/local/domain/3/device/vkbd/0/backend-id = "0" (n3,r0)
/local/domain/3/device/vkbd/0/backend = "/local/domain/0/backend/vkbd/3/0" (n3,r0)
/local/domain/3/device/vkbd/0/page-ref = "1473690" (n3,r0)
/local/domain/3/device/vkbd/0/event-channel = "11" (n3,r0)
/local/domain/3/device/vkbd/0/request-abs-pointer = "1" (n3,r0)
/local/domain/3/device/vfb = "" (n3)
/local/domain/3/device/vfb/0 = "" (n3,r0)
/local/domain/3/device/vfb/0/protocol = "x86_64-abi" (n3,r0)
/local/domain/3/device/vfb/0/state = "4" (n3,r0)
/local/domain/3/device/vfb/0/backend-id = "0" (n3,r0)
/local/domain/3/device/vfb/0/backend = "/local/domain/0/backend/vfb/3/0" (n3,r0)
/local/domain/3/device/vfb/0/page-ref = "1480004" (n3,r0)
/local/domain/3/device/vfb/0/event-channel = "10" (n3,r0)
/local/domain/3/device/vfb/0/feature-update = "1" (n3,r0)
/local/domain/3/device/vbd = "" (n3)
/local/domain/3/device/vbd/51713 = "" (n3,r0)
/local/domain/3/device/vbd/51713/virtual-device = "51713" (n3,r0)
/local/domain/3/device/vbd/51713/device-type = "disk" (n3,r0)
/local/domain/3/device/vbd/51713/protocol = "x86_64-abi" (n3,r0)
/local/domain/3/device/vbd/51713/backend-id = "0" (n3,r0)
/local/domain/3/device/vbd/51713/state = "4" (n3,r0)
/local/domain/3/device/vbd/51713/backend = "/local/domain/0/backend/vbd/3/51713" (n3,r0)
/local/domain/3/device/vbd/51713/ring-ref = "8" (n3,r0)
/local/domain/3/device/vbd/51713/event-channel = "12" (n3,r0)
/local/domain/3/device/vif = "" (n3)
/local/domain/3/device/vif/0 = "" (n3,r0)
/local/domain/3/device/vif/0/mac = "00:16:3e:7a:30:25" (n3,r0)
/local/domain/3/device/vif/0/handle = "0" (n3,r0)
/local/domain/3/device/vif/0/protocol = "x86_64-abi" (n3,r0)
/local/domain/3/device/vif/0/backend-id = "0" (n3,r0)
/local/domain/3/device/vif/0/state = "4" (n3,r0)
/local/domain/3/device/vif/0/backend = "/local/domain/0/backend/vif/3/0" (n3,r0)
/local/domain/3/device/vif/0/tx-ring-ref = "1280" (n3,r0)
/local/domain/3/device/vif/0/rx-ring-ref = "1281" (n3,r0)
/local/domain/3/device/vif/0/event-channel = "13" (n3,r0)
/local/domain/3/device/vif/0/request-rx-copy = "1" (n3,r0)
/local/domain/3/device/vif/0/feature-rx-notify = "1" (n3,r0)
/local/domain/3/device/vif/0/feature-no-csum-offload = "0" (n3,r0)
/local/domain/3/device/vif/0/feature-sg = "1" (n3,r0)
/local/domain/3/device/vif/0/feature-gso-tcpv4 = "1" (n3,r0)
/local/domain/3/device/vif/1 = "" (n3,r0)
/local/domain/3/device/vif/1/mac = "00:16:3e:7a:30:26" (n3,r0)
/local/domain/3/device/vif/1/handle = "1" (n3,r0)
/local/domain/3/device/vif/1/protocol = "x86_64-abi" (n3,r0)
/local/domain/3/device/vif/1/backend-id = "0" (n3,r0)
/local/domain/3/device/vif/1/state = "4" (n3,r0)
/local/domain/3/device/vif/1/backend = "/local/domain/0/backend/vif/3/1" (n3,r0)
/local/domain/3/device/vif/1/tx-ring-ref = "1282" (n3,r0)
/local/domain/3/device/vif/1/rx-ring-ref = "1283" (n3,r0)
/local/domain/3/device/vif/1/event-channel = "14" (n3,r0)
/local/domain/3/device/vif/1/request-rx-copy = "1" (n3,r0)
/local/domain/3/device/vif/1/feature-rx-notify = "1" (n3,r0)
/local/domain/3/device/vif/1/feature-no-csum-offload = "0" (n3,r0)
/local/domain/3/device/vif/1/feature-sg = "1" (n3,r0)
/local/domain/3/device/vif/1/feature-gso-tcpv4 = "1" (n3,r0)
/local/domain/3/device/console = "" (n3)
/local/domain/3/device/console/0 = "" (n3,r0)
/local/domain/3/device/console/0/protocol = "x86_64-abi" (n3,r0)
/local/domain/3/device/console/0/state = "1" (n3,r0)
/local/domain/3/device/console/0/backend-id = "0" (n3,r0)
/local/domain/3/device/console/0/backend = "/local/domain/0/backend/console/3/0" (n3,r0)
/local/domain/3/device/suspend = "" (n3)
/local/domain/3/device/suspend/event-channel = "9" (n3)
/local/domain/3/device/vusb = "" (n3)
/local/domain/3/device/vusb/0 = "" (n3,r0)
/local/domain/3/device/vusb/0/protocol = "x86_64-abi" (n3,r0)
/local/domain/3/device/vusb/0/state = "4" (n3,r0)
/local/domain/3/device/vusb/0/backend-id = "0" (n3,r0)
/local/domain/3/device/vusb/0/backend = "/local/domain/0/backend/vusb/3/0" (n3,r0)
/local/domain/3/device/vusb/0/urb-ring-ref = "1316" (n3,r0)
/local/domain/3/device/vusb/0/conn-ring-ref = "1311" (n3,r0)
/local/domain/3/device/vusb/0/event-channel = "15" (n3,r0)
/local/domain/3/control = "" (n3)
/local/domain/3/control/platform-feature-multiprocessor-suspend = "1" (n3)
/local/domain/3/error = "" (n3)
/local/domain/3/memory = "" (n3)
/local/domain/3/memory/target = "1048576" (n3)
/local/domain/3/guest = "" (n3)
/local/domain/3/hvmpv = "" (n3)
/local/domain/3/data = "" (n3)
/local/domain/3/serial = "" (n0,r3)
/local/domain/3/serial/0 = "" (n0,r3)
/local/domain/3/serial/0/tty = "/dev/pts/1" (n0,r3)
/local/domain/3/device-misc = "" (n0,r3)
/local/domain/3/device-misc/vif = "" (n0,r3)
/local/domain/3/device-misc/vif/nextDeviceID = "2" (n0,r3)
/local/domain/3/device-misc/console = "" (n0,r3)
/local/domain/3/device-misc/console/nextDeviceID = "1" (n0,r3)
/local/domain/3/device-misc/vusb = "" (n0,r3)
/local/domain/3/device-misc/vusb/nextDeviceID = "1" (n0,r3)
/local/domain/3/image = "" (n0,r3)
/local/domain/3/image/device-model-fifo = "/var/run/xend/dm-3-1340009524.fifo" (n0,r3)
/local/domain/3/image/device-model-pid = "19562" (n0,r3)
/local/domain/3/image/entry = "18446744071562076160" (n0,r3)
/local/domain/3/image/loader = "generic" (n0,r3)
/local/domain/3/image/guest-os = "linux" (n0,r3)
/local/domain/3/image/features = "" (n0,r3)
/local/domain/3/image/features/writable-descriptor-tables = "1" (n0,r3)
/local/domain/3/image/features/supervisor-mode-kernel = "1" (n0,r3)
/local/domain/3/image/features/pae-pgdir-above-4gb = "1" (n0,r3)
/local/domain/3/image/features/writable-page-tables = "1" (n0,r3)
/local/domain/3/image/features/auto-translated-physmap = "1" (n0,r3)
/local/domain/3/image/hypercall-page = "18446744071562080256" (n0,r3)
/local/domain/3/image/guest-version = "2.6" (n0,r3)
/local/domain/3/image/paddr-offset = "0" (n0,r3)
/local/domain/3/image/virt-base = "18446744071562067968" (n0,r3)
/local/domain/3/image/suspend-cancel = "1" (n0,r3)
/local/domain/3/image/xen-version = "xen-3.0" (n0,r3)
/local/domain/3/image/init-p2m = "18446719884453740544" (n0,r3)
/local/domain/3/console = "" (n0,r3)
/local/domain/3/console/ring-ref = "4087985" (n0,r3)
/local/domain/3/console/port = "2" (n0,r3)
/local/domain/3/console/limit = "1048576" (n0,r3)
/local/domain/3/console/type = "ioemu" (n0,r3)
/local/domain/3/console/vnc-port = "5901" (n0,r3)
/local/domain/3/console/tty = "/dev/pts/1" (n0,r3)
/local/domain/3/store = "" (n0,r3)
/local/domain/3/store/ring-ref = "4087986" (n0,r3)
/local/domain/3/store/port = "1" (n0,r3)
/local/domain/3/cpu = "" (n0,r3)
/local/domain/3/cpu/1 = "" (n0,r3)
/local/domain/3/cpu/1/availability = "online" (n0,r3)
/local/domain/3/cpu/0 = "" (n0,r3)
/local/domain/3/cpu/0/availability = "online" (n0,r3)
/local/domain/3/description = "Managua Certification Server" (n0,r3)
/local/domain/3/name = "mgaca" (n0,r3)
/local/domain/3/domid = "3" (n0,r3)
/local/domain/4 = "" (n0,r4)
/local/domain/4/vm = "/vm/b38923a5-69b1-493e-9220-e81440b63d4e" (n0,r4)
/local/domain/4/device = "" (n4)
/local/domain/4/device/vkbd = "" (n4)
/local/domain/4/device/vkbd/0 = "" (n4,r0)
/local/domain/4/device/vkbd/0/protocol = "x86_64-abi" (n4,r0)
/local/domain/4/device/vkbd/0/state = "4" (n4,r0)
/local/domain/4/device/vkbd/0/backend-id = "0" (n4,r0)
/local/domain/4/device/vkbd/0/backend = "/local/domain/0/backend/vkbd/4/0" (n4,r0)
/local/domain/4/device/vkbd/0/page-ref = "3804588" (n4,r0)
/local/domain/4/device/vkbd/0/event-channel = "17" (n4,r0)
/local/domain/4/device/vkbd/0/request-abs-pointer = "1" (n4,r0)
/local/domain/4/device/vfb = "" (n4)
/local/domain/4/device/vfb/0 = "" (n4,r0)
/local/domain/4/device/vfb/0/protocol = "x86_64-abi" (n4,r0)
/local/domain/4/device/vfb/0/state = "4" (n4,r0)
/local/domain/4/device/vfb/0/backend-id = "0" (n4,r0)
/local/domain/4/device/vfb/0/backend = "/local/domain/0/backend/vfb/4/0" (n4,r0)
/local/domain/4/device/vfb/0/page-ref = "3808785" (n4,r0)
/local/domain/4/device/vfb/0/event-channel = "16" (n4,r0)
/local/domain/4/device/vfb/0/feature-update = "1" (n4,r0)
/local/domain/4/device/vbd = "" (n4)
/local/domain/4/device/vbd/51713 = "" (n4,r0)
/local/domain/4/device/vbd/51713/virtual-device = "51713" (n4,r0)
/local/domain/4/device/vbd/51713/device-type = "disk" (n4,r0)
/local/domain/4/device/vbd/51713/protocol = "x86_64-abi" (n4,r0)
/local/domain/4/device/vbd/51713/backend-id = "0" (n4,r0)
/local/domain/4/device/vbd/51713/state = "4" (n4,r0)
/local/domain/4/device/vbd/51713/backend = "/local/domain/0/backend/vbd/4/51713" (n4,r0)
/local/domain/4/device/vbd/51713/ring-ref = "8" (n4,r0)
/local/domain/4/device/vbd/51713/event-channel = "18" (n4,r0)
/local/domain/4/device/vbd/51714 = "" (n4,r0)
/local/domain/4/device/vbd/51714/virtual-device = "51714" (n4,r0)
/local/domain/4/device/vbd/51714/device-type = "disk" (n4,r0)
/local/domain/4/device/vbd/51714/protocol = "x86_64-abi" (n4,r0)
/local/domain/4/device/vbd/51714/backend-id = "0" (n4,r0)
/local/domain/4/device/vbd/51714/state = "4" (n4,r0)
/local/domain/4/device/vbd/51714/backend = "/local/domain/0/backend/vbd/4/51714" (n4,r0)
/local/domain/4/device/vbd/51714/ring-ref = "9" (n4,r0)
/local/domain/4/device/vbd/51714/event-channel = "19" (n4,r0)
/local/domain/4/device/vif = "" (n4)
/local/domain/4/device/vif/0 = "" (n4,r0)
/local/domain/4/device/vif/0/mac = "00:16:3e:1c:00:d4" (n4,r0)
/local/domain/4/device/vif/0/handle = "0" (n4,r0)
/local/domain/4/device/vif/0/protocol = "x86_64-abi" (n4,r0)
/local/domain/4/device/vif/0/backend-id = "0" (n4,r0)
/local/domain/4/device/vif/0/state = "4" (n4,r0)
/local/domain/4/device/vif/0/backend = "/local/domain/0/backend/vif/4/0" (n4,r0)
/local/domain/4/device/vif/0/tx-ring-ref = "1280" (n4,r0)
/local/domain/4/device/vif/0/rx-ring-ref = "1281" (n4,r0)
/local/domain/4/device/vif/0/event-channel = "20" (n4,r0)
/local/domain/4/device/vif/0/request-rx-copy = "1" (n4,r0)
/local/domain/4/device/vif/0/feature-rx-notify = "1" (n4,r0)
/local/domain/4/device/vif/0/feature-no-csum-offload = "0" (n4,r0)
/local/domain/4/device/vif/0/feature-sg = "1" (n4,r0)
/local/domain/4/device/vif/0/feature-gso-tcpv4 = "1" (n4,r0)
/local/domain/4/device/vif/1 = "" (n4,r0)
/local/domain/4/device/vif/1/mac = "00:16:3e:1c:00:d6" (n4,r0)
/local/domain/4/device/vif/1/handle = "1" (n4,r0)
/local/domain/4/device/vif/1/protocol = "x86_64-abi" (n4,r0)
/local/domain/4/device/vif/1/backend-id = "0" (n4,r0)
/local/domain/4/device/vif/1/state = "4" (n4,r0)
/local/domain/4/device/vif/1/backend = "/local/domain/0/backend/vif/4/1" (n4,r0)
/local/domain/4/device/vif/1/tx-ring-ref = "1282" (n4,r0)
/local/domain/4/device/vif/1/rx-ring-ref = "1283" (n4,r0)
/local/domain/4/device/vif/1/event-channel = "21" (n4,r0)
/local/domain/4/device/vif/1/request-rx-copy = "1" (n4,r0)
/local/domain/4/device/vif/1/feature-rx-notify = "1" (n4,r0)
/local/domain/4/device/vif/1/feature-no-csum-offload = "0" (n4,r0)
/local/domain/4/device/vif/1/feature-sg = "1" (n4,r0)
/local/domain/4/device/vif/1/feature-gso-tcpv4 = "1" (n4,r0)
/local/domain/4/device/console = "" (n4)
/local/domain/4/device/console/0 = "" (n4,r0)
/local/domain/4/device/console/0/protocol = "x86_64-abi" (n4,r0)
/local/domain/4/device/console/0/state = "1" (n4,r0)
/local/domain/4/device/console/0/backend-id = "0" (n4,r0)
/local/domain/4/device/console/0/backend = "/local/domain/0/backend/console/4/0" (n4,r0)
/local/domain/4/device/suspend = "" (n4)
/local/domain/4/device/suspend/event-channel = "15" (n4)
/local/domain/4/control = "" (n4)
/local/domain/4/control/platform-feature-multiprocessor-suspend = "1" (n4)
/local/domain/4/error = "" (n4)
/local/domain/4/memory = "" (n4)
/local/domain/4/memory/target = "1048576" (n4)
/local/domain/4/guest = "" (n4)
/local/domain/4/hvmpv = "" (n4)
/local/domain/4/data = "" (n4)
/local/domain/4/serial = "" (n0,r4)
/local/domain/4/serial/0 = "" (n0,r4)
/local/domain/4/serial/0/tty = "/dev/pts/0" (n0,r4)
/local/domain/4/device-misc = "" (n0,r4)
/local/domain/4/device-misc/vif = "" (n0,r4)
/local/domain/4/device-misc/vif/nextDeviceID = "2" (n0,r4)
/local/domain/4/device-misc/console = "" (n0,r4)
/local/domain/4/device-misc/console/nextDeviceID = "1" (n0,r4)
/local/domain/4/image = "" (n0,r4)
/local/domain/4/image/device-model-fifo = "/var/run/xend/dm-4-1342477947.fifo" (n0,r4)
/local/domain/4/image/device-model-pid = "11578" (n0,r4)
/local/domain/4/image/entry = "18446744071562076160" (n0,r4)
/local/domain/4/image/loader = "generic" (n0,r4)
/local/domain/4/image/guest-os = "linux" (n0,r4)
/local/domain/4/image/features = "" (n0,r4)
/local/domain/4/image/features/writable-descriptor-tables = "1" (n0,r4)
/local/domain/4/image/features/supervisor-mode-kernel = "1" (n0,r4)
/local/domain/4/image/features/pae-pgdir-above-4gb = "1" (n0,r4)
/local/domain/4/image/features/writable-page-tables = "1" (n0,r4)
/local/domain/4/image/features/auto-translated-physmap = "1" (n0,r4)
/local/domain/4/image/hypercall-page = "18446744071562080256" (n0,r4)
/local/domain/4/image/guest-version = "2.6" (n0,r4)
/local/domain/4/image/paddr-offset = "0" (n0,r4)
/local/domain/4/image/virt-base = "18446744071562067968" (n0,r4)
/local/domain/4/image/suspend-cancel = "1" (n0,r4)
/local/domain/4/image/xen-version = "xen-3.0" (n0,r4)
/local/domain/4/image/init-p2m = "18446719884453740544" (n0,r4)
/local/domain/4/console = "" (n0,r4)
/local/domain/4/console/ring-ref = "4342118" (n0,r4)
/local/domain/4/console/port = "2" (n0,r4)
/local/domain/4/console/limit = "1048576" (n0,r4)
/local/domain/4/console/type = "ioemu" (n0,r4)
/local/domain/4/console/vnc-port = "5900" (n0,r4)
/local/domain/4/console/tty = "/dev/pts/0" (n0,r4)
/local/domain/4/cpu = "" (n0,r4)
/local/domain/4/cpu/3 = "" (n0,r4)
/local/domain/4/cpu/3/availability = "online" (n0,r4)
/local/domain/4/cpu/1 = "" (n0,r4)
/local/domain/4/cpu/1/availability = "online" (n0,r4)
/local/domain/4/cpu/2 = "" (n0,r4)
/local/domain/4/cpu/2/availability = "online" (n0,r4)
/local/domain/4/cpu/0 = "" (n0,r4)
/local/domain/4/cpu/0/availability = "online" (n0,r4)
/local/domain/4/store = "" (n0,r4)
/local/domain/4/store/ring-ref = "4342119" (n0,r4)
/local/domain/4/store/port = "1" (n0,r4)
/local/domain/4/description = "" (n0,r4)
/local/domain/4/name = "mgatrain" (n0,r4)
/local/domain/4/domid = "4" (n0,r4)
/local/domain/5 = "" (n0,r5)
/local/domain/5/vm = "/vm/3b498296-a711-40b7-b9db-e0f257e5bb44" (n0,r5)
/local/domain/5/device = "" (n5)
/local/domain/5/device/vkbd = "" (n5)
/local/domain/5/device/vkbd/0 = "" (n5,r0)
/local/domain/5/device/vkbd/0/protocol = "x86_64-abi" (n5,r0)
/local/domain/5/device/vkbd/0/state = "4" (n5,r0)
/local/domain/5/device/vkbd/0/backend-id = "0" (n5,r0)
/local/domain/5/device/vkbd/0/backend = "/local/domain/0/backend/vkbd/5/0" (n5,r0)
/local/domain/5/device/vkbd/0/request-abs-pointer = "1" (n5,r0)
/local/domain/5/device/vkbd/0/page-ref = "2753702" (n5,r0)
/local/domain/5/device/vkbd/0/event-channel = "17" (n5,r0)
/local/domain/5/device/vfb = "" (n5)
/local/domain/5/device/vfb/0 = "" (n5,r0)
/local/domain/5/device/vfb/0/protocol = "x86_64-abi" (n5,r0)
/local/domain/5/device/vfb/0/state = "4" (n5,r0)
/local/domain/5/device/vfb/0/backend-id = "0" (n5,r0)
/local/domain/5/device/vfb/0/backend = "/local/domain/0/backend/vfb/5/0" (n5,r0)
/local/domain/5/device/vfb/0/page-ref = "2760197" (n5,r0)
/local/domain/5/device/vfb/0/event-channel = "16" (n5,r0)
/local/domain/5/device/vfb/0/feature-update = "1" (n5,r0)
/local/domain/5/device/vbd = "" (n5)
/local/domain/5/device/vbd/51713 = "" (n5,r0)
/local/domain/5/device/vbd/51713/virtual-device = "51713" (n5,r0)
/local/domain/5/device/vbd/51713/device-type = "disk" (n5,r0)
/local/domain/5/device/vbd/51713/protocol = "x86_64-abi" (n5,r0)
/local/domain/5/device/vbd/51713/backend-id = "0" (n5,r0)
/local/domain/5/device/vbd/51713/state = "4" (n5,r0)
/local/domain/5/device/vbd/51713/backend = "/local/domain/0/backend/vbd/5/51713" (n5,r0)
/local/domain/5/device/vbd/51713/ring-ref = "8" (n5,r0)
/local/domain/5/device/vbd/51713/event-channel = "18" (n5,r0)
/local/domain/5/device/vbd/51714 = "" (n5,r0)
/local/domain/5/device/vbd/51714/virtual-device = "51714" (n5,r0)
/local/domain/5/device/vbd/51714/device-type = "disk" (n5,r0)
/local/domain/5/device/vbd/51714/protocol = "x86_64-abi" (n5,r0)
/local/domain/5/device/vbd/51714/backend-id = "0" (n5,r0)
/local/domain/5/device/vbd/51714/state = "4" (n5,r0)
/local/domain/5/device/vbd/51714/backend = "/local/domain/0/backend/vbd/5/51714" (n5,r0)
/local/domain/5/device/vbd/51714/ring-ref = "9" (n5,r0)
/local/domain/5/device/vbd/51714/event-channel = "19" (n5,r0)
/local/domain/5/device/vif = "" (n5)
/local/domain/5/device/vif/0 = "" (n5,r0)
/local/domain/5/device/vif/0/mac = "00:16:3e:87:06:56" (n5,r0)
/local/domain/5/device/vif/0/handle = "0" (n5,r0)
/local/domain/5/device/vif/0/protocol = "x86_64-abi" (n5,r0)
/local/domain/5/device/vif/0/backend-id = "0" (n5,r0)
/local/domain/5/device/vif/0/state = "4" (n5,r0)
/local/domain/5/device/vif/0/backend = "/local/domain/0/backend/vif/5/0" (n5,r0)
/local/domain/5/device/vif/0/tx-ring-ref = "1280" (n5,r0)
/local/domain/5/device/vif/0/rx-ring-ref = "1281" (n5,r0)
/local/domain/5/device/vif/0/event-channel = "20" (n5,r0)
/local/domain/5/device/vif/0/request-rx-copy = "1" (n5,r0)
/local/domain/5/device/vif/0/feature-rx-notify = "1" (n5,r0)
/local/domain/5/device/vif/0/feature-no-csum-offload = "0" (n5,r0)
/local/domain/5/device/vif/0/feature-sg = "1" (n5,r0)
/local/domain/5/device/vif/0/feature-gso-tcpv4 = "1" (n5,r0)
/local/domain/5/device/vif/1 = "" (n5,r0)
/local/domain/5/device/vif/1/mac = "00:16:3e:87:06:58" (n5,r0)
/local/domain/5/device/vif/1/handle = "1" (n5,r0)
/local/domain/5/device/vif/1/protocol = "x86_64-abi" (n5,r0)
/local/domain/5/device/vif/1/backend-id = "0" (n5,r0)
/local/domain/5/device/vif/1/state = "4" (n5,r0)
/local/domain/5/device/vif/1/backend = "/local/domain/0/backend/vif/5/1" (n5,r0)
/local/domain/5/device/vif/1/tx-ring-ref = "1282" (n5,r0)
/local/domain/5/device/vif/1/rx-ring-ref = "1283" (n5,r0)
/local/domain/5/device/vif/1/event-channel = "21" (n5,r0)
/local/domain/5/device/vif/1/request-rx-copy = "1" (n5,r0)
/local/domain/5/device/vif/1/feature-rx-notify = "1" (n5,r0)
/local/domain/5/device/vif/1/feature-no-csum-offload = "0" (n5,r0)
/local/domain/5/device/vif/1/feature-sg = "1" (n5,r0)
/local/domain/5/device/vif/1/feature-gso-tcpv4 = "1" (n5,r0)
/local/domain/5/device/console = "" (n5)
/local/domain/5/device/console/0 = "" (n5,r0)
/local/domain/5/device/console/0/protocol = "x86_64-abi" (n5,r0)
/local/domain/5/device/console/0/state = "1" (n5,r0)
/local/domain/5/device/console/0/backend-id = "0" (n5,r0)
/local/domain/5/device/console/0/backend = "/local/domain/0/backend/console/5/0" (n5,r0)
/local/domain/5/device/suspend = "" (n5)
/local/domain/5/device/suspend/event-channel = "15" (n5)
/local/domain/5/control = "" (n5)
/local/domain/5/control/platform-feature-multiprocessor-suspend = "1" (n5)
/local/domain/5/error = "" (n5)
/local/domain/5/memory = "" (n5)
/local/domain/5/memory/target = "1048576" (n5)
/local/domain/5/guest = "" (n5)
/local/domain/5/hvmpv = "" (n5)
/local/domain/5/data = "" (n5)
/local/domain/5/serial = "" (n0,r5)
/local/domain/5/serial/0 = "" (n0,r5)
/local/domain/5/serial/0/tty = "/dev/pts/2" (n0,r5)
/local/domain/5/device-misc = "" (n0,r5)
/local/domain/5/device-misc/vif = "" (n0,r5)
/local/domain/5/device-misc/vif/nextDeviceID = "2" (n0,r5)
/local/domain/5/device-misc/console = "" (n0,r5)
/local/domain/5/device-misc/console/nextDeviceID = "1" (n0,r5)
/local/domain/5/image = "" (n0,r5)
/local/domain/5/image/device-model-fifo = "/var/run/xend/dm-5-1342477948.fifo" (n0,r5)
/local/domain/5/image/device-model-pid = "11768" (n0,r5)
/local/domain/5/image/entry = "18446744071562076160" (n0,r5)
/local/domain/5/image/loader = "generic" (n0,r5)
/local/domain/5/image/guest-os = "linux" (n0,r5)
/local/domain/5/image/features = "" (n0,r5)
/local/domain/5/image/features/writable-descriptor-tables = "1" (n0,r5)
/local/domain/5/image/features/supervisor-mode-kernel = "1" (n0,r5)
/local/domain/5/image/features/pae-pgdir-above-4gb = "1" (n0,r5)
/local/domain/5/image/features/writable-page-tables = "1" (n0,r5)
/local/domain/5/image/features/auto-translated-physmap = "1" (n0,r5)
/local/domain/5/image/hypercall-page = "18446744071562080256" (n0,r5)
/local/domain/5/image/guest-version = "2.6" (n0,r5)
/local/domain/5/image/paddr-offset = "0" (n0,r5)
/local/domain/5/image/virt-base = "18446744071562067968" (n0,r5)
/local/domain/5/image/suspend-cancel = "1" (n0,r5)
/local/domain/5/image/xen-version = "xen-3.0" (n0,r5)
/local/domain/5/image/init-p2m = "18446719884453740544" (n0,r5)
/local/domain/5/console = "" (n0,r5)
/local/domain/5/console/ring-ref = "3795445" (n0,r5)
/local/domain/5/console/port = "2" (n0,r5)
/local/domain/5/console/limit = "1048576" (n0,r5)
/local/domain/5/console/type = "ioemu" (n0,r5)
/local/domain/5/console/vnc-port = "5902" (n0,r5)
/local/domain/5/console/tty = "/dev/pts/2" (n0,r5)
/local/domain/5/cpu = "" (n0,r5)
/local/domain/5/cpu/3 = "" (n0,r5)
/local/domain/5/cpu/3/availability = "online" (n0,r5)
/local/domain/5/cpu/1 = "" (n0,r5)
/local/domain/5/cpu/1/availability = "online" (n0,r5)
/local/domain/5/cpu/2 = "" (n0,r5)
/local/domain/5/cpu/2/availability = "online" (n0,r5)
/local/domain/5/cpu/0 = "" (n0,r5)
/local/domain/5/cpu/0/availability = "online" (n0,r5)
/local/domain/5/store = "" (n0,r5)
/local/domain/5/store/ring-ref = "3795446" (n0,r5)
/local/domain/5/store/port = "1" (n0,r5)
/local/domain/5/description = "" (n0,r5)
/local/domain/5/name = "mgaextws" (n0,r5)
/local/domain/5/domid = "5" (n0,r5)
/local/domain/6 = "" (n0,r6)
/local/domain/6/vm = "/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe" (n0,r6)
/local/domain/6/device = "" (n6)
/local/domain/6/device/vkbd = "" (n6)
/local/domain/6/device/vkbd/0 = "" (n6,r0)
/local/domain/6/device/vkbd/0/protocol = "x86_64-abi" (n6,r0)
/local/domain/6/device/vkbd/0/state = "4" (n6,r0)
/local/domain/6/device/vkbd/0/backend-id = "0" (n6,r0)
/local/domain/6/device/vkbd/0/backend = "/local/domain/0/backend/vkbd/6/0" (n6,r0)
/local/domain/6/device/vkbd/0/request-abs-pointer = "1" (n6,r0)
/local/domain/6/device/vkbd/0/page-ref = "3278054" (n6,r0)
/local/domain/6/device/vkbd/0/event-channel = "17" (n6,r0)
/local/domain/6/device/vfb = "" (n6)
/local/domain/6/device/vfb/0 = "" (n6,r0)
/local/domain/6/device/vfb/0/protocol = "x86_64-abi" (n6,r0)
/local/domain/6/device/vfb/0/state = "4" (n6,r0)
/local/domain/6/device/vfb/0/backend-id = "0" (n6,r0)
/local/domain/6/device/vfb/0/backend = "/local/domain/0/backend/vfb/6/0" (n6,r0)
/local/domain/6/device/vfb/0/page-ref = "3285571" (n6,r0)
/local/domain/6/device/vfb/0/event-channel = "16" (n6,r0)
/local/domain/6/device/vfb/0/feature-update = "1" (n6,r0)
/local/domain/6/device/vbd = "" (n6)
/local/domain/6/device/vbd/51713 = "" (n6,r0)
/local/domain/6/device/vbd/51713/virtual-device = "51713" (n6,r0)
/local/domain/6/device/vbd/51713/device-type = "disk" (n6,r0)
/local/domain/6/device/vbd/51713/protocol = "x86_64-abi" (n6,r0)
/local/domain/6/device/vbd/51713/backend-id = "0" (n6,r0)
/local/domain/6/device/vbd/51713/state = "4" (n6,r0)
/local/domain/6/device/vbd/51713/backend = "/local/domain/0/backend/vbd/6/51713" (n6,r0)
/local/domain/6/device/vbd/51713/ring-ref = "8" (n6,r0)
/local/domain/6/device/vbd/51713/event-channel = "18" (n6,r0)
/local/domain/6/device/vbd/51714 = "" (n6,r0)
/local/domain/6/device/vbd/51714/virtual-device = "51714" (n6,r0)
/local/domain/6/device/vbd/51714/device-type = "disk" (n6,r0)
/local/domain/6/device/vbd/51714/protocol = "x86_64-abi" (n6,r0)
/local/domain/6/device/vbd/51714/backend-id = "0" (n6,r0)
/local/domain/6/device/vbd/51714/state = "4" (n6,r0)
/local/domain/6/device/vbd/51714/backend = "/local/domain/0/backend/vbd/6/51714" (n6,r0)
/local/domain/6/device/vbd/51714/ring-ref = "9" (n6,r0)
/local/domain/6/device/vbd/51714/event-channel = "19" (n6,r0)
/local/domain/6/device/vif = "" (n6)
/local/domain/6/device/vif/0 = "" (n6,r0)
/local/domain/6/device/vif/0/mac = "00:16:3e:03:52:b9" (n6,r0)
/local/domain/6/device/vif/0/handle = "0" (n6,r0)
/local/domain/6/device/vif/0/protocol = "x86_64-abi" (n6,r0)
/local/domain/6/device/vif/0/backend-id = "0" (n6,r0)
/local/domain/6/device/vif/0/state = "4" (n6,r0)
/local/domain/6/device/vif/0/backend = "/local/domain/0/backend/vif/6/0" (n6,r0)
/local/domain/6/device/vif/0/tx-ring-ref = "1280" (n6,r0)
/local/domain/6/device/vif/0/rx-ring-ref = "1281" (n6,r0)
/local/domain/6/device/vif/0/event-channel = "20" (n6,r0)
/local/domain/6/device/vif/0/request-rx-copy = "1" (n6,r0)
/local/domain/6/device/vif/0/feature-rx-notify = "1" (n6,r0)
/local/domain/6/device/vif/0/feature-no-csum-offload = "0" (n6,r0)
/local/domain/6/device/vif/0/feature-sg = "1" (n6,r0)
/local/domain/6/device/vif/0/feature-gso-tcpv4 = "1" (n6,r0)
/local/domain/6/device/vif/1 = "" (n6,r0)
/local/domain/6/device/vif/1/mac = "00:16:3e:3f:83:2a" (n6,r0)
/local/domain/6/device/vif/1/handle = "1" (n6,r0)
/local/domain/6/device/vif/1/protocol = "x86_64-abi" (n6,r0)
/local/domain/6/device/vif/1/backend-id = "0" (n6,r0)
/local/domain/6/device/vif/1/state = "4" (n6,r0)
/local/domain/6/device/vif/1/backend = "/local/domain/0/backend/vif/6/1" (n6,r0)
/local/domain/6/device/vif/1/tx-ring-ref = "1282" (n6,r0)
/local/domain/6/device/vif/1/rx-ring-ref = "1283" (n6,r0)
/local/domain/6/device/vif/1/event-channel = "21" (n6,r0)
/local/domain/6/device/vif/1/request-rx-copy = "1" (n6,r0)
/local/domain/6/device/vif/1/feature-rx-notify = "1" (n6,r0)
/local/domain/6/device/vif/1/feature-no-csum-offload = "0" (n6,r0)
/local/domain/6/device/vif/1/feature-sg = "1" (n6,r0)
/local/domain/6/device/vif/1/feature-gso-tcpv4 = "1" (n6,r0)
/local/domain/6/device/console = "" (n6)
/local/domain/6/device/console/0 = "" (n6,r0)
/local/domain/6/device/console/0/protocol = "x86_64-abi" (n6,r0)
/local/domain/6/device/console/0/state = "1" (n6,r0)
/local/domain/6/device/console/0/backend-id = "0" (n6,r0)
/local/domain/6/device/console/0/backend = "/local/domain/0/backend/console/6/0" (n6,r0)
/local/domain/6/device/suspend = "" (n6)
/local/domain/6/device/suspend/event-channel = "15" (n6)
/local/domain/6/control = "" (n6)
/local/domain/6/control/platform-feature-multiprocessor-suspend = "1" (n6)
/local/domain/6/error = "" (n6)
/local/domain/6/memory = "" (n6)
/local/domain/6/memory/target = "5242880" (n6)
/local/domain/6/guest = "" (n6)
/local/domain/6/hvmpv = "" (n6)
/local/domain/6/data = "" (n6)
/local/domain/6/serial = "" (n0,r6)
/local/domain/6/serial/0 = "" (n0,r6)
/local/domain/6/serial/0/tty = "/dev/pts/3" (n0,r6)
/local/domain/6/device-misc = "" (n0,r6)
/local/domain/6/device-misc/vif = "" (n0,r6)
/local/domain/6/device-misc/vif/nextDeviceID = "2" (n0,r6)
/local/domain/6/device-misc/console = "" (n0,r6)
/local/domain/6/device-misc/console/nextDeviceID = "1" (n0,r6)
/local/domain/6/image = "" (n0,r6)
/local/domain/6/image/device-model-fifo = "/var/run/xend/dm-6-1342477950.fifo" (n0,r6)
/local/domain/6/image/device-model-pid = "12020" (n0,r6)
/local/domain/6/image/entry = "18446744071562076160" (n0,r6)
/local/domain/6/image/loader = "generic" (n0,r6)
/local/domain/6/image/guest-os = "linux" (n0,r6)
/local/domain/6/image/features = "" (n0,r6)
/local/domain/6/image/features/writable-descriptor-tables = "1" (n0,r6)
/local/domain/6/image/features/supervisor-mode-kernel = "1" (n0,r6)
/local/domain/6/image/features/pae-pgdir-above-4gb = "1" (n0,r6)
/local/domain/6/image/features/writable-page-tables = "1" (n0,r6)
/local/domain/6/image/features/auto-translated-physmap = "1" (n0,r6)
/local/domain/6/image/hypercall-page = "18446744071562080256" (n0,r6)
/local/domain/6/image/guest-version = "2.6" (n0,r6)
/local/domain/6/image/paddr-offset = "0" (n0,r6)
/local/domain/6/image/virt-base = "18446744071562067968" (n0,r6)
/local/domain/6/image/suspend-cancel = "1" (n0,r6)
/local/domain/6/image/xen-version = "xen-3.0" (n0,r6)
/local/domain/6/image/init-p2m = "18446719884453740544" (n0,r6)
/local/domain/6/console = "" (n0,r6)
/local/domain/6/console/ring-ref = "2744821" (n0,r6)
/local/domain/6/console/port = "2" (n0,r6)
/local/domain/6/console/limit = "1048576" (n0,r6)
/local/domain/6/console/type = "ioemu" (n0,r6)
/local/domain/6/console/vnc-port = "5903" (n0,r6)
/local/domain/6/console/tty = "/dev/pts/3" (n0,r6)
/local/domain/6/cpu = "" (n0,r6)
/local/domain/6/cpu/3 = "" (n0,r6)
/local/domain/6/cpu/3/availability = "online" (n0,r6)
/local/domain/6/cpu/1 = "" (n0,r6)
/local/domain/6/cpu/1/availability = "online" (n0,r6)
/local/domain/6/cpu/2 = "" (n0,r6)
/local/domain/6/cpu/2/availability = "online" (n0,r6)
/local/domain/6/cpu/0 = "" (n0,r6)
/local/domain/6/cpu/0/availability = "online" (n0,r6)
/local/domain/6/store = "" (n0,r6)
/local/domain/6/store/ring-ref = "2744822" (n0,r6)
/local/domain/6/store/port = "1" (n0,r6)
/local/domain/6/description = "" (n0,r6)
/local/domain/6/name = "mgaweb1" (n0,r6)
/local/domain/6/domid = "6" (n0,r6)
/local/pool = "" (n0)
/local/pool/0 = "" (n0)
/local/pool/0/other_config = "" (n0)
/local/pool/0/description = "Pool-0" (n0)
/local/pool/0/uuid = "f3e0f00a-ef58-45e7-0d95-422cac5d8970" (n0)
/local/pool/0/name = "Pool-0" (n0)
/vm = "" (n0)
/vm/00000000-0000-0000-0000-000000000000 = "" (n0)
/vm/00000000-0000-0000-0000-000000000000/on_xend_stop = "ignore" (n0)
/vm/00000000-0000-0000-0000-000000000000/pool_name = "Pool-0" (n0)
/vm/00000000-0000-0000-0000-000000000000/shadow_memory = "0" (n0)
/vm/00000000-0000-0000-0000-000000000000/uuid = "00000000-0000-0000-0000-000000000000" (r0)
/vm/00000000-0000-0000-0000-000000000000/on_reboot = "restart" (n0)
/vm/00000000-0000-0000-0000-000000000000/image = "(linux (kernel ) (superpages 0) (nomigrate 0) (tsc_mode 0))" (n0)
/vm/00000000-0000-0000-0000-000000000000/image/ostype = "linux" (n0)
/vm/00000000-0000-0000-0000-000000000000/image/kernel = "" (n0)
/vm/00000000-0000-0000-0000-000000000000/image/cmdline = "" (r0)
/vm/00000000-0000-0000-0000-000000000000/image/ramdisk = "" (n0)
/vm/00000000-0000-0000-0000-000000000000/on_poweroff = "destroy" (n0)
/vm/00000000-0000-0000-0000-000000000000/bootloader_args = "" (n0)
/vm/00000000-0000-0000-0000-000000000000/on_xend_start = "ignore" (n0)
/vm/00000000-0000-0000-0000-000000000000/on_crash = "restart" (n0)
/vm/00000000-0000-0000-0000-000000000000/xend = "" (n0)
/vm/00000000-0000-0000-0000-000000000000/xend/restart_count = "0" (n0)
/vm/00000000-0000-0000-0000-000000000000/vcpus = "4" (n0)
/vm/00000000-0000-0000-0000-000000000000/vcpu_avail = "1" (n0)
/vm/00000000-0000-0000-0000-000000000000/bootloader = "" (n0)
/vm/00000000-0000-0000-0000-000000000000/name = "Domain-0" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2 = "" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/image = "(linux (kernel ) (superpages 0) (videoram 4) (pci ()) (nomigrate 0) (tsc_mode 0) (device_model /usr/lib/xen/bin/qemu-dm) (notes (FEATURES 'writable_page_tables|writable_descriptor_tables|auto_translated_physmap|pae_pgdir_above_4gb|supervisor_mode_kernel') (VIRT_BASE 18446744071562067968) (GUEST_VERSION 2.6) (PADDR_OFFSET 0) (GUEST_OS linux) (HYPERCALL_PAGE 18446744071562080256) (LOADER generic) (INIT_P2M 18446719884453740544) (SUSPEND_CANCEL 1) (ENTRY 18446744071562076160) (XEN_VERSION xen-3.0)))" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/image/ostype = "linux" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/image/kernel = "/var/run/xend/boot/boot_kernel.b_lsKP" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/image/cmdline = "root=/dev/xvda1 resume=/dev/xvda1 splash=silent showopts console=tty1 console=xvc0 " (n0,r3)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/image/ramdisk = "/var/run/xend/boot/boot_ramdisk._ivX_c" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device = "" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vkbd = "" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vkbd/0 = "" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vkbd/0/frontend = "/local/domain/3/device/vkbd/0" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vkbd/0/frontend-id = "3" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vkbd/0/backend-id = "0" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vkbd/0/backend = "/local/domain/0/backend/vkbd/3/0" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vfb = "" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vfb/0 = "" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vfb/0/frontend = "/local/domain/3/device/vfb/0" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vfb/0/frontend-id = "3" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vfb/0/backend-id = "0" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vfb/0/backend = "/local/domain/0/backend/vfb/3/0" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vbd = "" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vbd/51713 = "" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vbd/51713/frontend = "/local/domain/3/device/vbd/51713" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vbd/51713/frontend-id = "3" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vbd/51713/backend-id = "0" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vbd/51713/backend = "/local/domain/0/backend/vbd/3/51713" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vif = "" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vif/0 = "" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vif/0/frontend = "/local/domain/3/device/vif/0" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vif/0/frontend-id = "3" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vif/0/backend-id = "0" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vif/0/backend = "/local/domain/0/backend/vif/3/0" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vif/1 = "" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vif/1/frontend = "/local/domain/3/device/vif/1" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vif/1/frontend-id = "3" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vif/1/backend-id = "0" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vif/1/backend = "/local/domain/0/backend/vif/3/1" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/console = "" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/console/0 = "" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/console/0/frontend = "/local/domain/3/device/console/0" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/console/0/frontend-id = "3" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/console/0/backend-id = "0" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/console/0/backend = "/local/domain/0/backend/console/3/0" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vusb = "" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vusb/0 = "" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vusb/0/frontend = "/local/domain/3/device/vusb/0" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vusb/0/frontend-id = "3" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vusb/0/backend-id = "0" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/device/vusb/0/backend = "/local/domain/0/backend/vusb/3/0" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/on_xend_stop = "ignore" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/pool_name = "Pool-0" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/shadow_memory = "0" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/uuid = "99a002ad-7c36-4a40-b9f5-545770f2d1b2" (n0,r3)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/on_reboot = "restart" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/start_time = "1340009524.72" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/on_poweroff = "destroy" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/bootloader_args = "-q" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/on_xend_start = "ignore" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/on_crash = "destroy" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/xend = "" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/xend/restart_count = "0" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/vcpus = "2" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/vcpu_avail = "3" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/bootloader = "/usr/bin/pygrub" (n0)
/vm/99a002ad-7c36-4a40-b9f5-545770f2d1b2/name = "mgaca" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e = "" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/image = "(linux (kernel ) (superpages 0) (videoram 4) (pci ()) (nomigrate 0) (tsc_mode 0) (device_model /usr/lib/xen/bin/qemu-dm) (notes (FEATURES 'writable_page_tables|writable_descriptor_tables|auto_translated_physmap|pae_pgdir_above_4gb|supervisor_mode_kernel') (VIRT_BASE 18446744071562067968) (GUEST_VERSION 2.6) (PADDR_OFFSET 0) (GUEST_OS linux) (HYPERCALL_PAGE 18446744071562080256) (LOADER generic) (INIT_P2M 18446719884453740544) (SUSPEND_CANCEL 1) (ENTRY 18446744071562076160) (XEN_VERSION xen-3.0)))" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/image/ostype = "linux" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/image/kernel = "/var/run/xend/boot/boot_kernel.SQr0Vi" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/image/cmdline = "root=/dev/xvda1 resume=/dev/xvda1 splash=silent showopts console=tty1 console=xvc0 " (n0,r4)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/image/ramdisk = "/var/run/xend/boot/boot_ramdisk.SLsDmK" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device = "" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vkbd = "" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vkbd/0 = "" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vkbd/0/frontend = "/local/domain/4/device/vkbd/0" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vkbd/0/frontend-id = "4" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vkbd/0/backend-id = "0" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vkbd/0/backend = "/local/domain/0/backend/vkbd/4/0" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vfb = "" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vfb/0 = "" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vfb/0/frontend = "/local/domain/4/device/vfb/0" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vfb/0/frontend-id = "4" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vfb/0/backend-id = "0" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vfb/0/backend = "/local/domain/0/backend/vfb/4/0" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vbd = "" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vbd/51713 = "" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vbd/51713/frontend = "/local/domain/4/device/vbd/51713" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vbd/51713/frontend-id = "4" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vbd/51713/backend-id = "0" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vbd/51713/backend = "/local/domain/0/backend/vbd/4/51713" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vbd/51714 = "" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vbd/51714/frontend = "/local/domain/4/device/vbd/51714" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vbd/51714/frontend-id = "4" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vbd/51714/backend-id = "0" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vbd/51714/backend = "/local/domain/0/backend/vbd/4/51714" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vif = "" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vif/0 = "" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vif/0/frontend = "/local/domain/4/device/vif/0" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vif/0/frontend-id = "4" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vif/0/backend-id = "0" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vif/0/backend = "/local/domain/0/backend/vif/4/0" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vif/1 = "" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vif/1/frontend = "/local/domain/4/device/vif/1" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vif/1/frontend-id = "4" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vif/1/backend-id = "0" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/vif/1/backend = "/local/domain/0/backend/vif/4/1" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/console = "" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/console/0 = "" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/console/0/frontend = "/local/domain/4/device/console/0" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/console/0/frontend-id = "4" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/console/0/backend-id = "0" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/device/console/0/backend = "/local/domain/0/backend/console/4/0" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/on_xend_stop = "ignore" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/pool_name = "Pool-0" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/shadow_memory = "0" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/uuid = "b38923a5-69b1-493e-9220-e81440b63d4e" (n0,r4)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/on_reboot = "restart" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/start_time = "1342477947.59" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/on_poweroff = "destroy" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/bootloader_args = "-q" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/on_xend_start = "ignore" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/on_crash = "destroy" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/xend = "" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/xend/restart_count = "0" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/vcpus = "4" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/vcpu_avail = "15" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/bootloader = "/usr/bin/pygrub" (n0)
/vm/b38923a5-69b1-493e-9220-e81440b63d4e/name = "mgatrain" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44 = "" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/image = "(linux (kernel ) (superpages 0) (videoram 4) (pci ()) (nomigrate 0) (tsc_mode 0) (device_model /usr/lib/xen/bin/qemu-dm) (notes (FEATURES 'writable_page_tables|writable_descriptor_tables|auto_translated_physmap|pae_pgdir_above_4gb|supervisor_mode_kernel') (VIRT_BASE 18446744071562067968) (GUEST_VERSION 2.6) (PADDR_OFFSET 0) (GUEST_OS linux) (HYPERCALL_PAGE 18446744071562080256) (LOADER generic) (INIT_P2M 18446719884453740544) (SUSPEND_CANCEL 1) (ENTRY 18446744071562076160) (XEN_VERSION xen-3.0)))" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/image/ostype = "linux" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/image/kernel = "/var/run/xend/boot/boot_kernel.U6MAIh" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/image/cmdline = "root=/dev/xvda1 resume=/dev/xvda2 splash=silent showopts console=tty1 console=xvc0 " (n0,r5)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/image/ramdisk = "/var/run/xend/boot/boot_ramdisk.464MmW" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device = "" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vkbd = "" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vkbd/0 = "" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vkbd/0/frontend = "/local/domain/5/device/vkbd/0" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vkbd/0/frontend-id = "5" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vkbd/0/backend-id = "0" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vkbd/0/backend = "/local/domain/0/backend/vkbd/5/0" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vfb = "" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vfb/0 = "" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vfb/0/frontend = "/local/domain/5/device/vfb/0" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vfb/0/frontend-id = "5" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vfb/0/backend-id = "0" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vfb/0/backend = "/local/domain/0/backend/vfb/5/0" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vbd = "" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vbd/51713 = "" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vbd/51713/frontend = "/local/domain/5/device/vbd/51713" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vbd/51713/frontend-id = "5" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vbd/51713/backend-id = "0" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vbd/51713/backend = "/local/domain/0/backend/vbd/5/51713" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vbd/51714 = "" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vbd/51714/frontend = "/local/domain/5/device/vbd/51714" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vbd/51714/frontend-id = "5" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vbd/51714/backend-id = "0" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vbd/51714/backend = "/local/domain/0/backend/vbd/5/51714" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vif = "" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vif/0 = "" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vif/0/frontend = "/local/domain/5/device/vif/0" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vif/0/frontend-id = "5" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vif/0/backend-id = "0" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vif/0/backend = "/local/domain/0/backend/vif/5/0" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vif/1 = "" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vif/1/frontend = "/local/domain/5/device/vif/1" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vif/1/frontend-id = "5" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vif/1/backend-id = "0" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/vif/1/backend = "/local/domain/0/backend/vif/5/1" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/console = "" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/console/0 = "" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/console/0/frontend = "/local/domain/5/device/console/0" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/console/0/frontend-id = "5" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/console/0/backend-id = "0" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/device/console/0/backend = "/local/domain/0/backend/console/5/0" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/on_xend_stop = "ignore" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/pool_name = "Pool-0" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/shadow_memory = "0" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/uuid = "3b498296-a711-40b7-b9db-e0f257e5bb44" (n0,r5)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/on_reboot = "restart" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/start_time = "1342477948.64" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/on_poweroff = "destroy" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/bootloader_args = "-q" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/on_xend_start = "ignore" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/on_crash = "destroy" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/xend = "" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/xend/restart_count = "0" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/vcpus = "4" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/vcpu_avail = "15" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/bootloader = "/usr/bin/pygrub" (n0)
/vm/3b498296-a711-40b7-b9db-e0f257e5bb44/name = "mgaextws" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe = "" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/image = "(linux (kernel ) (superpages 0) (videoram 4) (pci ()) (nomigrate 0) (tsc_mode 0) (device_model /usr/lib/xen/bin/qemu-dm) (notes (FEATURES 'writable_page_tables|writable_descriptor_tables|auto_translated_physmap|pae_pgdir_above_4gb|supervisor_mode_kernel') (VIRT_BASE 18446744071562067968) (GUEST_VERSION 2.6) (PADDR_OFFSET 0) (GUEST_OS linux) (HYPERCALL_PAGE 18446744071562080256) (LOADER generic) (INIT_P2M 18446719884453740544) (SUSPEND_CANCEL 1) (ENTRY 18446744071562076160) (XEN_VERSION xen-3.0)))" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/image/ostype = "linux" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/image/kernel = "/var/run/xend/boot/boot_kernel.4uMBhR" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/image/cmdline = "root=/dev/xvda1 resume=/dev/xvda2 splash=silent showopts console=tty1 console=xvc0 " (n0,r6)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/image/ramdisk = "/var/run/xend/boot/boot_ramdisk.BBHNyj" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device = "" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vkbd = "" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vkbd/0 = "" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vkbd/0/frontend = "/local/domain/6/device/vkbd/0" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vkbd/0/frontend-id = "6" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vkbd/0/backend-id = "0" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vkbd/0/backend = "/local/domain/0/backend/vkbd/6/0" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vfb = "" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vfb/0 = "" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vfb/0/frontend = "/local/domain/6/device/vfb/0" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vfb/0/frontend-id = "6" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vfb/0/backend-id = "0" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vfb/0/backend = "/local/domain/0/backend/vfb/6/0" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vbd = "" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vbd/51713 = "" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vbd/51713/frontend = "/local/domain/6/device/vbd/51713" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vbd/51713/frontend-id = "6" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vbd/51713/backend-id = "0" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vbd/51713/backend = "/local/domain/0/backend/vbd/6/51713" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vbd/51714 = "" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vbd/51714/frontend = "/local/domain/6/device/vbd/51714" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vbd/51714/frontend-id = "6" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vbd/51714/backend-id = "0" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vbd/51714/backend = "/local/domain/0/backend/vbd/6/51714" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vif = "" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vif/0 = "" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vif/0/frontend = "/local/domain/6/device/vif/0" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vif/0/frontend-id = "6" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vif/0/backend-id = "0" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vif/0/backend = "/local/domain/0/backend/vif/6/0" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vif/1 = "" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vif/1/frontend = "/local/domain/6/device/vif/1" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vif/1/frontend-id = "6" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vif/1/backend-id = "0" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/vif/1/backend = "/local/domain/0/backend/vif/6/1" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/console = "" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/console/0 = "" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/console/0/frontend = "/local/domain/6/device/console/0" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/console/0/frontend-id = "6" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/console/0/backend-id = "0" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/device/console/0/backend = "/local/domain/0/backend/console/6/0" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/on_xend_stop = "ignore" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/pool_name = "Pool-0" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/shadow_memory = "0" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/uuid = "93284ae3-45f6-4308-adc1-be4cdd5c6cbe" (n0,r6)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/on_reboot = "restart" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/start_time = "1342477950.11" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/on_poweroff = "destroy" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/bootloader_args = "-q" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/on_xend_start = "ignore" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/on_crash = "destroy" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/xend = "" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/xend/restart_count = "0" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/vcpus = "4" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/vcpu_avail = "15" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/bootloader = "/usr/bin/pygrub" (n0)
/vm/93284ae3-45f6-4308-adc1-be4cdd5c6cbe/name = "mgaweb1" (n0)
[-- Attachment #3: Type: text/plain, Size: 126 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: PV USB Use Case for Xen 4.x
2012-08-20 19:48 ` Tom Parker
@ 2012-08-20 20:10 ` Pasi Kärkkäinen
2012-08-21 6:18 ` James Harper
0 siblings, 1 reply; 6+ messages in thread
From: Pasi Kärkkäinen @ 2012-08-20 20:10 UTC (permalink / raw)
To: Tom Parker; +Cc: Ian Campbell, xen-devel@lists.xen.org
On Mon, Aug 20, 2012 at 03:48:45PM -0400, Tom Parker wrote:
> >
> >> Currently we use PVUSB to attach a USB Smartcard reader through our
> >> dom0 (SLES 11 SP1) running on an HP Blade Server with the Token
> >> mounted on an internal USB Port to our domU CA server (SLES 11)
> >>
> >> The config file syntax is broken so we have to manually attach (I have
> >> it scripted) whenever our hosts reboot (which is almost never.)
> > Can you give an example of what the syntax *should* be?
> There used to be some data in the wiki or in an initial presentation on
> PVUSB but as it has never worked for me. I don't remember how it worked.
>
http://wiki.xen.org/wiki/Xen_USB_Passthrough
> >
> > Do you happen to know if this uses the PVUSB drivers or some other
> > mechanism? "lsmod" in both dom0 and domU should provide a clue if the
> > drivers are loaded.
> Looks like it:
>
> dom0
> mgaxen1:~ # lsmod | grep usb
> usbbk 23503 0
> xenbus_be 3952 4 usbbk,netbk,blkbk,blktap
> usbhid 50900 0
> hid 83977 1 usbhid
> usbcore 221920 5 usbbk,usbhid,uhci_hcd,ehci_hcd
>
> domU
> mgaca:~ # lsmod | grep usb
> usbcore 220777 3 xen_hcd
>
So this looks like the PVUSB drivers (usbback/usbfront) from xen unmodified_drivers
and/or from Suse's xenlinux forward-ported patches.
There's also a PVUSB port to pvops kernels, it's available in konrad's git tree.
> >
> > Does this work for both PV and HVM guests or do you only use one or the
> > other?
> I only use PV guests.
>
PVUSB works for both PV and HVM guests.
And James Harper's GPLPV Windows drivers contain PVUSB frontend driver for Windows.
-- Pasi
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: PV USB Use Case for Xen 4.x
2012-08-20 20:10 ` Pasi Kärkkäinen
@ 2012-08-21 6:18 ` James Harper
0 siblings, 0 replies; 6+ messages in thread
From: James Harper @ 2012-08-21 6:18 UTC (permalink / raw)
To: Pasi Kärkkäinen, Tom Parker
Cc: Ian Campbell, xen-devel@lists.xen.org
>
> PVUSB works for both PV and HVM guests.
> And James Harper's GPLPV Windows drivers contain PVUSB frontend driver
> for Windows.
>
GPLPV PVUSB is considered experimental... just in case anyone thinks it's production ready!
James
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2012-08-21 6:18 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-15 17:07 PV USB Use Case for Xen 4.x Tom Parker
2012-08-16 9:25 ` Ian Campbell
2012-08-16 12:21 ` Pasi Kärkkäinen
2012-08-20 19:48 ` Tom Parker
2012-08-20 20:10 ` Pasi Kärkkäinen
2012-08-21 6:18 ` James Harper
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).