From: Mateusz Polrola mateuszx.potrola@intel.com
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 mateuszx.potrola@intel.com Signed-off-by: Dongwon Kim dongwon.kim@intel.com --- 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, };