diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-08-11 17:32:32 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-08-11 18:28:03 +0200 |
commit | 2cfbdcc66886bd4852f9e84b46fbf6bdc7d8a13e (patch) | |
tree | ca0329c48226b59684c287ef67a356fdd4b6a54e /pci-arbiter/options.h | |
parent | 9049b963b6023ef6d7bd3f8c81ef5ab1f3b43fd3 (diff) | |
download | hurd-2cfbdcc66886bd4852f9e84b46fbf6bdc7d8a13e.tar.gz hurd-2cfbdcc66886bd4852f9e84b46fbf6bdc7d8a13e.tar.bz2 hurd-2cfbdcc66886bd4852f9e84b46fbf6bdc7d8a13e.zip |
pci-arbiter, rumpdisk: Rename options for bootstrap chain
We may end up with an arbitrary series of bootstrap translators, which
can know about each other through devices, and thus do not need any
particular order except dependencies. The actual bootstrap order can
thus be arbitrary (provided it respects dependencies), so better not
hardcode it.
Diffstat (limited to 'pci-arbiter/options.h')
-rw-r--r-- | pci-arbiter/options.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pci-arbiter/options.h b/pci-arbiter/options.h index 2666bc4d..3d123261 100644 --- a/pci-arbiter/options.h +++ b/pci-arbiter/options.h @@ -47,7 +47,7 @@ struct parse_hook size_t ncache_len; /* Mach ports */ - mach_port_t disk_server_task; + mach_port_t next_task; mach_port_t host_priv_port; mach_port_t dev_master_port; }; @@ -70,7 +70,7 @@ static const struct argp_option options[] = { {0, 0, 0, 0, "Global configuration options:", 3}, {"ncache", 'n', "LENGTH", 0, "Node cache length. " STR (NODE_CACHE_MAX) " by default"}, - {"disk-server-task", 'T', "TASK", 0, "Task for bootstrapping disk server"}, + {"next-task", 'N', "TASK", 0, "Next bootstrap task"}, {"host-priv-port", 'H', "PORT", 0, "Port for bootstrapping host"}, {"device-master-port", 'P', "PORT", 0, "Port for bootstrapping device master"}, {0} |