diff options
author | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-04-22 15:19:39 +0000 |
---|---|---|
committer | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-04-22 15:19:39 +0000 |
commit | 2c8b24a3914361de941e959e38e3c163a5adeea7 (patch) | |
tree | 411b956f4fbe8f95bb971f4241ff90087bee7bd7 /hw/xen_backend.c | |
parent | e613b064a88a94b2e887f2cb7a5a3a9082e67d9b (diff) |
xen: blk & nic configuration via cmd line. (Gerd Hoffmann)
This patch makes qemu create backend and frontend device entries in
xenstore for devices configured on the command line. It will use
qdisk and qnic backend names, so the qemu internal backends will
be used.
Disks can be created using -drive if=xen,file=...
Nics can be created using -net nic,macaddr=...
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7225 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/xen_backend.c')
-rw-r--r-- | hw/xen_backend.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/xen_backend.c b/hw/xen_backend.c index c1e37288e1..2f2ec7ffe0 100644 --- a/hw/xen_backend.c +++ b/hw/xen_backend.c @@ -45,6 +45,7 @@ /* public */ int xen_xc; struct xs_handle *xenstore = NULL; +const char *xen_protocol; /* private */ static TAILQ_HEAD(XenDeviceHead, XenDevice) xendevs = TAILQ_HEAD_INITIALIZER(xendevs); |