]> git.baikalelectronics.ru Git - kernel.git/commit
virtio-mem: silence a static checker warning
authorDan Carpenter <dan.carpenter@oracle.com>
Wed, 10 Jun 2020 08:59:11 +0000 (11:59 +0300)
committerMichael S. Tsirkin <mst@redhat.com>
Mon, 22 Jun 2020 16:34:21 +0000 (12:34 -0400)
commit320760cd0f7f544ee397b6a41e9d4e5dd927479a
tree900c474a156fe4c676560d474d53232804b9cbdb
parent41430edc35ad2b95bf15702c886fb28e631c806b
virtio-mem: silence a static checker warning

Smatch complains that "rc" can be uninitialized if we hit the "break;"
statement on the first iteration through the loop.  I suspect that this
can't happen in real life, but returning a zero literal is cleaner and
silence the static checker warning.

Fixes: b87a3bae0ca7 ("virtio-mem: Paravirtualized memory hotplug")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Link: https://lore.kernel.org/r/20200610085911.GC5439@mwanda
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
drivers/virtio/virtio_mem.c