search for: virtio_con

Displaying 20 results from an estimated 38 matches for "virtio_con".

Did you mean: virtio_cons
2009 Nov 10
2
virtio_console: support for multiple ports, console and generic.
Hey Rusty, This is the way I did the split; patches 1..7 are preparation for multiple ports. Patch 8 adds multiport support. It's the big one since we have to put the header in and retain support for multiple consoles and console resizing. Patch 9 adds port hotplug Patch 10 adds sysfs entries and 12 adds debugfs. Patches 13, 14 and 15 add throttling, caching and unplug features.
2009 Nov 10
2
virtio_console: support for multiple ports, console and generic.
Hey Rusty, This is the way I did the split; patches 1..7 are preparation for multiple ports. Patch 8 adds multiport support. It's the big one since we have to put the header in and retain support for multiple consoles and console resizing. Patch 9 adds port hotplug Patch 10 adds sysfs entries and 12 adds debugfs. Patches 13, 14 and 15 add throttling, caching and unplug features.
2010 Jan 18
2
[PATCH 00/32] virtio: console: Fixes, multiple devices and generic ports
...g virtio: console: Add ability to hot-unplug ports virtio: console: Add debugfs files for each port to expose debug info virtio: console: show error message if hvc_alloc fails for console ports Rusty Russell (6): virtio: console: comment cleanup virtio: console: statically initialize virtio_cons hvc_console: make the ops pointer const. virtio: console: port encapsulation virtio: console: use vdev->priv to avoid accessing global var. virtio: console: remove global var Shirley Ma (1): virtio: Add ability to detach unused buffers from vrings drivers/char/Kconfig |...
2010 Jan 18
2
[PATCH 00/32] virtio: console: Fixes, multiple devices and generic ports
...g virtio: console: Add ability to hot-unplug ports virtio: console: Add debugfs files for each port to expose debug info virtio: console: show error message if hvc_alloc fails for console ports Rusty Russell (6): virtio: console: comment cleanup virtio: console: statically initialize virtio_cons hvc_console: make the ops pointer const. virtio: console: port encapsulation virtio: console: use vdev->priv to avoid accessing global var. virtio: console: remove global var Shirley Ma (1): virtio: Add ability to detach unused buffers from vrings drivers/char/Kconfig |...
2009 Nov 28
3
[PATCH 00/28] virtio: console: Fixes, support for generic ports
...tio: console: Handle port hot-plug hvc_console: Export (GPL'ed) hvc_remove virtio: console: Add ability to hot-unplug ports virtio: console: Add debugfs files for each port to expose debug info Rusty Russell (6): virtio: console: comment cleanup virtio: console: statically initialize virtio_cons hvc_console: make the ops pointer const. virtio: console: port encapsulation virtio: console: use vdev->priv to avoid accessing global var. virtio: console: remove global var drivers/char/Kconfig | 8 + drivers/char/hvc_beat.c | 2 +- drivers/char/hvc_console.c...
2009 Nov 28
3
[PATCH 00/28] virtio: console: Fixes, support for generic ports
...tio: console: Handle port hot-plug hvc_console: Export (GPL'ed) hvc_remove virtio: console: Add ability to hot-unplug ports virtio: console: Add debugfs files for each port to expose debug info Rusty Russell (6): virtio: console: comment cleanup virtio: console: statically initialize virtio_cons hvc_console: make the ops pointer const. virtio: console: port encapsulation virtio: console: use vdev->priv to avoid accessing global var. virtio: console: remove global var drivers/char/Kconfig | 8 + drivers/char/hvc_beat.c | 2 +- drivers/char/hvc_console.c...
2009 Sep 11
1
Multiple ports support for virtio_console; major number for dev
Hello, This is the patch that I have for adding support for multiple ports to virtio_console. It's pretty stable in my testing so far and the memory corruption that I had earlier has been resolved in linux-next so I'm proposing this for inclusion. This currently uses device major number 60 from the experimental range; Alan could you please reserve a new major number for virtio...
2009 Sep 11
1
Multiple ports support for virtio_console; major number for dev
Hello, This is the patch that I have for adding support for multiple ports to virtio_console. It's pretty stable in my testing so far and the memory corruption that I had earlier has been resolved in linux-next so I'm proposing this for inclusion. This currently uses device major number 60 from the experimental range; Alan could you please reserve a new major number for virtio...
2009 Oct 12
1
[PATCH v8 0/1] virtio_console: Add support for multiple console ports and generic serial ports
...ernel) and it all works fine. To maintain backward compatibility, the first port to be spawned (port at id 0) is to be a console port, to be bound to hvc. This keeps new host, old guest happy. Christian has tested the console functionality on s390. Please review and apply, Amit Amit Shah (1): virtio_console: Add support for multiple ports for generic guest and host communication drivers/char/Kconfig | 6 + drivers/char/virtio_console.c | 1290 +++++++++++++++++++++++++++++++++++----- include/linux/virtio_console.h | 50 ++- 3 files changed, 1210 insertions(+), 136 deletions(-...
2009 Oct 12
1
[PATCH v8 0/1] virtio_console: Add support for multiple console ports and generic serial ports
...ernel) and it all works fine. To maintain backward compatibility, the first port to be spawned (port at id 0) is to be a console port, to be bound to hvc. This keeps new host, old guest happy. Christian has tested the console functionality on s390. Please review and apply, Amit Amit Shah (1): virtio_console: Add support for multiple ports for generic guest and host communication drivers/char/Kconfig | 6 + drivers/char/virtio_console.c | 1290 +++++++++++++++++++++++++++++++++++----- include/linux/virtio_console.h | 50 ++- 3 files changed, 1210 insertions(+), 136 deletions(-...
2009 Sep 29
0
[PATCH] virtio_console: Add support for multiple ports for generic guest and host communication
...v scripts, example: /dev/vcon/org.libvirt.channel.0 -> /dev/vcon1 For requirements, use-cases and some history see http://www.linux-kvm.org/page/VMchannel_Requirements Signed-off-by: Amit Shah <amit.shah at redhat.com> --- drivers/char/Kconfig | 6 + drivers/char/virtio_console.c | 1099 +++++++++++++++++++++++++++++++++++----- include/linux/virtio_console.h | 48 ++- 3 files changed, 1016 insertions(+), 137 deletions(-) diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig index 6a06913..7b4602f 100644 --- a/drivers/char/Kconfig +++ b/drivers/char/Kconfig @@ -...
2009 Sep 29
0
[PATCH] virtio_console: Add support for multiple ports for generic guest and host communication
...v scripts, example: /dev/vcon/org.libvirt.channel.0 -> /dev/vcon1 For requirements, use-cases and some history see http://www.linux-kvm.org/page/VMchannel_Requirements Signed-off-by: Amit Shah <amit.shah at redhat.com> --- drivers/char/Kconfig | 6 + drivers/char/virtio_console.c | 1099 +++++++++++++++++++++++++++++++++++----- include/linux/virtio_console.h | 48 ++- 3 files changed, 1016 insertions(+), 137 deletions(-) diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig index 6a06913..7b4602f 100644 --- a/drivers/char/Kconfig +++ b/drivers/char/Kconfig @@ -...
2009 Sep 03
3
Multiple port support for virtio-console
Hello all, Here is a new iteration of the patch series that implements a transport for guest and host communications. I've tested for compatibility (old qemu & new kernel, new qemu & old kernel, new qemu & new kernel) and it all works fine*. There are a few items on my todo list but this works well. New since last send: - live migration support** - write path in the guest
2009 Sep 03
3
Multiple port support for virtio-console
Hello all, Here is a new iteration of the patch series that implements a transport for guest and host communications. I've tested for compatibility (old qemu & new kernel, new qemu & old kernel, new qemu & new kernel) and it all works fine*. There are a few items on my todo list but this works well. New since last send: - live migration support** - write path in the guest
2009 Oct 20
1
[PATCH v9 0/1] virtio-console: Support for generic ports and multiple consoles
...sole functionality on s390. v9: - Add debugfs files for each port to expose some port-specific information for easier debugging - Port hotplug fix - Disallow opening of console ports (open(/dev/vcon0) should fail) - A couple of other minor fixes. Please review and apply, Amit Amit Shah (1): virtio_console: Add support for multiple ports for generic guest and host communication drivers/char/Kconfig | 6 + drivers/char/virtio_console.c | 1372 ++++++++++++++++++++++++++++++++++++---- include/linux/virtio_console.h | 50 ++- 3 files changed, 1292 insertions(+), 136 deletions(-...
2009 Oct 20
1
[PATCH v9 0/1] virtio-console: Support for generic ports and multiple consoles
...sole functionality on s390. v9: - Add debugfs files for each port to expose some port-specific information for easier debugging - Port hotplug fix - Disallow opening of console ports (open(/dev/vcon0) should fail) - A couple of other minor fixes. Please review and apply, Amit Amit Shah (1): virtio_console: Add support for multiple ports for generic guest and host communication drivers/char/Kconfig | 6 + drivers/char/virtio_console.c | 1372 ++++++++++++++++++++++++++++++++++++---- include/linux/virtio_console.h | 50 ++- 3 files changed, 1292 insertions(+), 136 deletions(-...
2009 Nov 03
3
[PATCH v10 0/1] virtio-console: Support for generic ports and multiple consoles
...mitshah/public_git/test-virtserial.git This version passes all the automated tests there. Christian has tested the console functionality on s390. v10: - only one process can open a port in the guest - minor fixes for throttling and caching cases Please review and apply, Amit Amit Shah (1): virtio_console: Add support for multiple ports for generic guest and host communication drivers/char/Kconfig | 6 + drivers/char/virtio_console.c | 1412 ++++++++++++++++++++++++++++++++++++---- include/linux/virtio_console.h | 50 ++- 3 files changed, 1332 insertions(+), 136 deletions(-...
2009 Nov 03
3
[PATCH v10 0/1] virtio-console: Support for generic ports and multiple consoles
...mitshah/public_git/test-virtserial.git This version passes all the automated tests there. Christian has tested the console functionality on s390. v10: - only one process can open a port in the guest - minor fixes for throttling and caching cases Please review and apply, Amit Amit Shah (1): virtio_console: Add support for multiple ports for generic guest and host communication drivers/char/Kconfig | 6 + drivers/char/virtio_console.c | 1412 ++++++++++++++++++++++++++++++++++++---- include/linux/virtio_console.h | 50 ++- 3 files changed, 1332 insertions(+), 136 deletions(-...
2009 Aug 25
3
Extending virtio_console to support multiple ports
Hello all, Here is a new iteration of the patch series that implements a transport for guest and host communications. The code has been updated to reuse the virtio-console device instead of creating a new virtio-serial device. I've tested for compatibility (old qemu & new kernel, new qemu & old kernel, new qemu & new kernel) and it all works fine. There are a few items on my
2009 Aug 25
3
Extending virtio_console to support multiple ports
Hello all, Here is a new iteration of the patch series that implements a transport for guest and host communications. The code has been updated to reuse the virtio-console device instead of creating a new virtio-serial device. I've tested for compatibility (old qemu & new kernel, new qemu & old kernel, new qemu & new kernel) and it all works fine. There are a few items on my