Re: virsh migrate fails when --copy-storage-all option is given!

2025-06-23 Thread Anushree Mathur
: 2) Started the migration and it worked. Could anyone please clarify from libvirt side what is the change required? Thanks, Anushree-Mathur On 04/06/25 6:57 PM, Peter Krempa wrote: On Wed, Jun 04, 2025 at 14:41:54 +0200, Kevin Wolf wrote: Am 28.05.2025 um 17:34 hat

Re: CPU hotplug crashed the guest when using virt-type as qemu!

2025-06-23 Thread Anushree Mathur
Hi Richard, Any updates on this issue? Would really appreciate your inputs here. Thanks in advance! Regards, Anushree-Mathur On 28/05/25 7:04 PM, Anushree Mathur wrote: Hi all, I have reported this issue on gitlab at https://gitlab.com/qemu-project/qemu/-/issues/2984. Steps to reproduce

virsh migrate fails when --copy-storage-all option is given!

2025-05-28 Thread Anushree Mathur
;: {   "no-flush": false,   "direct": false,   "writeback": true     },     "file": "/home/Anu/guest_anu.qcow2"       },       "qdev": "/machine/peripheral/virtio-disk0/virtio-backend",   "type": "unknown"     }   ],   "id": "libvirt-26" } 3) Guest doesn't have any readonly virsh dumpxml guest1 | grep readonly 4) Tried giving the proper permissions also -rwxrwxrwx. 1 qemu qemu 4.9G Apr 28 15:06 guest_anu.qcow2 5) Checked for the permission of the pool also that is also proper! 6) Found 1 older bug similar to this, pasting the link for reference: https://patchwork.kernel.org/project/qemu-devel/patch/20170811164854.GG4162@localhost.localdomain/ Thanks, Anushree-Mathur

CPU hotplug crashed the guest when using virt-type as qemu!

2025-05-28 Thread Anushree Mathur
below: static bool tcg_region_alloc__locked(TCGContext *s) {     if (region.current == region.n) {     return true;     }     tcg_region_assign(s, region.current);     region.current++;     return false; } Thanks, Anushree-Mathur

[PATCH] ui/gtk-egl.c: fix build break

2024-05-15 Thread Anushree Mathur
Qemu build is failing due to an unused variable. Removing it to fix the build break. Signed-off-by: Anushree Mathur --- ui/gtk-egl.c | 1 - 1 file changed, 1 deletion(-) diff --git a/ui/gtk-egl.c b/ui/gtk-egl.c index 0473f689c9..3177992b91 100644 --- a/ui/gtk-egl.c +++ b/ui/gtk-egl.c @@ -70,7

Re: [PATCH] tcg/ppc: Fix race in goto_tb implementation

2023-07-17 Thread Anushree Mathur
nce. Gitlab issue: https://gitlab.com/qemu-project/qemu/-/issues/1726 Fixes: 20b6643324 ("tcg/ppc: Reorg goto_tb implementation") Reported-by: Anushree Mathur Co-developed-by: Benjamin Gray Signed-off-by: Jordan Niethe I tested with -smp 2/4/8/16 and it works fine with all. Tested-by:

Re: qemu-system-ppc64 option -smp 2 broken with commit 20b6643324a79860dcdfe811ffe4a79942bca21e

2023-07-12 Thread Anushree Mathur
Hi Alex, On 6/23/23 20:52, Alex Bennée wrote: Cédric Le Goater writes: Hello Anushree, On 6/23/23 13:09, Anushree Mathur wrote: Hi everyone, I was trying to boot rhel9.3 image with upstream qemu-system-ppc64 -smp 2 option and observed a segfault (qemu crash). qemu command line used: qemu

Re: [PATCH 0/4] target/ppc: Fixes for instruction-related

2023-06-27 Thread Anushree Mathur
& Regards, Anushree-Mathur

Re: qemu-system-ppc64 option -smp 2 broken with commit 20b6643324a79860dcdfe811ffe4a79942bca21e

2023-06-25 Thread Anushree Mathur
On 6/23/23 19:16, Cédric Le Goater wrote: Hello Anushree, On 6/23/23 13:09, Anushree Mathur wrote: Hi everyone, I was trying to boot rhel9.3 image with upstream qemu-system-ppc64 -smp 2 option and observed a segfault (qemu crash). qemu command line used: qemu-system-ppc64 -name Rhel9.3

qemu-system-ppc64 option -smp 2 broken with commit 20b6643324a79860dcdfe811ffe4a79942bca21e

2023-06-23 Thread Anushree Mathur
issue? Thanks in advance. Regards, Anushree-Mathur

Re: [PATCH v4 1/6] target/ppc: Fix instruction loading endianness in alignment interrupt

2023-06-16 Thread Anushree Mathur
On 6/15/23 08:21, Nicholas Piggin wrote: On Wed Jun 14, 2023 at 3:51 PM AEST, Anushree Mathur wrote: On 5/30/23 18:55, Nicholas Piggin wrote: powerpc ifetch endianness depends on MSR[LE] so it has to byteswap after cpu_ldl_code(). This corrects DSISR bits in alignment interrupts when running

Re: [PATCH v4 1/6] target/ppc: Fix instruction loading endianness in alignment interrupt

2023-06-13 Thread Anushree Mathur
On 5/30/23 18:55, Nicholas Piggin wrote: powerpc ifetch endianness depends on MSR[LE] so it has to byteswap after cpu_ldl_code(). This corrects DSISR bits in alignment interrupts when running in little endian mode. Reviewed-by: Fabiano Rosas Signed-off-by: Nicholas Piggin --- target/ppc/excp_

Re: [PATCH v2 3/6] target/ppc: Fix instruction loading endianness in alignment interrupt

2023-05-23 Thread Anushree Mathur
env, env->nip); switch (env->mmu_model) { case POWERPC_MMU_SOFT_4xx: Thanks Anushree Mathur