diff options
Diffstat (limited to 'sys/kern/vfs_cache.c')
| -rw-r--r-- | sys/kern/vfs_cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/vfs_cache.c b/sys/kern/vfs_cache.c index 131fb466484..c94a7c8ab73 100644 --- a/sys/kern/vfs_cache.c +++ b/sys/kern/vfs_cache.c @@ -1034,7 +1034,7 @@ cache_cpu_init(struct cpu_info *ci) size_t sz; sz = roundup2(sizeof(*cpup), coherency_unit) + coherency_unit; - cpup = kmem_zalloc(sz, KM_SLEEP); + cpup = kmem_zalloc(sz, KM_SLEEP); // TODO LOCKDOC cpup = (void *)roundup2((uintptr_t)cpup, coherency_unit); mutex_init(&cpup->cpu_lock, MUTEX_DEFAULT, IPL_NONE); ci->ci_data.cpu_nch = cpup; |
