From: Olaf Hering <olaf@aepfle.de>
To: xen-devel@lists.xen.org
Subject: How to load backend drivers in 4.2
Date: Fri, 10 Aug 2012 16:10:40 +0200 [thread overview]
Message-ID: <20120810141040.GA8388@aepfle.de> (raw)
The xencommons runlevel script has a few modprobe calls to load drivers
for dom0. Recently also the backend drivers for vbd and vif were added.
Unfortunately without an explanation why that is (suddenly) needed.
Now that I have been hitting such missing backend driver issue as well
with a xenlinux based dom0 kernel I wonder how to handle the situation.
The pvops kernel has 3 backend drivers which have module aliases:
xen-netback ; alias: xen-backend:vif
xen-blkback ; alias: xen-backend:vbd
xen-pciback ; alias: xen-backend:pci
These aliases have been in the tree since at least 3.2, which is a long
time.
The sles11sp2 kernel has more backend drivers, but they have no alias:
netbk
blkbk
xen-scsibk
usbbk
tpmbk
pciback
I'm sure adding ad a MODULE_ALIAS() entry to netbk, blkbk and pciback to
match mainline is trivial.
I wonder why libxl does not do a 'modprobe xen-backend:vif &>/dev/null' if
it is about to configure an interface for the first time? The current
error message when a backend driver is missing is just not helpful.
So what should be done in xencommons for 4.2? Add a dumb loop like this?
for m in xen-backend:{vif,vbd,pci} netbk blkbk pciback xen-scsibk usbbk tpmbk
do
modprobe $m &> /dev/null
done
Or should rather libxl take care of loading these things?
Olaf
next reply other threads:[~2012-08-10 14:10 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-08-10 14:10 Olaf Hering [this message]
2012-08-10 14:30 ` How to load backend drivers in 4.2 Jan Beulich
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=20120810141040.GA8388@aepfle.de \
--to=olaf@aepfle.de \
--cc=xen-devel@lists.xen.org \
/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).