commit c654480ef67c15b2cd9e774afa65f53b32693b40
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Wed Aug 11 16:23:23 2021 +0200

    pci-arbiter: do not install as translator for now
    
    machdev installs the trivfs translator, not the netfs translator,
    and thus pci-arbiter would only show up as the pci device, not the pci
    filesystem.

diff --git a/pci-arbiter/main.c b/pci-arbiter/main.c
index 0d86bd0a..d91500a1 100644
--- a/pci-arbiter/main.c
+++ b/pci-arbiter/main.c
@@ -215,7 +215,7 @@ main (int argc, char **argv)
   if (disk_server_task != MACH_PORT_NULL)
     {
       machdev_register (&pci_arbiter_emulation_ops);
-      machdev_trivfs_init (argc, argv, disk_server_task, "pci", "/servers/bus/pci", &bootstrap);
+      machdev_trivfs_init (argc, argv, disk_server_task, "pci", NULL /* _SERVERS_BUS "pci" */, &bootstrap);
       machdev_device_init ();
       err = pthread_create (&t, NULL, machdev_server, NULL);
       if (err)
