help regarding gsoc 2023

2023-02-24 Thread Kshitiz Mhto
hello, i am 1st year student with good understanding of C programming along with pythan and java. i would love to contribute to project "libvirt" and interested in gsoc 2023 regardung the project [Metadata support for all object schemas -- Suggested by: Daniel Berrange]. could anyone help on this?

Re: [PATCH v2] Deprecate the "-no-acpi" command line switch

2023-02-24 Thread Igor Mammedov
On Fri, 24 Feb 2023 10:05:43 +0100 Thomas Huth wrote: > Similar to "-no-hpet", the "-no-acpi" switch is a legacy command > line option that should be replaced with the "acpi" machine parameter > nowadays. > > Signed-off-by: Thomas Huth Reviewed-by: Igor Mammedov > --- > v2: Fixed stypid

Re: [PATCH v2] Deprecate the "-no-acpi" command line switch

2023-02-24 Thread Philippe Mathieu-Daudé
On 24/2/23 10:05, Thomas Huth wrote: Similar to "-no-hpet", the "-no-acpi" switch is a legacy command line option that should be replaced with the "acpi" machine parameter nowadays. Signed-off-by: Thomas Huth --- v2: Fixed stypid copy-n-paste bug (Thanks to Sunil for spotting it!)

[PATCH 2/3] virsh: Add migrate options to set parallel compress level

2023-02-24 Thread Jiang Jiacheng
Add migrate options: --compression-zlib-level --compression-zstd-level These options are used to set compress level for "zlib" or "zstd" during parallel migration if the compress method is specified. Signed-off-by: Jiang Jiacheng --- docs/manpages/virsh.rst | 29

[PATCH V3 0/3] migration: add qemu parallel migration options

2023-02-24 Thread Jiang Jiacheng
Add compress method zlib and zstd for parallel migration and new migration options to set qemu's parameter related with parallel migration(multifd-compression, multifd-zlib-level and multifd-zstd-level). These parameters has been supported by QEMU since 5.0. v3 of:

[PATCH 3/3] qemu: support set parallel migration compression method

2023-02-24 Thread Jiang Jiacheng
Add new compress methods zlib and zstd for parallel migration, these method should be used with migration option --comp-methods and will be processed in 'qemuMigrationParamsSetCompression'. Note that only one compress method could be chosen for parallel migration and they cann't be used in

[PATCH 1/3] Add public API for parallel compression method

2023-02-24 Thread Jiang Jiacheng
Add description for VIR_MIGRATE_PARAM_COMPRESSION, it will be reused in choosing compression method during parallel migration. Add public API VIR_MIGRATE_PARAM_COMPRESSION_ZLIB_LEVEL, VIR_MIGRATE_PARAM_COMPRESSION_ZSTD_LEVEL for migration APIs to support set compress level during parallel

Re: [PATCH v2] Deprecate the "-no-acpi" command line switch

2023-02-24 Thread Peter Krempa
On Fri, Feb 24, 2023 at 10:05:43 +0100, Thomas Huth wrote: > Similar to "-no-hpet", the "-no-acpi" switch is a legacy command > line option that should be replaced with the "acpi" machine parameter > nowadays. > > Signed-off-by: Thomas Huth > --- > v2: Fixed stypid copy-n-paste bug (Thanks to

[PATCH v2] Deprecate the "-no-acpi" command line switch

2023-02-24 Thread Thomas Huth
Similar to "-no-hpet", the "-no-acpi" switch is a legacy command line option that should be replaced with the "acpi" machine parameter nowadays. Signed-off-by: Thomas Huth --- v2: Fixed stypid copy-n-paste bug (Thanks to Sunil for spotting it!) docs/about/deprecated.rst | 6 ++

Re: [PATCH] Deprecate the "-no-acpi" command line switch

2023-02-24 Thread Thomas Huth
On 24/02/2023 09.20, Sunil V L wrote: On Fri, Feb 24, 2023 at 08:59:41AM +0100, Thomas Huth wrote: On 24/02/2023 08.56, Sunil V L wrote: On Fri, Feb 24, 2023 at 08:34:41AM +0100, Thomas Huth wrote: Similar to "-no-hpet", the "-no-acpi" switch is a legacy command line option that should be

Re: [PATCH] Deprecate the "-no-acpi" command line switch

2023-02-24 Thread Thomas Huth
On 24/02/2023 08.56, Sunil V L wrote: On Fri, Feb 24, 2023 at 08:34:41AM +0100, Thomas Huth wrote: Similar to "-no-hpet", the "-no-acpi" switch is a legacy command line option that should be replaced with the "acpi" machine parameter nowadays. Signed-off-by: Thomas Huth ---