From: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
To: Bastian Blank <waldi@debian.org>,
xen-devel@lists.xensource.com,
virtualization@lists.linux-foundation.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] xen: Add alias to autoload backend drivers
Date: Mon, 27 Jun 2011 12:13:27 -0400 [thread overview]
Message-ID: <20110627161327.GO6978@dumpdata.com> (raw)
In-Reply-To: <20110624215155.GB4735@wavehammer.waldi.eu.org>
On Fri, Jun 24, 2011 at 11:51:55PM +0200, Bastian Blank wrote:
> All the Xen backend drivers are assigned to a special bus type
> xen-backend. This allows userspace to load the modules on request.
Is there a specific version of udev that would take advantage of this?
>
> This patch defines xen-backend:* aliases on the modules and exports this
> names through modalias and uevent.
>
> Signed-off-by: Bastian Blank <waldi@debian.org>
> ---
> drivers/block/xen-blkback/blkback.c | 1 +
> drivers/net/xen-netback/netback.c | 1 +
> drivers/xen/xenbus/xenbus_probe.c | 3 ++-
> drivers/xen/xenbus/xenbus_probe_backend.c | 3 +++
> 4 files changed, 7 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/block/xen-blkback/blkback.c b/drivers/block/xen-blkback/blkback.c
> index 5cf2993..ed62008 100644
> --- a/drivers/block/xen-blkback/blkback.c
> +++ b/drivers/block/xen-blkback/blkback.c
> @@ -824,3 +824,4 @@ static int __init xen_blkif_init(void)
> module_init(xen_blkif_init);
>
> MODULE_LICENSE("Dual BSD/GPL");
> +MODULE_ALIAS("xen-backend:vbd");
> diff --git a/drivers/net/xen-netback/netback.c b/drivers/net/xen-netback/netback.c
> index 0e4851b..fd00f25 100644
> --- a/drivers/net/xen-netback/netback.c
> +++ b/drivers/net/xen-netback/netback.c
> @@ -1743,3 +1743,4 @@ failed_init:
> module_init(netback_init);
>
> MODULE_LICENSE("Dual BSD/GPL");
> +MODULE_ALIAS("xen-backend:vif");
> diff --git a/drivers/xen/xenbus/xenbus_probe.c b/drivers/xen/xenbus/xenbus_probe.c
> index 2ed0b04..bd2f90c 100644
> --- a/drivers/xen/xenbus/xenbus_probe.c
> +++ b/drivers/xen/xenbus/xenbus_probe.c
> @@ -393,7 +393,8 @@ static ssize_t devtype_show(struct device *dev,
> static ssize_t modalias_show(struct device *dev,
> struct device_attribute *attr, char *buf)
> {
> - return sprintf(buf, "xen:%s\n", to_xenbus_device(dev)->devicetype);
> + return sprintf(buf, "%s:%s\n", dev->bus->name,
> + to_xenbus_device(dev)->devicetype);
> }
>
> struct device_attribute xenbus_dev_attrs[] = {
> diff --git a/drivers/xen/xenbus/xenbus_probe_backend.c b/drivers/xen/xenbus/xenbus_probe_backend.c
> index ec510e5..60adf91 100644
> --- a/drivers/xen/xenbus/xenbus_probe_backend.c
> +++ b/drivers/xen/xenbus/xenbus_probe_backend.c
> @@ -107,6 +107,9 @@ static int xenbus_uevent_backend(struct device *dev,
> if (xdev == NULL)
> return -ENODEV;
>
> + if (add_uevent_var(env, "MODALIAS=xen-backend:%s", xdev->devicetype))
> + return -ENOMEM;
> +
> /* stuff we want to pass to /sbin/hotplug */
> if (add_uevent_var(env, "XENBUS_TYPE=%s", xdev->devicetype))
> return -ENOMEM;
> --
> 1.7.5.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
next prev parent reply other threads:[~2011-06-27 16:14 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-06-24 21:51 [PATCH 2/2] xen: Add alias to autoload backend drivers Bastian Blank
2011-06-27 8:45 ` [Xen-devel] " Ian Campbell
2011-06-27 16:13 ` Konrad Rzeszutek Wilk [this message]
2011-06-27 16:37 ` Bastian Blank
2011-06-27 16:51 ` [Xen-devel] " Konrad Rzeszutek Wilk
2011-06-27 16:57 ` Konrad Rzeszutek Wilk
2011-06-27 17:23 ` Bastian Blank
2011-06-27 17:34 ` Konrad Rzeszutek Wilk
2011-06-28 13:47 ` 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=20110627161327.GO6978@dumpdata.com \
--to=konrad.wilk@oracle.com \
--cc=linux-kernel@vger.kernel.org \
--cc=virtualization@lists.linux-foundation.org \
--cc=waldi@debian.org \
--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