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 last-minute virtio fix from Michael Tsirkin:
"This fixes a minor issue affecting multiqueue virtio net when user
keeps changing the number of active queues and CPUs are added and
removed by hotplug"

* tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost:
virtio_pci: Clear stale cpumask when setting irq affinity

+1
+1
drivers/virtio/virtio_pci_common.c
··· 423 423 if (cpu == -1) 424 424 irq_set_affinity_hint(irq, NULL); 425 425 else { 426 + cpumask_clear(mask); 426 427 cpumask_set_cpu(cpu, mask); 427 428 irq_set_affinity_hint(irq, mask); 428 429 }