]> xenbits.xensource.com Git - osstest/rumprun.git/commitdiff
librumpxen_xendev: Disable privcmd and evtchn drivers for now
authorIan Jackson <ian.jackson@eu.citrix.com>
Wed, 5 Oct 2016 15:44:14 +0000 (16:44 +0100)
committerIan Jackson <Ian.Jackson@eu.citrix.com>
Fri, 7 Oct 2016 17:39:22 +0000 (18:39 +0100)
We have fixed the xenbus driver, but the privcmd and evtchn drivers
are still broken.  (Issue 73.)

Disable these two (and add the note about the issue number).  This
will allow us to enable the libbrumpxen_xendev build to get the xenbus
driver.

Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
platform/xen/librumpxen_xendev/Makefile
platform/xen/librumpxen_xendev/xendev_component.c

index 1aeadacd4042858cc9dd51437b3e5540d2257d1b..44321c4375fe21f47c420e81532c1f2b48dbd0be 100644 (file)
@@ -4,8 +4,9 @@ LIB=    rumpxen_xendev
 
 SRCS=  xendev_component.c
 SRCS+= busdev.c
-SRCS+= evtdev.c
-SRCS+= privcmd.c
+# XXX: issue #73
+#SRCS+=        evtdev.c
+#SRCS+=        privcmd.c
 
 RUMPTOP= ${TOPRUMP}
 
index 91e4c289a7d9c9181e536f780a09a015e4d8496f..92471e8657a78b78554f92865f87d7ff05c1e6a3 100644 (file)
@@ -59,7 +59,7 @@ static const struct xen_dev_info {
        [cmin] = { path, init_fn, component##_dev_open, \
                   &component##_dev_fileops }
        XDEV(0, DEV_XEN "/xenbus", NULL, xenbus),
-       XDEV(1, "/dev/xenevt", xenevt_dev_init, xenevt),
+//     XDEV(1, "/dev/xenevt", xenevt_dev_init, xenevt),
 #undef XDEV
 };
 
@@ -156,7 +156,7 @@ RUMP_COMPONENT(RUMP_COMPONENT_DEV)
        }
 
        xenkernfs_init();
-       xenprivcmd_init();
+//     xenprivcmd_init();
 }
 
 /*