diff options
author | Richard Braun <rbraun@sceen.net> | 2014-12-10 22:59:53 +0100 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2014-12-10 23:16:47 +0100 |
commit | 9ee711bf0a4f14ffeee4131f7f8040f943364d98 (patch) | |
tree | 88f9afc6227dcaf4d41071aefc38556e8456da10 | |
parent | 5679b9872a217314b025b5ff7bcac2f03b72858b (diff) |
kern/cpumap: update call to kmem_cache_init
-rw-r--r-- | kern/cpumap.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/kern/cpumap.c b/kern/cpumap.c index 7113af57..ccec0d22 100644 --- a/kern/cpumap.c +++ b/kern/cpumap.c @@ -32,9 +32,7 @@ cpumap_setup(void) { unsigned int i, nr_cpus; - kmem_cache_init(&cpumap_cache, "cpumap", sizeof(struct cpumap), - 0, NULL, NULL, NULL, 0); - + kmem_cache_init(&cpumap_cache, "cpumap", sizeof(struct cpumap), 0, NULL, 0); cpumap_zero(&cpumap_active_cpus); nr_cpus = cpu_count(); |