From b63e4633d595916c832d7fae95866105b6ff56c0 Mon Sep 17 00:00:00 2001 From: Thomas Bushnell Date: Wed, 16 Jun 1999 18:23:00 +0000 Subject: 1999-06-15 Thomas Bushnell, BSG * ipc/ipc_init.c (ipc_bootstrap): Don't make the IOT_PORT zone exhaustible, because allocation of ports for internal objects panics if zalloc fails. --- ipc/ipc_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipc/ipc_init.c b/ipc/ipc_init.c index 29b0819..371a06f 100644 --- a/ipc/ipc_init.c +++ b/ipc/ipc_init.c @@ -92,7 +92,7 @@ ipc_bootstrap(void) zinit(sizeof(struct ipc_port), ipc_port_max * sizeof(struct ipc_port), sizeof(struct ipc_port), - ZONE_EXHAUSTIBLE, "ipc ports"); + 0, "ipc ports"); ipc_object_zones[IOT_PORT_SET] = zinit(sizeof(struct ipc_pset), -- cgit v1.2.3