Commit e4184aaf authored by Daniel De Graaf's avatar Daniel De Graaf Committed by Konrad Rzeszutek Wilk

xenbus: don't rely on xen_initial_domain to detect local xenstore

The xenstore daemon does not have to run in the xen initial domain;
however, Linux currently uses xen_initial_domain to test if a loopback
event channel should be used instead of the event channel provided in
Xen's start_info structure. Instead, if the event channel passed in the
start_info structure is not valid, assume that this domain will run
xenstored locally and set up the event channel.
Signed-off-by: default avatarDaniel De Graaf <dgdegra@tycho.nsa.gov>
Reviewed-by: default avatarIan Campbell <Ian.Campbell@citrix.com>
Signed-off-by: default avatarKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
parent 77447991
...@@ -696,27 +696,19 @@ static int __init xenbus_probe_initcall(void) ...@@ -696,27 +696,19 @@ static int __init xenbus_probe_initcall(void)
device_initcall(xenbus_probe_initcall); device_initcall(xenbus_probe_initcall);
static int __init xenbus_init(void) /* Set up event channel for xenstored which is run as a local process
* (this is normally used only in dom0)
*/
static int __init xenstored_local_init(void)
{ {
int err = 0; int err = 0;
unsigned long page = 0; unsigned long page = 0;
DPRINTK("");
err = -ENODEV;
if (!xen_domain())
return err;
/*
* Domain0 doesn't have a store_evtchn or store_mfn yet.
*/
if (xen_initial_domain()) {
struct evtchn_alloc_unbound alloc_unbound; struct evtchn_alloc_unbound alloc_unbound;
/* Allocate Xenstore page */ /* Allocate Xenstore page */
page = get_zeroed_page(GFP_KERNEL); page = get_zeroed_page(GFP_KERNEL);
if (!page) if (!page)
goto out_error; goto out_err;
xen_store_mfn = xen_start_info->store_mfn = xen_store_mfn = xen_start_info->store_mfn =
pfn_to_mfn(virt_to_phys((void *)page) >> pfn_to_mfn(virt_to_phys((void *)page) >>
...@@ -729,14 +721,27 @@ static int __init xenbus_init(void) ...@@ -729,14 +721,27 @@ static int __init xenbus_init(void)
err = HYPERVISOR_event_channel_op(EVTCHNOP_alloc_unbound, err = HYPERVISOR_event_channel_op(EVTCHNOP_alloc_unbound,
&alloc_unbound); &alloc_unbound);
if (err == -ENOSYS) if (err == -ENOSYS)
goto out_error; goto out_err;
BUG_ON(err); BUG_ON(err);
xen_store_evtchn = xen_start_info->store_evtchn = xen_store_evtchn = xen_start_info->store_evtchn =
alloc_unbound.port; alloc_unbound.port;
xen_store_interface = mfn_to_virt(xen_store_mfn); return 0;
} else {
out_err:
if (page != 0)
free_page(page);
return err;
}
static int __init xenbus_init(void)
{
int err = 0;
if (!xen_domain())
return -ENODEV;
if (xen_hvm_domain()) { if (xen_hvm_domain()) {
uint64_t v = 0; uint64_t v = 0;
err = hvm_get_parameter(HVM_PARAM_STORE_EVTCHN, &v); err = hvm_get_parameter(HVM_PARAM_STORE_EVTCHN, &v);
...@@ -751,9 +756,14 @@ static int __init xenbus_init(void) ...@@ -751,9 +756,14 @@ static int __init xenbus_init(void)
} else { } else {
xen_store_evtchn = xen_start_info->store_evtchn; xen_store_evtchn = xen_start_info->store_evtchn;
xen_store_mfn = xen_start_info->store_mfn; xen_store_mfn = xen_start_info->store_mfn;
xen_store_interface = mfn_to_virt(xen_store_mfn); if (xen_store_evtchn)
xenstored_ready = 1; xenstored_ready = 1;
else {
err = xenstored_local_init();
if (err)
goto out_error;
} }
xen_store_interface = mfn_to_virt(xen_store_mfn);
} }
/* Initialize the interface to xenstore. */ /* Initialize the interface to xenstore. */
...@@ -772,12 +782,7 @@ static int __init xenbus_init(void) ...@@ -772,12 +782,7 @@ static int __init xenbus_init(void)
proc_mkdir("xen", NULL); proc_mkdir("xen", NULL);
#endif #endif
return 0;
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