mm: enhance free_reserved_area() to support poisoning memory with zero
Address more review comments from last round of code review. 1) Enhance free_reserved_area() to support poisoning freed memory with pattern '0'. This could be used to get rid of poison_init_mem() on ARM64. 2) A previous patch has disabled memory poison for initmem on s390 by mistake, so restore to the original behavior. 3) Remove redundant PAGE_ALIGN() when calling free_reserved_area(). Signed-off-by: Jiang Liu <jiang.liu@huawei.com> Cc: Geert Uytterhoeven <geert@linux-m68k.org> Cc: "H. Peter Anvin" <hpa@zytor.com> Cc: "Michael S. Tsirkin" <mst@redhat.com> Cc: <sworddragon2@aol.com> Cc: Arnd Bergmann <arnd@arndb.de> Cc: Catalin Marinas <catalin.marinas@arm.com> Cc: Chris Metcalf <cmetcalf@tilera.com> Cc: David Howells <dhowells@redhat.com> Cc: Ingo Molnar <mingo@redhat.com> Cc: Jeremy Fitzhardinge <jeremy@goop.org> Cc: Jianguo Wu <wujianguo@huawei.com> Cc: Joonsoo Kim <js1304@gmail.com> Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> Cc: Marek Szyprowski <m.szyprowski@samsung.com> Cc: Mel Gorman <mel@csn.ul.ie> Cc: Michel Lespinasse <walken@google.com> Cc: Minchan Kim <minchan@kernel.org> Cc: Rik van Riel <riel@redhat.com> Cc: Rusty Russell <rusty@rustcorp.com.au> Cc: Tang Chen <tangchen@cn.fujitsu.com> Cc: Tejun Heo <tj@kernel.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Wen Congyang <wency@cn.fujitsu.com> Cc: Will Deacon <will.deacon@arm.com> Cc: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com> Cc: Yinghai Lu <yinghai@kernel.org> Cc: Russell King <rmk@arm.linux.org.uk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
11199692d8
commit
dbe67df4ba
26 changed files with 49 additions and 53 deletions
|
@ -1308,7 +1308,7 @@ extern void free_initmem(void);
|
|||
/*
|
||||
* Free reserved pages within range [PAGE_ALIGN(start), end & PAGE_MASK)
|
||||
* into the buddy system. The freed pages will be poisoned with pattern
|
||||
* "poison" if it's non-zero.
|
||||
* "poison" if it's within range [0, UCHAR_MAX].
|
||||
* Return pages freed into the buddy system.
|
||||
*/
|
||||
extern unsigned long free_reserved_area(void *start, void *end,
|
||||
|
@ -1348,8 +1348,9 @@ static inline void mark_page_reserved(struct page *page)
|
|||
|
||||
/*
|
||||
* Default method to free all the __init memory into the buddy system.
|
||||
* The freed pages will be poisoned with pattern "poison" if it is
|
||||
* non-zero. Return pages freed into the buddy system.
|
||||
* The freed pages will be poisoned with pattern "poison" if it's within
|
||||
* range [0, UCHAR_MAX].
|
||||
* Return pages freed into the buddy system.
|
||||
*/
|
||||
static inline unsigned long free_initmem_default(int poison)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue