Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost

Pull virtio fix from Michael Tsirkin:
"A last minute regression fix.

I thought we did a lot of testing, but a regression still managed to
sneak in. The fix seems trivial"

* tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost:
vhost: allow batching hint without size

+3 -1
+3 -1
drivers/vhost/vhost.c
··· 1170 1170 goto done; 1171 1171 } 1172 1172 1173 - if (msg.size == 0) { 1173 + if ((msg.type == VHOST_IOTLB_UPDATE || 1174 + msg.type == VHOST_IOTLB_INVALIDATE) && 1175 + msg.size == 0) { 1174 1176 ret = -EINVAL; 1175 1177 goto done; 1176 1178 }