xen-vtx-unstable
changeset 6366:03370bdbc6f1
Put the call to notifier_call_chain() back in do_xenbus_probe().
This fixes some dom0 activities, such as ballooning, sysrqing,
and cpu hotplugging.
Signed-off-by: Dan Smith <danms@us.ibm.com>
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
This fixes some dom0 activities, such as ballooning, sysrqing,
and cpu hotplugging.
Signed-off-by: Dan Smith <danms@us.ibm.com>
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
author | cl349@firebug.cl.cam.ac.uk |
---|---|
date | Tue Aug 23 19:17:46 2005 +0000 (2005-08-23) |
parents | 522bc50588ed |
children | 0077e7207d01 |
files | linux-2.6-xen-sparse/drivers/xen/xenbus/xenbus_probe.c |
line diff
1.1 --- a/linux-2.6-xen-sparse/drivers/xen/xenbus/xenbus_probe.c Tue Aug 23 18:27:22 2005 +0000 1.2 +++ b/linux-2.6-xen-sparse/drivers/xen/xenbus/xenbus_probe.c Tue Aug 23 19:17:46 2005 +0000 1.3 @@ -627,6 +627,8 @@ int do_xenbus_probe(void *unused) 1.4 /* Watch for changes. */ 1.5 register_xenbus_watch(&fe_watch); 1.6 register_xenbus_watch(&be_watch); 1.7 + /* Notify others that xenstore is up */ 1.8 + notifier_call_chain(&xenstore_chain, 0, 0); 1.9 up(&xenbus_lock); 1.10 return 0; 1.11 }