aboutsummaryrefslogtreecommitdiff
path: root/pci-arbiter
diff options
context:
space:
mode:
authorDamien Zammit <damien@zamaudio.com>2021-12-26 22:38:56 +1100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2021-12-27 15:49:44 +0100
commit83ac2b3d67afc9895a80e813118569e2a73236ab (patch)
tree21eb952d95bb5b93dbf56974bee97deb91f5435f /pci-arbiter
parent53059aedae2543d77bdd92e0a37c7ab108283c2f (diff)
downloadhurd-83ac2b3d67afc9895a80e813118569e2a73236ab.tar.gz
hurd-83ac2b3d67afc9895a80e813118569e2a73236ab.tar.bz2
hurd-83ac2b3d67afc9895a80e813118569e2a73236ab.zip
pci-arbiter,rumpdisk: Lock all memory for swapping
This locks all memory in bootstrap processes so that disk driver dependencies don't get swapped out. Message-Id: <20211226113857.150525-5-damien@zamaudio.com>
Diffstat (limited to 'pci-arbiter')
-rw-r--r--pci-arbiter/main.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/pci-arbiter/main.c b/pci-arbiter/main.c
index 510e7dbc..602a545c 100644
--- a/pci-arbiter/main.c
+++ b/pci-arbiter/main.c
@@ -203,8 +203,17 @@ main (int argc, char **argv)
if (next_task != MACH_PORT_NULL)
{
+ /* We are a bootstrap process */
+
machdev_register (&pci_arbiter_emulation_ops);
machdev_trivfs_init (argc, argv, next_task, "pci", NULL /* _SERVERS_BUS "pci" */, &bootstrap);
+
+ /* Make sure we will not swap out, in case we are needed for swapping
+ back in. */
+ err = mlockall(MCL_CURRENT | MCL_FUTURE);
+ if (err)
+ error (1, errno, "cannot lock all memory");
+
machdev_device_init ();
err = pthread_create (&t, NULL, machdev_server, NULL);
if (err)