search for: kardashevskiy

Displaying 20 results from an estimated 29 matches for "kardashevskiy".

2011 May 17
3
[PATCH 3/3] powerpc-virtio: virtio support introduced (block, network, serial, balloon, 9p-fs), both fullemu and power-kvm
On 17.05.2011, at 08:47, David Gibson wrote: > From: Alexey Kardashevskiy <aik at ozlabs.ru> > > The recently added pseries machine does not currently support PCI > emulation. For the (upcoming) kvm case, this is quite difficult to do > because the preferred HV mode for the host kernel does not allow MMIO > emulation (a hardware limitation). >...
2011 May 17
3
[PATCH 3/3] powerpc-virtio: virtio support introduced (block, network, serial, balloon, 9p-fs), both fullemu and power-kvm
On 17.05.2011, at 08:47, David Gibson wrote: > From: Alexey Kardashevskiy <aik at ozlabs.ru> > > The recently added pseries machine does not currently support PCI > emulation. For the (upcoming) kvm case, this is quite difficult to do > because the preferred HV mode for the host kernel does not allow MMIO > emulation (a hardware limitation). >...
2011 Mar 09
1
[PATCH] virtio console: don't manually set or finalize VIRTIO_CONSOLE_F_MULTIPORT.
That's already been done by the virtio infrastructure before the probe function is called. Reported-by: alexey.kardashevskiy at au1.ibm.com Signed-off-by: Rusty Russell <rusty at rustcorp.com.au> 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 @@ -1680,17 +1680,12 @@ static int __devinit virtcons_probe(stru portdev...
2011 Mar 09
1
[PATCH] virtio console: don't manually set or finalize VIRTIO_CONSOLE_F_MULTIPORT.
That's already been done by the virtio infrastructure before the probe function is called. Reported-by: alexey.kardashevskiy at au1.ibm.com Signed-off-by: Rusty Russell <rusty at rustcorp.com.au> 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 @@ -1680,17 +1680,12 @@ static int __devinit virtcons_probe(stru portdev...
2011 Nov 01
2
[PULL] virtio
...9e0a5a7f223b67bffa7945f8d: > > Merge branch 'i2c-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging (2011-10-30 15:54:59 -0700) > > are available in the git repository at: > > git://github.com/rustyrussell/linux.git master > > Alexey Kardashevskiy (1): > virtio-pci: Use PCI MMIO instead of PIO when available I missed this one - wasn't Cc'd neither me, kvm or virtio mailing lists. It's well known that mmio is much slower than pio on kvm, since mmio needs to be emulated to get at the address. So I'm expecting this wi...
2011 Nov 01
2
[PULL] virtio
...9e0a5a7f223b67bffa7945f8d: > > Merge branch 'i2c-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging (2011-10-30 15:54:59 -0700) > > are available in the git repository at: > > git://github.com/rustyrussell/linux.git master > > Alexey Kardashevskiy (1): > virtio-pci: Use PCI MMIO instead of PIO when available I missed this one - wasn't Cc'd neither me, kvm or virtio mailing lists. It's well known that mmio is much slower than pio on kvm, since mmio needs to be emulated to get at the address. So I'm expecting this wi...
2019 Oct 14
3
[PATCH 1/2] dma-mapping: Add dma_addr_is_phys_addr()
...amin Herrenschmidt <benh at kernel.crashing.org> > cc: David Gibson <david at gibson.dropbear.id.au> > cc: Michael Ellerman <mpe at ellerman.id.au> > cc: Paul Mackerras <paulus at ozlabs.org> > cc: Michael Roth <mdroth at linux.vnet.ibm.com> > cc: Alexey Kardashevskiy <aik at linux.ibm.com> > cc: Paul Burton <paul.burton at mips.com> > cc: Robin Murphy <robin.murphy at arm.com> > cc: Bartlomiej Zolnierkiewicz <b.zolnierkie at samsung.com> > cc: Marek Szyprowski <m.szyprowski at samsung.com> > cc: Christoph Hellwig &lt...
2019 Oct 14
3
[PATCH 1/2] dma-mapping: Add dma_addr_is_phys_addr()
...amin Herrenschmidt <benh at kernel.crashing.org> > cc: David Gibson <david at gibson.dropbear.id.au> > cc: Michael Ellerman <mpe at ellerman.id.au> > cc: Paul Mackerras <paulus at ozlabs.org> > cc: Michael Roth <mdroth at linux.vnet.ibm.com> > cc: Alexey Kardashevskiy <aik at linux.ibm.com> > cc: Paul Burton <paul.burton at mips.com> > cc: Robin Murphy <robin.murphy at arm.com> > cc: Bartlomiej Zolnierkiewicz <b.zolnierkie at samsung.com> > cc: Marek Szyprowski <m.szyprowski at samsung.com> > cc: Christoph Hellwig &lt...
2019 Oct 12
4
[PATCH 0/2] virtio: Support encrypted memory on powerpc secure guests
**We would like the patches to be merged through the virtio tree. Please review, and ack merging the DMA mapping change through that tree. Thanks!** The memory of powerpc secure guests can't be accessed by the hypervisor / virtio device except for a few memory regions designated as 'shared'. At the moment, Linux uses bounce-buffering to communicate with the hypervisor, with a
2019 Oct 12
5
[PATCH 2/2] virtio_ring: Use DMA API if memory is encrypted
...s not the case. cc: Benjamin Herrenschmidt <benh at kernel.crashing.org> cc: David Gibson <david at gibson.dropbear.id.au> cc: Michael Ellerman <mpe at ellerman.id.au> cc: Paul Mackerras <paulus at ozlabs.org> cc: Michael Roth <mdroth at linux.vnet.ibm.com> cc: Alexey Kardashevskiy <aik at linux.ibm.com> cc: Jason Wang <jasowang at redhat.com> cc: Christoph Hellwig <hch at lst.de> Suggested-by: Michael S. Tsirkin <mst at redhat.com> Signed-off-by: Ram Pai <linuxram at us.ibm.com> Signed-off-by: Thiago Jung Bauermann <bauerman at linux.ibm.com&...
2019 Oct 12
5
[PATCH 2/2] virtio_ring: Use DMA API if memory is encrypted
...s not the case. cc: Benjamin Herrenschmidt <benh at kernel.crashing.org> cc: David Gibson <david at gibson.dropbear.id.au> cc: Michael Ellerman <mpe at ellerman.id.au> cc: Paul Mackerras <paulus at ozlabs.org> cc: Michael Roth <mdroth at linux.vnet.ibm.com> cc: Alexey Kardashevskiy <aik at linux.ibm.com> cc: Jason Wang <jasowang at redhat.com> cc: Christoph Hellwig <hch at lst.de> Suggested-by: Michael S. Tsirkin <mst at redhat.com> Signed-off-by: Ram Pai <linuxram at us.ibm.com> Signed-off-by: Thiago Jung Bauermann <bauerman at linux.ibm.com&...
2019 Oct 12
0
[PATCH 1/2] dma-mapping: Add dma_addr_is_phys_addr()
...is introduced. cc: Benjamin Herrenschmidt <benh at kernel.crashing.org> cc: David Gibson <david at gibson.dropbear.id.au> cc: Michael Ellerman <mpe at ellerman.id.au> cc: Paul Mackerras <paulus at ozlabs.org> cc: Michael Roth <mdroth at linux.vnet.ibm.com> cc: Alexey Kardashevskiy <aik at linux.ibm.com> cc: Paul Burton <paul.burton at mips.com> cc: Robin Murphy <robin.murphy at arm.com> cc: Bartlomiej Zolnierkiewicz <b.zolnierkie at samsung.com> cc: Marek Szyprowski <m.szyprowski at samsung.com> cc: Christoph Hellwig <hch at lst.de> Sugges...
2019 Oct 14
0
[PATCH 1/2] dma-mapping: Add dma_addr_is_phys_addr()
...lt;benh at kernel.crashing.org> >> cc: David Gibson <david at gibson.dropbear.id.au> >> cc: Michael Ellerman <mpe at ellerman.id.au> >> cc: Paul Mackerras <paulus at ozlabs.org> >> cc: Michael Roth <mdroth at linux.vnet.ibm.com> >> cc: Alexey Kardashevskiy <aik at linux.ibm.com> >> cc: Paul Burton <paul.burton at mips.com> >> cc: Robin Murphy <robin.murphy at arm.com> >> cc: Bartlomiej Zolnierkiewicz <b.zolnierkie at samsung.com> >> cc: Marek Szyprowski <m.szyprowski at samsung.com> >> cc: C...
2013 Apr 24
1
dnsmasq does not start
Hi! I am trying to run tap networking with libvirtd. My test system is Fedora18/ppc64, libvirt 1.0.4 (compiled from git and installed). On another system with Fedora17/ppc64 with the same settings, dnsmasq is running. All configs in /etc/libvirt/ are default and not changed, the only exception is /etc/libvirt/qemu/networks/default.xml which I copied from Fedora17/ppc64 setup. What does
2013 Apr 11
0
reboot command lost?
...ions: > > 1) install acpid into the guest > > 2) use a different method. > > Michal > > > > ------------------------------ > > Message: 6 > Date: Thu, 11 Apr 2013 13:34:13 +0200 > From: Martin Kletzander <mkletzan at redhat.com> > To: Alexey Kardashevskiy <aik at ozlabs.ru> > Cc: libvirt-users at redhat.com > Subject: Re: [libvirt-users] virt-install on powerpc64 issues > Message-ID: <51669FB5.4030600 at redhat.com> > Content-Type: text/plain; charset=ISO-8859-1 > > On 04/10/2013 07:15 AM, Alexey Kardashevskiy wrote: &...
2013 Apr 08
1
libvirt, selinux, moving images to ~/images does not work
Hi! I am trying libvirt on POWERPC64 with the default settings such as selinux enabled. It is all good till I move images out of /var/lib/libvirt/images/. http://libvirt.org/drvqemu.html#securityselinux is saying that "If attempting to use disk images in another location, the user/administrator must ensure the directory has be given this requisite label. Likewise physical block devices
2013 Nov 15
0
[qemu-upstream-unstable test] 21952: regressions - FAIL
...lasdair.mcleay@me.com> Alberto Garcia <agarcia@igalia.com> Alex Bligh <alex@alex.org.uk> Alex Horn <alex.horn@cs.ox.ac.uk> Alex Rozenman <Alex_Rozenman@mentor.com> Alex Williamson <alex.williamson@redhat.com> Alexander Graf <agraf@suse.de> Alexey Kardashevskiy <aik@ozlabs.ru> Alexey Korolev <akorolex@gmail.com> Alexey Zaytsev <alexey.zaytsev@gmail.com> Alin Tomescu <tomescu.alin@gmail.com> Alon Levy <alevy@redhat.com> Amadeusz Sławiński <amade@asmblr.net> Amit Shah <amit.shah@redhat.com> Amos Kong &...
2013 Nov 14
0
[qemu-upstream-unstable test] 21930: regressions - FAIL
...lasdair.mcleay@me.com> Alberto Garcia <agarcia@igalia.com> Alex Bligh <alex@alex.org.uk> Alex Horn <alex.horn@cs.ox.ac.uk> Alex Rozenman <Alex_Rozenman@mentor.com> Alex Williamson <alex.williamson@redhat.com> Alexander Graf <agraf@suse.de> Alexey Kardashevskiy <aik@ozlabs.ru> Alexey Korolev <akorolex@gmail.com> Alexey Zaytsev <alexey.zaytsev@gmail.com> Alin Tomescu <tomescu.alin@gmail.com> Alon Levy <alevy@redhat.com> Amadeusz Sławiński <amade@asmblr.net> Amit Shah <amit.shah@redhat.com> Amos Kong &...
2013 Nov 18
0
[qemu-upstream-unstable test] 21993: regressions - FAIL
...lasdair.mcleay@me.com> Alberto Garcia <agarcia@igalia.com> Alex Bligh <alex@alex.org.uk> Alex Horn <alex.horn@cs.ox.ac.uk> Alex Rozenman <Alex_Rozenman@mentor.com> Alex Williamson <alex.williamson@redhat.com> Alexander Graf <agraf@suse.de> Alexey Kardashevskiy <aik@ozlabs.ru> Alexey Korolev <akorolex@gmail.com> Alexey Zaytsev <alexey.zaytsev@gmail.com> Alin Tomescu <tomescu.alin@gmail.com> Alon Levy <alevy@redhat.com> Amadeusz Sławiński <amade@asmblr.net> Amit Shah <amit.shah@redhat.com> Amos Kong &...
2013 Apr 10
1
virt-install on powerpc64 issues
Hi! I am trying to setup a guest using virt-install script: /usr/bin/virt-install -n fc18guest5 -r 1024 \ --disk path=/home/aik/virtimg/fc18guest,size=8 \ -c /home/aik/virtimg/Fedora-18-ppc64-DVD.iso \ --video vga --arch=ppc64 -d --machine=pseries And it fails. I could not find any relevant log in /var/log/libvirt/ so I simply hacked /usr/local/bin/qemu-system-ppc64 to print all the