mirror of
https://github.com/genodelabs/genode.git
synced 2025-06-19 15:43:56 +00: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