aboutsummaryrefslogtreecommitdiff
path: root/pci-arbiter/pcifs.h
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2021-08-11 17:32:32 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2021-08-11 18:28:03 +0200
commit2cfbdcc66886bd4852f9e84b46fbf6bdc7d8a13e (patch)
treeca0329c48226b59684c287ef67a356fdd4b6a54e /pci-arbiter/pcifs.h
parent9049b963b6023ef6d7bd3f8c81ef5ab1f3b43fd3 (diff)
downloadhurd-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/pcifs.h')
-rw-r--r--pci-arbiter/pcifs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/pci-arbiter/pcifs.h b/pci-arbiter/pcifs.h
index ba16ebaa..18f2141c 100644
--- a/pci-arbiter/pcifs.h
+++ b/pci-arbiter/pcifs.h
@@ -135,14 +135,14 @@ struct pcifs_perm
int32_t gid;
};
-/* Various parameters that can be used to change the behavior of an ftpfs. */
+/* Various parameters that can be used to change the behavior of a pcifs. */
struct pcifs_params
{
/* The size of the node cache. */
size_t node_cache_max;
- /* Bootstrap disk server task */
- mach_port_t disk_server_task;
+ /* Next bootstrap task */
+ mach_port_t next_task;
/* FS permissions. */
struct pcifs_perm *perms;