Re: [PATCH] vfio, migration: save device parent pci config

2025-07-16 Thread Huaitong Han
Cédric Le Goater 于2025年7月15日周二 14:25写道: > > On 7/14/25 04:37, Huaitong Han wrote: > > Hi, mst, clg > > > > Any comments? > > > Since this seems to be a GIC issue on the aarch64 virt platform, you > should cc: the virt-arm people for more insights. > > Al

Re: [PATCH] vfio, migration: save device parent pci config

2025-07-13 Thread Huaitong Han
Hi, mst, clg Any comments? Thanks. Huaitong Han Michael Tokarev 于2025年7月13日周日 17:12写道: > > Ping? Has this been forgotten? > > Thanks, > > /mjt > > On 05.06.2025 11:33, oen...@gmail.com wrote: > > From: Huguanshen Chen > > > > On arm64 virtualizat

Re: [PATCH V2] vhost: Don't set vring call if guest notifier is unused

2025-05-21 Thread Huaitong Han
rsion, I’ll go ahead and send v3 based on it. Thanks. Huaitong Han Stefano Garzarella 于2025年5月20日周二 20:53写道: > > On Tue, May 20, 2025 at 08:30:39PM +0800, Huaitong Han wrote: > >Stefano Garzarella 于2025年5月20日周二 19:41写道: > >> > >> On Tue, May 13, 2025 at 07:28:25PM +0800

Re: [PATCH V2] vhost: Don't set vring call if guest notifier is unused

2025-05-20 Thread Huaitong Han
Stefano Garzarella 于2025年5月20日周二 19:41写道: > > On Tue, May 13, 2025 at 07:28:25PM +0800, oen...@gmail.com wrote: > >From: Huaitong Han > > > >The vring call fd is set even when the guest does not use MSI-X (e.g., in the > >case of virtio PMD), leading to unnecessa

Re: [PATCH V2] vhost: Don't set vring call if guest notifier is unused

2025-05-16 Thread Huaitong Han
Stefano Garzarella 于2025年5月16日周五 16:19写道: > > On Tue, May 13, 2025 at 07:28:25PM +0800, oen...@gmail.com wrote: > >From: Huaitong Han > > > >The vring call fd is set even when the guest does not use MSI-X (e.g., in the > >case of virtio PMD), leading to unnecessa

Re: [PATCH] vhost: Don't set vring call if guest notifier is unused

2025-04-07 Thread Huaitong Han
Stefano Garzarella 于2025年4月1日周二 18:49写道: > > On Wed, Mar 26, 2025 at 04:25:37PM +0800, oen...@gmail.com wrote: > >From: Huaitong Han > > > >The vring call fd is set even when the guest does not use msix (e.g., in the > >case of virtio pmd), leading to unnecessa

[Qemu-devel] [PATCH v3 3/3] target-i386: add pkeys support for vm migration

2015-11-17 Thread Huaitong Han
This patch adds pkeys support for vm migration. Signed-off-by: Huaitong Han diff --git a/target-i386/machine.c b/target-i386/machine.c index a0df64b..1b190c7 100644 --- a/target-i386/machine.c +++ b/target-i386/machine.c @@ -725,6 +725,26 @@ static const VMStateDescription vmstate_xss

[Qemu-devel] [PATCH v3 0/3] target-i386: add memory protection-key support

2015-11-17 Thread Huaitong Han
, the offset is 0xa80. The specification of Protection Keys can be found at SDM (4.6.2, volume 3) http://www.intel.com/content/dam/www/public/us/en/documents/manuals/64-ia-32-architectures-software-developer-manual-325462.pdf. Huaitong Han (3): target-i386: add pkeys support for cpuid handling

[Qemu-devel] [PATCH v3 2/3] target-i386: add pkeys support for xsave state handling

2015-11-17 Thread Huaitong Han
This patch adds pkeys support for xsave state handling. Signed-off-by: Huaitong Han diff --git a/target-i386/cpu.c b/target-i386/cpu.c index 3c11e02..456cb3b 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -487,6 +487,8 @@ static const ExtSaveArea ext_save_areas

