]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
vhost: use kzalloc() instead of kmalloc() followed by memset()
authorPrathu Baronia <prathubaronia2011@gmail.com>
Mon, 22 May 2023 08:50:19 +0000 (14:20 +0530)
committerMichael S. Tsirkin <mst@redhat.com>
Wed, 7 Jun 2023 20:22:30 +0000 (16:22 -0400)
Use kzalloc() to allocate new zeroed out msg node instead of
memsetting a node allocated with kmalloc().

Signed-off-by: Prathu Baronia <prathubaronia2011@gmail.com>
Message-Id: <20230522085019.42914-1-prathubaronia2011@gmail.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>
drivers/vhost/vhost.c

index 07427302084955331ae62a0892b9516f089b9daf..ecb3b397bb3888825975d75371a9d0d32223b9c2 100644 (file)
@@ -2563,12 +2563,11 @@ EXPORT_SYMBOL_GPL(vhost_disable_notify);
 /* Create a new message. */
 struct vhost_msg_node *vhost_new_msg(struct vhost_virtqueue *vq, int type)
 {
-       struct vhost_msg_node *node = kmalloc(sizeof *node, GFP_KERNEL);
+       /* Make sure all padding within the structure is initialized. */
+       struct vhost_msg_node *node = kzalloc(sizeof(*node), GFP_KERNEL);
        if (!node)
                return NULL;
 
-       /* Make sure all padding within the structure is initialized. */
-       memset(&node->msg, 0, sizeof node->msg);
        node->vq = vq;
        node->msg.type = type;
        return node;