diff options
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/ipc_init.c | 8 | ||||
-rw-r--r-- | ipc/ipc_marequest.c | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/ipc/ipc_init.c b/ipc/ipc_init.c index 2c58a6e..5ed800f 100644 --- a/ipc/ipc_init.c +++ b/ipc/ipc_init.c @@ -73,16 +73,16 @@ ipc_bootstrap(void) ipc_port_timestamp_data = 0; kmem_cache_init(&ipc_space_cache, "ipc_space", - sizeof(struct ipc_space), 0, NULL, NULL, NULL, 0); + sizeof(struct ipc_space), 0, NULL, 0); kmem_cache_init(&ipc_entry_cache, "ipc_entry", - sizeof(struct ipc_entry), 0, NULL, NULL, NULL, 0); + sizeof(struct ipc_entry), 0, NULL, 0); kmem_cache_init(&ipc_object_caches[IOT_PORT], "ipc_port", - sizeof(struct ipc_port), 0, NULL, NULL, NULL, 0); + sizeof(struct ipc_port), 0, NULL, 0); kmem_cache_init(&ipc_object_caches[IOT_PORT_SET], "ipc_pset", - sizeof(struct ipc_pset), 0, NULL, NULL, NULL, 0); + sizeof(struct ipc_pset), 0, NULL, 0); /* create special spaces */ diff --git a/ipc/ipc_marequest.c b/ipc/ipc_marequest.c index ded1711..736db83 100644 --- a/ipc/ipc_marequest.c +++ b/ipc/ipc_marequest.c @@ -137,7 +137,7 @@ ipc_marequest_init(void) } kmem_cache_init(&ipc_marequest_cache, "ipc_marequest", - sizeof(struct ipc_marequest), 0, NULL, NULL, NULL, 0); + sizeof(struct ipc_marequest), 0, NULL, 0); } /* |