From: Mateusz Polrola <[email protected]> hyper_dmabuf driver is generic driver that is designed to work with any hypervisor with various backend implementations. So moving out its device node out of /dev/xen.
Signed-off-by: Mateusz Polrola <[email protected]> Signed-off-by: Dongwon Kim <[email protected]> --- drivers/xen/hyper_dmabuf/hyper_dmabuf_drv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/xen/hyper_dmabuf/hyper_dmabuf_drv.c b/drivers/xen/hyper_dmabuf/hyper_dmabuf_drv.c index f2731bf..bbb3414 100644 --- a/drivers/xen/hyper_dmabuf/hyper_dmabuf_drv.c +++ b/drivers/xen/hyper_dmabuf/hyper_dmabuf_drv.c @@ -227,7 +227,7 @@ static const struct file_operations hyper_dmabuf_driver_fops = { static struct miscdevice hyper_dmabuf_miscdev = { .minor = MISC_DYNAMIC_MINOR, - .name = "xen/hyper_dmabuf", + .name = "hyper_dmabuf", .fops = &hyper_dmabuf_driver_fops, }; -- 2.7.4 _______________________________________________ Xen-devel mailing list [email protected] https://lists.xenproject.org/mailman/listinfo/xen-devel
