vhost: fixes for 4.2
Two bugfixes only here. Signed-off-by: Michael S. Tsirkin <mst@redhat.com> -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEcBAABAgAGBQJVt1JYAAoJECgfDbjSjVRpvNcH/A8m4Yugwcp8DWyS8vJiO1Pw qCmGlLnu+NHHxkk/FNUbMHlCc9QZsnUcXYyt1wsE+pvuxxnxybfzN/79B/lZI8ER KY5VtWstVQjJf0+EifXiww74tqnRosDlbbYY9ujGXWvxzuGdsF++ZtvIDjaeCNtk jbiRsA8JOe0r7QRQgHwKzOtcMiam7bLgxQQQIHYr2HjDjXUwmHsEw2KszA0EgUbY xmyOSp+Y33dD6ofybYpRMK7azBSz0Voy67syDgmwn106Zojz6nUZ19swyna+D9Xc fqpLXiTXuRCiJckWqCdtk8mcTYVnBxRDfsVWDnbhD6xajIHj+4CdJhC1o7Q90ds= =kpWQ -----END PGP SIGNATURE----- Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost Pull vhost fixes from Michael Tsirkin: "Two bugfixes only here" * tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost: vhost: fix error handling for memory region alloc vhost: actually track log eventfd file
This commit is contained in:
commit
90c8acceac
|
@ -683,11 +683,8 @@ static void *vhost_kvzalloc(unsigned long size)
|
||||||
{
|
{
|
||||||
void *n = kzalloc(size, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
|
void *n = kzalloc(size, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
|
||||||
|
|
||||||
if (!n) {
|
if (!n)
|
||||||
n = vzalloc(size);
|
n = vzalloc(size);
|
||||||
if (!n)
|
|
||||||
return ERR_PTR(-ENOMEM);
|
|
||||||
}
|
|
||||||
return n;
|
return n;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -995,6 +992,7 @@ long vhost_dev_ioctl(struct vhost_dev *d, unsigned int ioctl, void __user *argp)
|
||||||
}
|
}
|
||||||
if (eventfp != d->log_file) {
|
if (eventfp != d->log_file) {
|
||||||
filep = d->log_file;
|
filep = d->log_file;
|
||||||
|
d->log_file = eventfp;
|
||||||
ctx = d->log_ctx;
|
ctx = d->log_ctx;
|
||||||
d->log_ctx = eventfp ?
|
d->log_ctx = eventfp ?
|
||||||
eventfd_ctx_fileget(eventfp) : NULL;
|
eventfd_ctx_fileget(eventfp) : NULL;
|
||||||
|
|
Loading…
Reference in New Issue