Amit Shah
2010-Mar-23 12:53 UTC
[PATCH 0/8] (v4) virtio: console: Fixes, new way of discovering ports
Hello,
This version addresses comments by Gerd and Michael:
- instead of returning -EPIPE if host is not connected in the write
case, just block the write if it's a blocking file and return -EAGAIN
if it's non-blocking.
- Removes early_console_printk after the first console is found
- Adds early_put_chars fix by Fran??ois Diakhat??. It still needs a
sign-off by him.
Standard message: Since the ABI is being reworked, it's essential to
push this to 2.6.34 so that we're not left supporting the older
interface.
Amit Shah (7):
MAINTAINERS: Put the virtio-console entry in correct alphabetical
order
virtio: console: Remove config work handler
virtio: console: Add a __send_control_msg() that can send messages
without a valid port
virtio: console: Move code around for future patches
virtio: console: Use a control message to add ports
virtio: console: Don't always create a port 0 if using multiport
virtio: console: Add partial blocking/non-blocking support to write()
Fran??ois Diakhat?? (1):
virtio: console: Fix early_put_chars usage
MAINTAINERS | 13 +-
drivers/char/virtio_console.c | 447 ++++++++++++++++++----------------------
include/linux/virtio_console.h | 18 +-
3 files changed, 215 insertions(+), 263 deletions(-)
Amit Shah
2010-Mar-23 12:53 UTC
[PATCH 1/8] MAINTAINERS: Put the virtio-console entry in correct alphabetical order
Move around the entry for virtio-console to keep the file sorted. Signed-off-by: Amit Shah <amit.shah at redhat.com> --- MAINTAINERS | 13 +++++++------ 1 files changed, 7 insertions(+), 6 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 449d444..e3548dd 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -2474,12 +2474,6 @@ L: linuxppc-dev at ozlabs.org S: Odd Fixes F: drivers/char/hvc_* -VIRTIO CONSOLE DRIVER -M: Amit Shah <amit.shah at redhat.com> -L: virtualization at lists.linux-foundation.org -S: Maintained -F: drivers/char/virtio_console.c - iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER M: Peter Jones <pjones at redhat.com> M: Konrad Rzeszutek Wilk <konrad at kernel.org> @@ -5961,6 +5955,13 @@ S: Maintained F: Documentation/filesystems/vfat.txt F: fs/fat/ +VIRTIO CONSOLE DRIVER +M: Amit Shah <amit.shah at redhat.com> +L: virtualization at lists.linux-foundation.org +S: Maintained +F: drivers/char/virtio_console.c +F: include/linux/virtio_console.h + VIRTIO HOST (VHOST) M: "Michael S. Tsirkin" <mst at redhat.com> L: kvm at vger.kernel.org -- 1.6.2.5
Reasonably Related Threads
- [PATCH 0/8] (v4) virtio: console: Fixes, new way of discovering ports
- [PATCH 0/7] virtio: console: Fixes, new flexible way of discovering ports
- [PATCH 0/7] virtio: console: Fixes, new flexible way of discovering ports
- [PULL] virtio console fixes
- [PULL] virtio console fixes