Commit b37a56d6 authored by Juan Quintela's avatar Juan Quintela Committed by Stefano Stabellini

xen: Initialize xenbus for dom0.

Do initial xenbus/xenstore setup in dom0.  In dom0 we need to actually
allocate the xenstore resources, rather than being given them from
outside.

[ Impact: initialize Xenbus ]
Signed-off-by: default avatarJuan Quintela <quintela@redhat.com>
Signed-off-by: default avatarJeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Signed-off-by: default avatarStefano Stabellini <stefano.stabellini@eu.citrix.com>
Reviewed-by: default avatarKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
parent 801fd14a
...@@ -801,6 +801,7 @@ device_initcall(xenbus_probe_initcall); ...@@ -801,6 +801,7 @@ device_initcall(xenbus_probe_initcall);
static int __init xenbus_init(void) static int __init xenbus_init(void)
{ {
int err = 0; int err = 0;
unsigned long page = 0;
DPRINTK(""); DPRINTK("");
...@@ -821,7 +822,31 @@ static int __init xenbus_init(void) ...@@ -821,7 +822,31 @@ static int __init xenbus_init(void)
* Domain0 doesn't have a store_evtchn or store_mfn yet. * Domain0 doesn't have a store_evtchn or store_mfn yet.
*/ */
if (xen_initial_domain()) { if (xen_initial_domain()) {
/* dom0 not yet supported */ struct evtchn_alloc_unbound alloc_unbound;
/* Allocate Xenstore page */
page = get_zeroed_page(GFP_KERNEL);
if (!page)
goto out_error;
xen_store_mfn = xen_start_info->store_mfn =
pfn_to_mfn(virt_to_phys((void *)page) >>
PAGE_SHIFT);
/* Next allocate a local port which xenstored can bind to */
alloc_unbound.dom = DOMID_SELF;
alloc_unbound.remote_dom = 0;
err = HYPERVISOR_event_channel_op(EVTCHNOP_alloc_unbound,
&alloc_unbound);
if (err == -ENOSYS)
goto out_error;
BUG_ON(err);
xen_store_evtchn = xen_start_info->store_evtchn =
alloc_unbound.port;
xen_store_interface = mfn_to_virt(xen_store_mfn);
} else { } else {
if (xen_hvm_domain()) { if (xen_hvm_domain()) {
uint64_t v = 0; uint64_t v = 0;
...@@ -867,6 +892,8 @@ static int __init xenbus_init(void) ...@@ -867,6 +892,8 @@ static int __init xenbus_init(void)
bus_unregister(&xenbus_frontend.bus); bus_unregister(&xenbus_frontend.bus);
out_error: out_error:
if (page != 0)
free_page(page);
return err; return err;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment