]> git.hungrycats.org Git - linux/commitdiff
vhost: actually track log eventfd file
authorMarc-André Lureau <marcandre.lureau@redhat.com>
Fri, 17 Jul 2015 13:32:03 +0000 (15:32 +0200)
committerSasha Levin <sasha.levin@oracle.com>
Thu, 27 Aug 2015 17:25:50 +0000 (13:25 -0400)
[ Upstream commit 7932c0bd7740f4cd2aa168d3ce0199e7af7d72d5 ]

While reviewing vhost log code, I found out that log_file is never
set. Note: I haven't tested the change (QEMU doesn't use LOG_FD yet).

Cc: stable@vger.kernel.org
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
drivers/vhost/vhost.c

index c90f4374442a571610da46b56dc94d51a3e26feb..1fe2c8115be034078da4ca929ae78e2545aa950d 100644 (file)
@@ -882,6 +882,7 @@ long vhost_dev_ioctl(struct vhost_dev *d, unsigned int ioctl, void __user *argp)
                }
                if (eventfp != d->log_file) {
                        filep = d->log_file;
+                       d->log_file = eventfp;
                        ctx = d->log_ctx;
                        d->log_ctx = eventfp ?
                                eventfd_ctx_fileget(eventfp) : NULL;