summaryrefslogtreecommitdiffstats
path: root/drivers/xen/evtchn.c
diff options
context:
space:
mode:
authorBastian Blank2010-05-29 00:43:49 +0200
committerJeremy Fitzhardinge2010-05-29 00:43:49 +0200
commit376d908f52427591cef4acd172db9c3ef28676ec (patch)
tree53e5c53c588b34eb8bd9c73391c38ed62600b3a4 /drivers/xen/evtchn.c
parentxen/evtchn: don't do unbind_from_irqhandler under spinlock (diff)
downloadkernel-qcow2-linux-376d908f52427591cef4acd172db9c3ef28676ec.tar.gz
kernel-qcow2-linux-376d908f52427591cef4acd172db9c3ef28676ec.tar.xz
kernel-qcow2-linux-376d908f52427591cef4acd172db9c3ef28676ec.zip
xen/evtchn: Fix name of Xen event-channel device
The Xen event-channel device is named evtchn in the kernel but always used as /dev/xen/evtchn in userspace. This patch fixes the name. Signed-off-by: Bastian Blank <waldi@debian.org> Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Diffstat (limited to 'drivers/xen/evtchn.c')
-rw-r--r--drivers/xen/evtchn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/xen/evtchn.c b/drivers/xen/evtchn.c
index 6a3a12945d02..68119f6324d4 100644
--- a/drivers/xen/evtchn.c
+++ b/drivers/xen/evtchn.c
@@ -517,7 +517,7 @@ static const struct file_operations evtchn_fops = {
static struct miscdevice evtchn_miscdev = {
.minor = MISC_DYNAMIC_MINOR,
- .name = "evtchn",
+ .name = "xen/evtchn",
.fops = &evtchn_fops,
};
static int __init evtchn_init(void)