[f2fs-dev] [PATCH] f2fs: fix 32-bit linking

2019-06-28 Thread Arnd Bergmann
Not all architectures support get_user() with a 64-bit argument: ERROR: "__get_user_bad" [fs/f2fs/f2fs.ko] undefined! Use copy_from_user() here, this will always work. Fixes: d2ae7494d043 ("f2fs: ioctl for removing a range from F2FS") Signed-off-by: Arnd Bergmann --- fs/f2fs/file.c | 3 ++- 1

Re: [f2fs-dev] [PATCH] f2fs: fix 32-bit linking

2019-07-01 Thread Arnd Bergmann
On Fri, Jun 28, 2019 at 5:59 PM Jaegeuk Kim wrote: > > Hi Arnd, > > If you don't mind, can I integrate this into the original patch in the queue? Yes, I think that would be good anyway, it may take a little longer to fix all the architectures. Arnd _