]> git.baikalelectronics.ru Git - kernel.git/commit
vhost: correctly check the return value of translate_desc() in log_used()
authorJason Wang <jasowang@redhat.com>
Tue, 19 Feb 2019 06:53:44 +0000 (14:53 +0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 19 Feb 2019 21:14:45 +0000 (13:14 -0800)
commitdc81caf19f11eb6a9134cdeca67eeeff968eb99e
treec44fa4c748a27f6898a07c14a5e6afa936e7f223
parent6fb67afa3aecd0b232a63630236921fbeb59e6e1
vhost: correctly check the return value of translate_desc() in log_used()

When fail, translate_desc() returns negative value, otherwise the
number of iovs. So we should fail when the return value is negative
instead of a blindly check against zero.

Detected by CoverityScan, CID# 1442593:  Control flow issues  (DEADCODE)

Fixes: 60b44f4c6dce ("vhost: log dirty page correctly")
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Reported-by: Stephen Hemminger <stephen@networkplumber.org>
Signed-off-by: Jason Wang <jasowang@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/vhost/vhost.c