vhost/vsock: fix uninitialized vhost_vsock->guest_cid
authorStefan Hajnoczi <stefanha@redhat.com>
Thu, 9 Nov 2017 13:29:10 +0000 (13:29 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 13 Jan 2019 09:03:51 +0000 (10:03 +0100)
commit258d8549b55e2cd5d73d9ff3d18b39aeeab08e1f
treec866f545a37eb05eb45c29f46512a1c939ddab54
parentce8ca305b49b3e6f3c495c3fbc31665f4eb0b9fd
vhost/vsock: fix uninitialized vhost_vsock->guest_cid

commit a72b69dc083a931422cc8a5e33841aff7d5312f2 upstream.

The vhost_vsock->guest_cid field is uninitialized when /dev/vhost-vsock
is opened until the VHOST_VSOCK_SET_GUEST_CID ioctl is called.

kvmalloc(..., GFP_KERNEL | __GFP_RETRY_MAYFAIL) does not zero memory.
All other vhost_vsock fields are initialized explicitly so just
initialize this field too.

Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Cc: Daniel Verkamp <dverkamp@chromium.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/vhost/vsock.c