All of lore.kernel.org
 help / color / mirror / Atom feed
* blktap race against xenstore startup
@ 2006-09-28 22:17 Stephen C. Tweedie
  2006-09-28 22:45 ` Anthony Liguori
  0 siblings, 1 reply; 7+ messages in thread
From: Stephen C. Tweedie @ 2006-09-28 22:17 UTC (permalink / raw)
  To: xen-devel@lists.xensource.com
  Cc: Julian Chesterfield, Steven Rostedt, Andrew Warfield

Hi all,

With the various blktap fixes I've recently posted, blktap runs
reliably... the *second* time we start xend.  First time, blktapctrl
just dies on init.

It turns out that get_dom_domid() is SEGVing.  It calls

        e = xs_directory(h, xth, "/local/domain", &num);

and then iterates over the results to find the domain with the right
name (in this case, "Domain-0", which should be easy to find!)  Trouble
is, it's racing with xenstore startup, and when it calls this the first
time, it gets back an ENOENT (easily seen on an strace.)  That returns
e=NULL, and everything falls apart.

I have "fixed" it locally with the following terrible hack:

+	for (i = 0; i < 10; i++) {
+		e = xs_directory(h, xth, "/local/domain", &num);
+		if (e)
+			break;
+		sleep(1);
+	}
 	
-	e = xs_directory(h, xth, "/local/domain", &num);
-	
-	for (i = 0; (i < num) && (domid == NULL); i++) {
+	for (i = 0; e && (i < num) && (domid == NULL); i++) {

which just loops calling xs_directory() with a 1-second pause in between
until it returns something sensible.  

Ugh.  There has got to be a better way to synchronise with the initial
population of the dom0 information into xenstore, surely?  Has no other
component of the Xen stack ever seen this before?

--Stephen

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2006-10-02 10:14 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-09-28 22:17 blktap race against xenstore startup Stephen C. Tweedie
2006-09-28 22:45 ` Anthony Liguori
2006-09-28 23:23   ` Stephen C. Tweedie
2006-09-29  1:15     ` Anthony Liguori
2006-09-29  6:54     ` Keir Fraser
2006-10-02  9:36       ` Stephen C. Tweedie
2006-10-02 10:14         ` Keir Fraser

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.