From: Jeremy Fitzhardinge <jeremy@goop.org>
To: Ian Campbell <Ian.Campbell@citrix.com>
Cc: "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>
Subject: Re: Automatic loading of xen-evtchn module in Xen 4.0.0?
Date: Tue, 30 Mar 2010 15:47:12 -0700 [thread overview]
Message-ID: <4BB27F70.4090703@goop.org> (raw)
In-Reply-To: <1269942297.10129.72385.camel@zakaz.uk.xensource.com>
On 03/30/2010 02:44 AM, Ian Campbell wrote:
> On Sat, 2010-03-27 at 22:18 +0000, Jeremy Fitzhardinge wrote:
>
>> On 03/27/2010 10:32 AM, Pasi Kärkkäinen wrote:
>>
>>> Hello,
>>>
>>> xend automatically mounts /proc/xen, but it doesn't try loading evtchn or xen-evtchn modules.
>>> Should we add automatic loading of these modules?
>>>
>>> xend doesn't start if xen event channel functionality is missing.
>>>
>>> Fedora Xen rpms do load modules automatically, like this:
>>>
>>> # cat /etc/sysconfig/modules/xen.modules
>>> #!/bin/sh
>>>
>>> test -d /proc/xen || exit 0
>>> test -f /proc/xen/capabilities || mount -t xenfs xen /proc/xen
>>> test -f /proc/xen/capabilities || exit 0
>>> grep -q "control_d" /proc/xen/capabilities || exit 0
>>>
>>> for module in xen-evtchn evtchn blkbk netbk; do
>>> modprobe ${module}>/dev/null 2>&1
>>> done
>>>
>>>
>> We should be able to make these mount automatically with udev rules, I
>> think, but I'm not sure whether you can do udev rules to mount misc
>> devices (which is what /dev/xen/evtchn is).
>>
> I think you mean "modprobe misc devices" not mount.
>
Yep.
> I see various uses of the MODULE_ALIAS_MISCDEV macro in the kernel --
> but I'm not sure what actually causes a matching hotplug event to be
> generated, other than trying to open a matching device node which with
> udev won't exist until the module is loaded.
>
> Perhaps something in the xen core code (or xenbus?) could generate the
> necessary hotplug events for the Xen "platform devices" (like the evtchn
> one)?
>
>
>> I think the front/back xenbus and device drivers are still a bit of a
>> mess with regard to modules; I have to admit I tend to just compile them
>> all in. It would be nice to get all that properly sorted out so they
>> can be sensibly modularized and auto-loaded as required. (A good first
>> step would be to systematically work out what compile combinations
>> actually work or fail, hint, hint ;)
>>
> AFAIK the frontend driver modules work correctly as modules and distros
> have been compiling them modular for a while (Debian certainly has).
>
Yes, I think frontend drivers are OK. But the various xenbus bits seem
a bit fragile.
> The situation is certainly not as rosy for *back. It'd certainly be nice
> if some (or all) of the xenbus stuff could become modular too although I
> would guess there will be a core which must be compiled in.
>
In practice there's no need to get very modular. There's some value in
not loading all that backend support code unless we're actually dom0,
but I don't think there's much value in getting too fine-grained beyond
that. The actual drivers themselves are fairly ordinary, so they will
probably just work if we can make xenbus generate the right request
events. Hm, I guess that would be the tool stack setting things up for
a new domain, and requesting backend devices in the process, no?
But it doesn't help for things like evtchn and gntdev. But there's no
huge burden in just making the toolstack startup scripts do modprobes
for them, just as it should be mounting /proc/xen.
J
next prev parent reply other threads:[~2010-03-30 22:47 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-03-27 17:32 Automatic loading of xen-evtchn module in Xen 4.0.0? Pasi Kärkkäinen
2010-03-27 22:18 ` Jeremy Fitzhardinge
2010-03-30 9:44 ` Ian Campbell
2010-03-30 14:22 ` Konrad Rzeszutek Wilk
2010-03-30 14:26 ` Ian Campbell
2010-03-30 22:47 ` Jeremy Fitzhardinge [this message]
2010-03-31 8:40 ` Ian Campbell
2010-03-31 13:39 ` Konrad Rzeszutek Wilk
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=4BB27F70.4090703@goop.org \
--to=jeremy@goop.org \
--cc=Ian.Campbell@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 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.