[Qemu-devel] [PATCH v3 1/3] target-i386: add pkeys support for cpuid handling

2015-11-17 Thread Huaitong Han
This patch adds pkeys support for cpuid handling. Signed-off-by: Huaitong Han diff --git a/target-i386/cpu.c b/target-i386/cpu.c index 4d1b085..3c11e02 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -264,6 +264,17 @@ static const char *cpuid_7_0_ebx_feature_name[] = { NULL, NULL

[Qemu-devel] [PATCH V2 2/3] target-i386: add pkeys support for xsave state handling

2015-11-16 Thread Huaitong Han
This patch adds pkeys support for xsave state handling. Signed-off-by: Huaitong Han diff --git a/target-i386/cpu.c b/target-i386/cpu.c index 2ff73ee..f65f785 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -487,6 +487,8 @@ static const ExtSaveArea ext_save_areas

[Qemu-devel] [PATCH V2 0/3] target-i386: add memory protection-key support

2015-11-16 Thread Huaitong Han
Keys can be found at SDM (4.6.2, volume 3) http://www.intel.com/content/dam/www/public/us/en/documents/manuals/64-ia-32-architectures-software-developer-manual-325462.pdf. Huaitong Han (3): target-i386: add pkeys support for cpuid handling target-i386: add pkeys support for xsave state handling

[Qemu-devel] [PATCH V2 3/3] target-i386: add pkeys support for vm migration

2015-11-16 Thread Huaitong Han
This patch adds pkeys support for vm migration. Signed-off-by: Huaitong Han diff --git a/target-i386/machine.c b/target-i386/machine.c index a0df64b..1b190c7 100644 --- a/target-i386/machine.c +++ b/target-i386/machine.c @@ -725,6 +725,26 @@ static const VMStateDescription vmstate_xss

[Qemu-devel] [PATCH V2 1/3] target-i386: add pkeys support for cpuid handling

2015-11-16 Thread Huaitong Han
This patch adds pkeys support for cpuid handling. Signed-off-by: Huaitong Han diff --git a/target-i386/cpu.c b/target-i386/cpu.c index 4d1b085..2ff73ee 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -264,6 +264,17 @@ static const char *cpuid_7_0_ebx_feature_name[] = { NULL, NULL

[Qemu-devel] [PATCH 2/3] qemu, pkeys: add pkeys support for qemu xsave state handling

2015-11-09 Thread Huaitong Han
This patch adds pkeys support for qemu xsave state handling. Signed-off-by: Huaitong Han --- target-i386/cpu.c | 2 ++ target-i386/cpu.h | 3 +++ target-i386/kvm.c | 3 +++ 3 files changed, 8 insertions(+) diff --git a/target-i386/cpu.c b/target-i386/cpu.c index 575ad8d..7a6a3f8 100644 --- a

[Qemu-devel] [PATCH 0/3] qemu, pkeys: add memory protection-key support

2015-11-09 Thread Huaitong Han
-ia-32-architectures-software-developer-manual-325462.pdf. Huaitong Han (3): qemu, pkeys: add pkeys support for qemu cpuid handling qemu, pkeys: add pkeys support for qemu xsave state handling qemu, pkeys: add pkeys support for qemu migration target-i386/cpu.c | 23

[Qemu-devel] [PATCH 1/3] qemu, pkeys: add pkeys support for qemu cpuid handling

2015-11-09 Thread Huaitong Han
This patch adds pkeys support for qemu cpuid handling. Signed-off-by: Huaitong Han --- target-i386/cpu.c | 21 - target-i386/cpu.h | 4 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/target-i386/cpu.c b/target-i386/cpu.c index 4d1b085..575ad8d 100644

[Qemu-devel] [PATCH 3/3] qemu, pkeys: add pkeys support for qemu migration

2015-11-09 Thread Huaitong Han
This patch adds pkeys support for qemu migration. Signed-off-by: Huaitong Han --- target-i386/machine.c | 23 +++ 1 file changed, 23 insertions(+) diff --git a/target-i386/machine.c b/target-i386/machine.c index a0df64b..1b190c7 100644 --- a/target-i386/machine.c +++ b