From: Jody Belka <lists-xen@pimb.org>
To: Keir Fraser <Keir.Fraser@cl.cam.ac.uk>
Cc: Ian Pratt <Ian.Pratt@cl.cam.ac.uk>,
"xen-devel@lists.sourceforge.net"
<xen-devel@lists.sourceforge.net>
Subject: Re: Re: almost working
Date: Fri, 9 Jul 2004 06:19:20 +0000 [thread overview]
Message-ID: <20040709061920.GA8607@faith.gentoo.org> (raw)
In-Reply-To: <E1Bi6ZG-0002ZD-00@mta1.cl.cam.ac.uk>
On Wed, Jul 07, 2004 at 08:10:10AM +0100, Keir Fraser wrote:
> > > Seeing this msg i cloned down the latest (at the time) rev from bk. After
> > > rebuilding xen, my dom0 and domU kernels, and all the tools, I tried it
> > > out. Unfortunately i couldn't even start an unpriveleged domain any more.
> > > Logs of xend tracing and the relevant command window are attached; hope
> > > they're helpful in tracking down the problem.
>
> Somehow related to specifying more than one VBD when creating a new
> guest. If you specify just one then it works. Hopefully not hard to
> track down.
After spending 2 solid hours slogging away at this in the early hours
of this morning (or late late last night if you prefer), i tracked it
down. To my eyes it looks like it had the potential to muck about with
more than just VBD's, and that's just what was triggering it in this case.
Here's a patch for it:
--- tools/python/xen/xend/server/controller.py Fri Jul 9 08:06:52 2004
+++ tools/python/xen/xend/server/controller.py.new Fri Jul 9 08:06:24 2004
@@ -178,7 +178,7 @@
resp = self.responders[0]
if resp.mid > mid:
break
- self.responders.pop()
+ self.responders.pop(0)
if resp.mid < mid:
print 'callResponders> Out of order:', resp.mid, mid
resp.error(OutOfOrderError())
On a seperate matter, i always have to apply this patch to a new clone of
xen-unstable or stuff doesn't work. Am i the only one having this trouble,
and if so, any ideas why?
--- tools/python/xen/xend/XendDomainInfo.py Fri Jul 9 08:10:38 2004
+++ tools/python/xen/xend/XendDomainInfo.py.new Fri Jul 9 08:10:18 2004
@@ -49,6 +49,20 @@
lines.append(line)
return lines
+def readline(fd):
+ """Version of readline safe against EINTR.
+ """
+ import errno
+
+ while 1:
+ try:
+ return fd.readline()
+ except IOError, ex:
+ if ex.errno == errno.EINTR:
+ continue
+ else:
+ raise
+
class VmError(ValueError):
"""Vm construction error."""
--
Jody Belka
knew (at) pimb (dot) org
-------------------------------------------------------
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 -
digital self defense, top technical experts, no vendor pitches,
unmatched networking opportunities. Visit www.blackhat.com
next prev parent reply other threads:[~2004-07-09 6:19 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-06-30 5:19 can't mount root... devfs??? James Harper
2004-06-30 5:54 ` Ian Pratt
2004-06-30 6:43 ` Keir Fraser
2004-06-30 9:38 ` James Harper
2004-06-30 9:57 ` Keir Fraser
2004-06-30 9:59 ` Ian Pratt
2004-06-30 23:14 ` Ian Pratt
2004-07-02 2:58 ` James Harper
2004-07-02 7:09 ` Keir Fraser
2004-07-02 7:32 ` Ian Pratt
2004-07-02 13:52 ` almost working James Harper
2004-07-02 15:21 ` Ian Pratt
2004-07-02 16:39 ` Niraj Tolia
2004-07-02 17:04 ` Ian Pratt
2004-07-06 16:11 ` Keir Fraser
2004-07-06 22:34 ` Jody Belka
2004-07-06 22:58 ` Ian Pratt
2004-07-07 7:10 ` Keir Fraser
2004-07-07 14:56 ` No module named xen.xm error Rune Johan Andresen
2004-07-07 15:06 ` Tom Wilkie
2004-07-07 15:24 ` Rune Johan Andresen
2004-07-07 15:09 ` Ian Pratt
2004-07-09 6:19 ` Jody Belka [this message]
2004-07-09 9:35 ` Re: almost working James Harper
2004-07-09 9:54 ` Jody Belka
2004-07-09 9:48 ` Keir Fraser
2004-07-09 11:19 ` Ian Pratt
2004-07-09 11:53 ` Jody Belka
2004-07-13 15:00 ` Niraj Tolia
2004-07-13 15:13 ` Ian Pratt
2004-07-13 15:27 ` Keir Fraser
2004-07-14 1:37 ` James Harper
2004-07-03 10:24 ` James Harper
2004-07-03 11:36 ` Keir Fraser
2004-07-04 12:37 ` xen
2004-07-06 14:53 ` ron minnich
2004-07-04 14:41 ` Jody Belka
2004-06-30 14:16 ` can't mount root... devfs??? Mark Williamson
2004-06-30 14:19 ` Keir Fraser
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20040709061920.GA8607@faith.gentoo.org \
--to=lists-xen@pimb.org \
--cc=Ian.Pratt@cl.cam.ac.uk \
--cc=Keir.Fraser@cl.cam.ac.uk \
--cc=xen-devel@lists.sourceforge.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.