similar to: About IBM PowerVM hypervisor support

Displaying 20 results from an estimated 3000 matches similar to: "About IBM PowerVM hypervisor support"

2013 Nov 06
2
virConnectListAllDomains support for PowerVM
Hey guys, I'm so glad you added the new set of virConnectListAllDomains functions, it simplifies a lot our work!. I was only wondering why there is no support for PowerVM. Is it that it hasn't been developed or is there some technical hardship? Best, Camilo Aguilar
2013 Nov 06
1
Re: virConnectListAllDomains support for PowerVM
I'm writing Go bindings, I was just wondering about PowerVM, maybe further ahead if nobody has done it I could give it a try. So, Does it mean the other functions more granular funtions are going to be deprecated at some point? On Tue, Nov 5, 2013 at 10:18 PM, Daniel P. Berrange <berrange@redhat.com>wrote: > On Tue, Nov 05, 2013 at 07:44:47PM -0500, Camilo Aguilar wrote: > >
2013 Nov 06
0
Re: virConnectListAllDomains support for PowerVM
On Tue, Nov 05, 2013 at 07:44:47PM -0500, Camilo Aguilar wrote: > Hey guys, > > I'm so glad you added the new set of virConnectListAllDomains functions, it > simplifies a lot our work!. I was only wondering why there is no support > for PowerVM. Is it that it hasn't been developed or is there some technical > hardship? I believe it was probably just an oversight - our
2012 Jun 25
0
facter 1.6.9 patches for aix/powervm detection
greetings folks. wanted to have aix detect if it was under powervm using facter. came up with this hack for facter 1.6.9 which work for vscsi and npiv enabled vm''s under powervm (so far)... havent checked the dev facter so something may be in a different branch already for facter on this topic... -- You received this message because you are subscribed to the Google Groups
2016 Jul 06
2
[PATCH v2 2/4] powerpc/spinlock: support vcpu preempted check
Cc Paolo, kvm ml 2016-07-06 12:58 GMT+08:00 xinhui <xinhui.pan at linux.vnet.ibm.com>: > Hi, wanpeng > > On 2016?07?05? 17:57, Wanpeng Li wrote: >> >> Hi Xinhui, >> 2016-06-28 22:43 GMT+08:00 Pan Xinhui <xinhui.pan at linux.vnet.ibm.com>: >>> >>> This is to fix some lock holder preemption issues. Some other locks >>> implementation
2016 Jul 06
2
[PATCH v2 2/4] powerpc/spinlock: support vcpu preempted check
Cc Paolo, kvm ml 2016-07-06 12:58 GMT+08:00 xinhui <xinhui.pan at linux.vnet.ibm.com>: > Hi, wanpeng > > On 2016?07?05? 17:57, Wanpeng Li wrote: >> >> Hi Xinhui, >> 2016-06-28 22:43 GMT+08:00 Pan Xinhui <xinhui.pan at linux.vnet.ibm.com>: >>> >>> This is to fix some lock holder preemption issues. Some other locks >>> implementation
2013 May 28
0
Re: libvirt for Citrix XenServer
________________________________ From: Prasad [prasad@mukhedkar.com] Sent: Tuesday, May 28, 2013 7:33 PM To: Parakkal, Navin S Subject: Re: [libvirt-users] libvirt for Citrix XenServer On 05/27/2013 12:13 PM, Parakkal, Navin S wrote: Hi, Can someone send me the build steps how to build for Citrix XenServer ? I want to build a version of libvirt for Citrix XenServer. Regards, Navin
2011 Sep 07
1
How to dedicate a NIC for VM traffic without assigning it an IP
I am testing out a new server with RHEL6 running KVM. We have a few NICs on the server, one of which we would like to dedicate to network traffic to/from the virtual guests. Is it possible to do this without assigning an IP address to the NIC? We're currently doing something like this with Vmware Server, HP's HPVM for HP-UX/IA, and IBM's PowerVM for AIX. -- albert chin (china at
2016 Jul 06
1
[PATCH v2 2/4] powerpc/spinlock: support vcpu preempted check
2016-07-06 15:58 GMT+08:00 Peter Zijlstra <peterz at infradead.org>: > On Wed, Jul 06, 2016 at 02:46:34PM +0800, Wanpeng Li wrote: >> > SO it's easy for ppc to implement such interface. Note that yield_count is >> > set by powerVM/KVM. >> > and only pSeries can run a guest for now. :) >> > >> > I also review x86 related code, looks like we
2016 Jul 06
1
[PATCH v2 2/4] powerpc/spinlock: support vcpu preempted check
2016-07-06 15:58 GMT+08:00 Peter Zijlstra <peterz at infradead.org>: > On Wed, Jul 06, 2016 at 02:46:34PM +0800, Wanpeng Li wrote: >> > SO it's easy for ppc to implement such interface. Note that yield_count is >> > set by powerVM/KVM. >> > and only pSeries can run a guest for now. :) >> > >> > I also review x86 related code, looks like we
2016 May 25
10
[PATCH v3 0/6] powerpc use pv-qpsinlock as the default spinlock implemention
change from v2: __spin_yeild_cpu() will yield slices to lpar if target cpu is running. remove unnecessary rmb() in __spin_yield/wake_cpu. __pv_wait() will check the *ptr == val. some commit message change change fome v1: separate into 6 pathes from one patch some minor code changes. I do several tests on pseries IBM,8408-E8E with 32cpus, 64GB memory. benchmark test results are below. 2
2016 May 25
10
[PATCH v3 0/6] powerpc use pv-qpsinlock as the default spinlock implemention
change from v2: __spin_yeild_cpu() will yield slices to lpar if target cpu is running. remove unnecessary rmb() in __spin_yield/wake_cpu. __pv_wait() will check the *ptr == val. some commit message change change fome v1: separate into 6 pathes from one patch some minor code changes. I do several tests on pseries IBM,8408-E8E with 32cpus, 64GB memory. benchmark test results are below. 2
2016 Jun 02
9
[PATCH v5 0/6] powerPC/pSeries use pv-qpsinlock as the default spinlock implemention
change from v4: BUG FIX. thanks boqun reporting this issue. struct __qspinlock has different layout in bigendian mahcine. native_queued_spin_unlock() may write value to a wrong address. now fix it. sorry for not even doing a test on bigendian machine before!!! change from v3: a big change in [PATCH v4 4/6] pv-qspinlock: powerpc support pv-qspinlock no other patch changed. and the patch
2016 Jun 02
9
[PATCH v5 0/6] powerPC/pSeries use pv-qpsinlock as the default spinlock implemention
change from v4: BUG FIX. thanks boqun reporting this issue. struct __qspinlock has different layout in bigendian mahcine. native_queued_spin_unlock() may write value to a wrong address. now fix it. sorry for not even doing a test on bigendian machine before!!! change from v3: a big change in [PATCH v4 4/6] pv-qspinlock: powerpc support pv-qspinlock no other patch changed. and the patch
2014 Jun 05
3
Cannot obtain CPU freq during vbox machine creation
Dear libvirt experts, I can not instantiate even a simple machine when using the 'vbox' hypervisor: s14% virt-install --connect=vbox:///session --virt-type vbox --name vtest --memory 500 ERROR cannot obtain CPU freq: No such file or directory s14% virsh -c vbox:///session błąd: cannot obtain CPU freq: No such file or directory (1) How to fix this error? The VirtualBox driver seems
2016 Jul 05
2
[PATCH v2 2/4] powerpc/spinlock: support vcpu preempted check
Hi Xinhui, 2016-06-28 22:43 GMT+08:00 Pan Xinhui <xinhui.pan at linux.vnet.ibm.com>: > This is to fix some lock holder preemption issues. Some other locks > implementation do a spin loop before acquiring the lock itself. Currently > kernel has an interface of bool vcpu_is_preempted(int cpu). It take the cpu > as parameter and return true if the cpu is preempted. Then kernel can
2016 Jul 05
2
[PATCH v2 2/4] powerpc/spinlock: support vcpu preempted check
Hi Xinhui, 2016-06-28 22:43 GMT+08:00 Pan Xinhui <xinhui.pan at linux.vnet.ibm.com>: > This is to fix some lock holder preemption issues. Some other locks > implementation do a spin loop before acquiring the lock itself. Currently > kernel has an interface of bool vcpu_is_preempted(int cpu). It take the cpu > as parameter and return true if the cpu is preempted. Then kernel can
2019 Nov 21
2
Fail to build upstream libvirt on rhel8
Hello, A compilation failure happened when I tried building libvirt latest code on rhel8 Version: gcc-8.3.1-4.5.el8.x86_64 libvirt v5.9.0-352-g5e939cea89 Steps: 1. Clone libvirt source code 2. Create build dir, and run autogen.sh # cd libvirt # mkdir build && cd build # ../autogen.sh --build=x86_64-redhat-linux-gnu --host=x86_64-redhat-linux-gnu --program-prefix=
2010 Sep 17
3
access VMX config on esxi with virsh
Hi, Is virsh able to access the VMX config of a virtual machine running on a esxi host? I would like to take backups of my virtual machine configs and the doku section "Converting from VMware VMX config to domain XML config" (http://libvirt.org/drvesx.html) comes close to this - but does not tell how to get access to the vmx file. I would prefer a solution where ssh access to the
2013 Mar 12
1
RHEL 5 libvirt client - QEMU+SSH fails with "login authentication type 2" problem
Hi, I have RHEL5 libvirt client compiled at ${BSPACE}/usrcisco This client when connecting to a libvirtd/server fails to connect as follows -bash-3.2$ ${BSPACE}/usrcisco/bin/virsh -c qemu+ssh://sarvi at cnh-nehalem-1/system?socket=/var//run/libvirt/libvirt-sock error: failed to connect to the hypervisor error: authentication failed: unsupported authentication type 2 I have the libvirt