Re: [PATCH] mm: Replace-simple_strtoul-with-kstrtoul

2017-11-09 Thread Matthew Wilcox
On Thu, Nov 09, 2017 at 04:58:18PM +0530, Manjeet Pawar wrote: > simple_strtoul() is obselete now, so using newer function kstrtoul() > > Signed-off-by: Manjeet Pawar > Signed-off-by: Vinay Kumar Rijhwani > Signed-off-by: Rohit Thapliyal NAK NAK NAK. You haven't tested this on a 64-bit big-en

[PATCH] mm: Replace-simple_strtoul-with-kstrtoul

2017-11-09 Thread Manjeet Pawar
simple_strtoul() is obselete now, so using newer function kstrtoul() Signed-off-by: Manjeet Pawar Signed-off-by: Vinay Kumar Rijhwani Signed-off-by: Rohit Thapliyal --- mm/page_alloc.c | 3 +-- mm/shmem.c | 11 +-- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/mm