uio: fix wrong return value from uio_mmap()
authorHailong Liu <liu.hailong6@zte.com.cn>
Fri, 20 Jul 2018 00:31:56 +0000 (08:31 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 21 Jul 2018 06:45:24 +0000 (08:45 +0200)
commite7de2590f18a272e63732b9d519250d1b522b2c4
treee0150900b0cebaae53db1a1dbd19ccafce7ded39
parentfbb5858c1467ef8feccc910ac9e9f529186a9f9d
uio: fix wrong return value from uio_mmap()

uio_mmap has multiple fail paths to set return value to nonzero then
goto out. However, it always returns *0* from the *out* at end, and
this will mislead callers who check the return value of this function.

Fixes: 57c5f4df0a5a0ee ("uio: fix crash after the device is unregistered")
CC: Xiubo Li <xiubli@redhat.com>
Signed-off-by: Hailong Liu <liu.hailong6@zte.com.cn>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Jiang Biao <jiang.biao2@zte.com.cn>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/uio/uio.c