xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* How to load backend drivers in 4.2
@ 2012-08-10 14:10 Olaf Hering
  2012-08-10 14:30 ` Jan Beulich
  0 siblings, 1 reply; 2+ messages in thread
From: Olaf Hering @ 2012-08-10 14:10 UTC (permalink / raw)
  To: xen-devel


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

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

end of thread, other threads:[~2012-08-10 14:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-10 14:10 How to load backend drivers in 4.2 Olaf Hering
2012-08-10 14:30 ` Jan Beulich

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).