ksmbd: Fix unsigned expression compared with zero
authorWang Ming <machel@vivo.com>
Tue, 4 Jul 2023 07:40:47 +0000 (15:40 +0800)
committerSteve French <stfrench@microsoft.com>
Wed, 12 Jul 2023 13:58:25 +0000 (08:58 -0500)
commit0266a2f791294e0b4ba36f4a1d89b8615ea3cac0
treeb3a6f9542fcb13a9d2e5306975df8ca0f4d4cddb
parent06c2afb862f9da8dc5efa4b6076a0e48c3fbaaa5
ksmbd: Fix unsigned expression compared with zero

The return value of the ksmbd_vfs_getcasexattr() is signed.
However, the return value is being assigned to an unsigned
variable and subsequently recasted, causing warnings. Use
a signed type.

Signed-off-by: Wang Ming <machel@vivo.com>
Acked-by: Tom Talpey <tom@talpey.com>
Acked-by: Namjae Jeon <linkinjeon@kernel.org>
Signed-off-by: Steve French <stfrench@microsoft.com>
fs/smb/server/vfs.c