mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 20:42:56 +01:00
lxip: return zero-initialized memory in '__alloc_percpu()'
This commit is contained in:
committed by
Norman Feske
parent
59f38fe38c
commit
2d700d0b2d
@@ -91,7 +91,7 @@ unsigned long get_zeroed_page(gfp_t gfp_mask)
|
||||
|
||||
void *__alloc_percpu(size_t size, size_t align)
|
||||
{
|
||||
return kmalloc(size, 0);
|
||||
return kzalloc(size, 0);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user