mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
[PATCH] do not free non slab allocated per_cpu_pageset
Stops panic associated with attempting to free a non slab-allocated per_cpu_pageset. Signed-off-by: David Rientjes <rientjes@cs.washington.edu> Acked-by: Christoph Lameter <clameter@sgi.com> Cc: <stable@kernel.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
24fd425edd
commit
f3ef9ead31
@ -1845,8 +1845,10 @@ static inline void free_zone_pagesets(int cpu)
|
||||
for_each_zone(zone) {
|
||||
struct per_cpu_pageset *pset = zone_pcp(zone, cpu);
|
||||
|
||||
/* Free per_cpu_pageset if it is slab allocated */
|
||||
if (pset != &boot_pageset[cpu])
|
||||
kfree(pset);
|
||||
zone_pcp(zone, cpu) = NULL;
|
||||
kfree(pset);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user