Loading mm/percpu.c +2 −6 Original line number Diff line number Diff line Loading @@ -293,12 +293,8 @@ static void *pcpu_mem_alloc(size_t size) if (size <= PAGE_SIZE) return kzalloc(size, GFP_KERNEL); else { void *ptr = vmalloc(size); if (ptr) memset(ptr, 0, size); return ptr; } else return vzalloc(size); } /** Loading Loading
mm/percpu.c +2 −6 Original line number Diff line number Diff line Loading @@ -293,12 +293,8 @@ static void *pcpu_mem_alloc(size_t size) if (size <= PAGE_SIZE) return kzalloc(size, GFP_KERNEL); else { void *ptr = vmalloc(size); if (ptr) memset(ptr, 0, size); return ptr; } else return vzalloc(size); } /** Loading