diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2018-12-28 09:36:03 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2018-12-28 21:11:48 +0100 |
commit | e5cb113f2dbc8125f31005faebab161a2a84ebe6 (patch) | |
tree | 66317fd8b28dcbe4cdaac624edec6d3ae6a9aab5 /include | |
parent | mm/debug.c: make "migrate_reason_names[]" const char * (diff) | |
download | linux-e5cb113f2dbc8125f31005faebab161a2a84ebe6.tar.xz linux-e5cb113f2dbc8125f31005faebab161a2a84ebe6.zip |
mm: make free_reserved_area() return "const char *"
and propagate through down the call stack.
Link: http://lkml.kernel.org/r/20181124091411.GC10969@avx2
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Reviewed-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mm.h b/include/linux/mm.h index 031b2ce983f9..9963f77f1101 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h @@ -2108,7 +2108,7 @@ extern void free_initmem(void); * Return pages freed into the buddy system. */ extern unsigned long free_reserved_area(void *start, void *end, - int poison, char *s); + int poison, const char *s); #ifdef CONFIG_HIGHMEM /* |