search for: hvc_xen

Displaying 20 results from an estimated 78 matches for "hvc_xen".

2012 May 23
17
[PATCH] bug-fixes to hvc-xen driver in v3.4 (and earlier).
...xen_console_resume, which does: 301 if (info != NULL && info->irq) 302 rebind_evtchn_irq(info->evtchn, info->irq); and that triggers the BUG_ON mentioned above (b/c the type we want is IRQT_EVTCHN and the type info->type is IRQT_PIRQ). drivers/tty/hvc/hvc_xen.c | 24 +++++++++++------------- drivers/xen/events.c | 11 +++++++++-- 2 files changed, 20 insertions(+), 15 deletions(-)
2012 Jul 03
13
[PATCH] various Xen fixes for v3.6 (v1).
I am working on some other bugs and perf issues - and while working I noticed that both sparse and Coverity have reported some issues with Xen drivers. Please see attached various bug-fixes that I am proposing for 3.6.
2008 Jun 03
12
[RFC 0/3]: hvc_console rework for platform without hard irqs
This patch set if my first attempt to make virtio_console usable on s390. To do so, I had to change hvc_console, because s390 has no request_irq and no free_irq. I want to get feedback from the main users of hvc_console before I proceed. The basic idea of this patch set is to remove the calls to request_irq and free_irq and replace them with backend specific callbacks. Please see the
2008 Jun 03
12
[RFC 0/3]: hvc_console rework for platform without hard irqs
This patch set if my first attempt to make virtio_console usable on s390. To do so, I had to change hvc_console, because s390 has no request_irq and no free_irq. I want to get feedback from the main users of hvc_console before I proceed. The basic idea of this patch set is to remove the calls to request_irq and free_irq and replace them with backend specific callbacks. Please see the
2007 Apr 18
1
[rfc/patch] use hvc for xen console
Hi, Here is a patch (on top of the paravirt patch queue) which makes xen guests use the hvc_console.c infrastructure for the console, thereby greatly reducing the amount console code. xvc0 is gone too, hvc0 is used instead. cheers, Gerd -- Gerd Hoffmann <kraxel@suse.de>
2007 Apr 18
1
[rfc/patch] use hvc for xen console
Hi, Here is a patch (on top of the paravirt patch queue) which makes xen guests use the hvc_console.c infrastructure for the console, thereby greatly reducing the amount console code. xvc0 is gone too, hvc0 is used instead. cheers, Gerd -- Gerd Hoffmann <kraxel@suse.de>
2007 Apr 18
1
[rfc/patch] use hvc for xen console
Hi, Here is a patch (on top of the paravirt patch queue) which makes xen guests use the hvc_console.c infrastructure for the console, thereby greatly reducing the amount console code. xvc0 is gone too, hvc0 is used instead. cheers, Gerd -- Gerd Hoffmann <kraxel@suse.de>
2008 Nov 13
4
Howto make a 2.6.26 kernel for my domUs
Hello, I wants to make a self compiled kernel for my domUs on a debian etch server with Xen 3.1.4 and 2.6.18.8 dom0 kernel. So, I download sources for linux-2.6.26.8, and I enabled all the Xen features : Symbol: HVC_XEN [=y] Symbol: XEN_BALLOON [=y] Symbol: XEN_FBDEV_FRONTEND [=y] Symbol: XEN_SCRUB_PAGES [=y] Symbol: XEN_KBDDEV_FRONTEND [=y] Symbol: XEN_BLKDEV_FRONTEND [=y] Symbol: XEN_NETDEV_FRONTEND [=y] Symbol: XEN [=y] my domu configuration file is : kernel = ''/boot/...
2009 Dec 22
4
[PATCH 00/31] virtio: console: Fixes, multiple devices and generic ports
.../char/hvc_console.c | 9 +- drivers/char/hvc_console.h | 9 +- drivers/char/hvc_iseries.c | 2 +- drivers/char/hvc_iucv.c | 2 +- drivers/char/hvc_rtas.c | 2 +- drivers/char/hvc_udbg.c | 2 +- drivers/char/hvc_vio.c | 2 +- drivers/char/hvc_xen.c | 2 +- drivers/char/virtio_console.c | 1575 ++++++++++++++++++++++++++++++++++++---- include/linux/virtio_console.h | 44 ++- 12 files changed, 1498 insertions(+), 161 deletions(-)
2009 Dec 22
4
[PATCH 00/31] virtio: console: Fixes, multiple devices and generic ports
.../char/hvc_console.c | 9 +- drivers/char/hvc_console.h | 9 +- drivers/char/hvc_iseries.c | 2 +- drivers/char/hvc_iucv.c | 2 +- drivers/char/hvc_rtas.c | 2 +- drivers/char/hvc_udbg.c | 2 +- drivers/char/hvc_vio.c | 2 +- drivers/char/hvc_xen.c | 2 +- drivers/char/virtio_console.c | 1575 ++++++++++++++++++++++++++++++++++++---- include/linux/virtio_console.h | 44 ++- 12 files changed, 1498 insertions(+), 161 deletions(-)
2008 Feb 27
1
xen: Make hvc0 the preferred console in domU
This makes the Xen console just work. Before, you had to ask for it on the kernel command line with console=hvc0 Signed-off-by: Markus Armbruster <armbru at redhat.com> --- diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c index 49e5358..df63185 100644 --- a/arch/x86/xen/enlighten.c +++ b/arch/x86/xen/enlighten.c @@ -25,6 +25,7 @@ #include <linux/mm.h> #include
2009 May 15
14
Grub2 on Xen PV
.... I contacted the Grub people, and they seem more interested in creating a native Xen port of Grub than piggybacking the Mini-OS environment usin kexec as I tried. But they need some documentation on the Xen "firmware" to assess the task at least. What could be given to them apart from hvc_xen.c and xen-blkfront.c in the Linux sources? blkif-drivers-explained.txt? For a start, Grub has a Coreboot port, which is ELF, but the Xen 3.2 domain builder refuses to load it saying: xc_dom_parse_elf_kernel: ELF image has no shstrtab -- Thanks, Feri. ___________________________________________...
2009 May 15
14
Grub2 on Xen PV
.... I contacted the Grub people, and they seem more interested in creating a native Xen port of Grub than piggybacking the Mini-OS environment usin kexec as I tried. But they need some documentation on the Xen "firmware" to assess the task at least. What could be given to them apart from hvc_xen.c and xen-blkfront.c in the Linux sources? blkif-drivers-explained.txt? For a start, Grub has a Coreboot port, which is ELF, but the Xen 3.2 domain builder refuses to load it saying: xc_dom_parse_elf_kernel: ELF image has no shstrtab -- Thanks, Feri. ___________________________________________...
2008 Jul 25
0
[PULL] virtio patches
...akefile | 1 + drivers/char/hvc_console.c | 85 ++++++++---------------------- drivers/char/hvc_console.h | 35 +++++++++++-- drivers/char/hvc_irq.c | 44 +++++++++++++++ drivers/char/hvc_iseries.c | 2 + drivers/char/hvc_vio.c | 2 + drivers/char/hvc_xen.c | 2 + drivers/char/virtio_console.c | 40 ++++++++++++--- drivers/lguest/lguest_device.c | 14 +++-- drivers/net/virtio_net.c | 114 +++++++++++++++++++++++++++++++++++----- drivers/s390/kvm/kvm_virtio.c | 34 ++++++++++-- drivers/virtio/virtio.c | 26 +++++----...
2008 Jul 25
0
[PULL] virtio patches
...akefile | 1 + drivers/char/hvc_console.c | 85 ++++++++---------------------- drivers/char/hvc_console.h | 35 +++++++++++-- drivers/char/hvc_irq.c | 44 +++++++++++++++ drivers/char/hvc_iseries.c | 2 + drivers/char/hvc_vio.c | 2 + drivers/char/hvc_xen.c | 2 + drivers/char/virtio_console.c | 40 ++++++++++++--- drivers/lguest/lguest_device.c | 14 +++-- drivers/net/virtio_net.c | 114 +++++++++++++++++++++++++++++++++++----- drivers/s390/kvm/kvm_virtio.c | 34 ++++++++++-- drivers/virtio/virtio.c | 26 +++++----...
2010 Feb 24
0
[PULL] virtio & lguest
...vc_console.c | 7 +- drivers/char/hvc_console.h | 7 +- drivers/char/hvc_iseries.c | 2 +- drivers/char/hvc_iucv.c | 2 +- drivers/char/hvc_rtas.c | 2 +- drivers/char/hvc_udbg.c | 2 +- drivers/char/hvc_vio.c | 2 +- drivers/char/hvc_xen.c | 2 +- drivers/char/virtio_console.c | 1578 +++++++++++++++++++++++++++++++++++---- drivers/virtio/virtio_balloon.c | 109 +++- drivers/virtio/virtio_pci.c | 2 +- drivers/virtio/virtio_ring.c | 59 ++- include/linux/virtio.h | 4 + include/linux/virtio_ba...
2010 Feb 24
0
[PULL] virtio & lguest
...vc_console.c | 7 +- drivers/char/hvc_console.h | 7 +- drivers/char/hvc_iseries.c | 2 +- drivers/char/hvc_iucv.c | 2 +- drivers/char/hvc_rtas.c | 2 +- drivers/char/hvc_udbg.c | 2 +- drivers/char/hvc_vio.c | 2 +- drivers/char/hvc_xen.c | 2 +- drivers/char/virtio_console.c | 1578 +++++++++++++++++++++++++++++++++++---- drivers/virtio/virtio_balloon.c | 109 +++- drivers/virtio/virtio_pci.c | 2 +- drivers/virtio/virtio_ring.c | 59 ++- include/linux/virtio.h | 4 + include/linux/virtio_ba...
2012 Jul 24
0
What went in Linux 3.5 from Xen standpoint.
...r mulitple PCI domains to not crash during bootup [zhang] - Fix to make FLR actually do properly FLR in xen-pciback. [me] And the full list: Andre Przywara (1): xen/setup: filter APERFMPERF cpuid feature out Ben Guthro (1): xen: implement apic ipi interface Dan Carpenter (1): hvc_xen: NULL dereference on allocation failure Daniel De Graaf (1): xenbus: Add support for xenbus backend in stub domain David Vrabel (1): xen/setup: update VA mapping when releasing memory during setup H. Peter Anvin (1): xen-acpi-processor: Add missing #include <xen/xen.h> I...
2013 Nov 11
0
[GIT PULL] (xen) stable/for-linus-3.13-rc0-tag
...| 6 +- arch/x86/xen/pci-swiotlb-xen.c | 4 + arch/x86/xen/setup.c | 2 +- arch/x86/xen/smp.c | 10 +- arch/x86/xen/spinlock.c | 2 +- arch/x86/xen/time.c | 3 +- drivers/tty/hvc/hvc_xen.c | 19 ++- drivers/xen/Kconfig | 1 - drivers/xen/balloon.c | 6 +- drivers/xen/evtchn.c | 2 +- drivers/xen/grant-table.c | 19 ++- drivers/xen/pci.c | 47 +++++++...
2009 Nov 10
3
[PATCH 1/8] virtio: console: comment cleanup
Remove old lguest-style comments. Signed-off-by: Rusty Russell <rusty at rustcorp.com.au> --- drivers/char/virtio_console.c | 30 ++++++------------------------ 1 file changed, 6 insertions(+), 24 deletions(-) diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c --- a/drivers/char/virtio_console.c +++ b/drivers/char/virtio_console.c @@ -1,18 +1,5 @@ -/*D:300 - *