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 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux

Pull virtio fix from Rusty Russell:
"Obviously I forgot to push this before linux.conf.au..."

* tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux:
virtio_console: Don't access uninitialized data.

+2 -1
+2 -1
drivers/char/virtio_console.c
··· 2062 2062 /* Disable interrupts for vqs */ 2063 2063 vdev->config->reset(vdev); 2064 2064 /* Finish up work that's lined up */ 2065 - cancel_work_sync(&portdev->control_work); 2065 + if (use_multiport(portdev)) 2066 + cancel_work_sync(&portdev->control_work); 2066 2067 2067 2068 list_for_each_entry_safe(port, port2, &portdev->ports, list) 2068 2069 unplug_port(port);