From: Mukesh Rathor <mukesh.rathor@oracle.com>
To: "Xen-devel@lists.xensource.com" <Xen-devel@lists.xensource.com>
Cc: Ian Jackson <Ian.Jackson@eu.citrix.com>,
Ian Campbell <Ian.Campbell@citrix.com>
Subject: Re: Issues with latest staging tree starting PV guest.
Date: Tue, 4 Mar 2014 17:49:47 -0800 [thread overview]
Message-ID: <20140304174947.0c5387fe@mantra.us.oracle.com> (raw)
In-Reply-To: <20140303185239.65b9dc9b@mantra.us.oracle.com>
On Mon, 3 Mar 2014 18:52:39 -0800
Mukesh Rathor <mukesh.rathor@oracle.com> wrote:
> Hi,
...
> 3. I setup xenbr, added vif line as always:
> vif = ['type=netfront,bridge=xenbr0']
>
> But now get:
> libxl: error: libxl_create.c:1226:domcreate_attach_vtpms: unable
> to add nic devices
This is how far I got debugging this:
Looks like the issue is not getting domid, because stepping thru I see
in devstate_watch_callback() it goes thru:
} else {
int got = atoi(sstate);
if (got == ds->wanted) {
LIBXL__LOG(CTX, LIBXL__LOG_DEBUG, "backend %s wanted state %d ok",
watch_path, ds->wanted);
rc = 0;
logging:
libxl: debug: libxl_event.c:653:devstate_watch_callback: backend /local/domain/0/backend/vif/5/0/state wanted state 2 ok
then it calls:
...
ds->callback(egc, ds, rc); --> device_backend_callback --> device_hotplug
which does:
...
rc = libxl__get_domid(gc, &domid); ---> libxl__xs_read_checked
--> libxl__xs_read (, , path="domid")...
This returns result == 0 and errno == ENOENT.
logging:
libxl: debug: libxl_dm.c:1473:kill_device_model: Device Model signaled
libxl: error: libxl_device.c:780:libxl__initiate_device_remove: unable to get my domid
However, xenstore-ls, I see domid being there:
bash> xenstore-ls |grep domid
domid = "11"
Zooming in libxl__xs_read, I got as far as :
libxl__xs_read -> xs_read((gc=0x636880, t=0x0, path=0x7ffff7bc13ba "domid")
--> .. --> xs_talkv() where:
ret = read_reply(h, &msg.type, len);
if (!ret)
goto fail;
mutex_unlock(&h->request_mutex);
sigaction(SIGPIPE, &oldact, NULL);
if (msg.type == XS_ERROR) {
saved_errno = get_error(ret); <=========
Ian(s), any thoughts/ideas?
thanks
mukesh
next prev parent reply other threads:[~2014-03-05 1:49 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-04 2:52 Issues with latest staging tree starting PV guest Mukesh Rathor
2014-03-04 9:47 ` Jan Beulich
2014-03-05 1:49 ` Mukesh Rathor [this message]
2014-03-05 9:11 ` Roger Pau Monné
2014-03-05 23:59 ` Mukesh Rathor
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=20140304174947.0c5387fe@mantra.us.oracle.com \
--to=mukesh.rathor@oracle.com \
--cc=Ian.Campbell@citrix.com \
--cc=Ian.Jackson@eu.citrix.com \
--cc=Xen-devel@lists.xensource.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).