Displaying 5 results from an estimated 5 matches for "dplotnikov".
Did you mean:
plotnikov
2020 May 21
2
[PATCH] v2v: convert-windows: remove installation reference for prl_strg driver
There is an issue with removal of parallels disk paravirt driver.
Without the patch, the VM being migrated may not boot on the
desination with BSOD: 0x7b.
The patch is a workaround to prevent the BSOD.
Signed-off-by: Denis Plotnikov <dplotnikov@virtuozzo.com>
---
v2v/convert_windows.ml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/v2v/convert_windows.ml b/v2v/convert_windows.ml
index 4511c53c3..706202499 100644
--- a/v2v/convert_windows.ml
+++ b/v2v/convert_windows.ml
@@ -469,6 +469,8 @@ echo uninstalling Xen PV driver...
2019 Apr 15
1
[PATCH] daemon: drop error message check in do_part_expand_gpt
...warnings on stdout.
This blocks the use of part-expand-gpt on disk shrink (with disk
resize being the main usecase for part-expand-gpt), because sgdisk dry
run produces a warning in that case.
So remove the excessive safety check, and leave it up to the caller.
Signed-off-by: Denis Plotnikov <dplotnikov@virtuozzo.com>
Reviewed-by: Roman Kagan <rkagan@virtuozzo.com>
---
daemon/parted.c | 20 +-------------------
tests/gdisk/test-expand-gpt.pl | 24 +++++++++++++++++++++---
2 files changed, 22 insertions(+), 22 deletions(-)
diff --git a/daemon/parted.c b/daemon/parted.c
ind...
2020 Jul 24
3
[PATCH v2] v2v: fix UEFI bootloader for linux guests
...d a bootloader.
We can fix the guests which don't have such a fallback loader by providing
a temporary one. This bootloader is used for the first boot only, then the
conversion script restores the initial bootloader settings and removes the
temporary loader.
Signed-off-by: Denis Plotnikov <dplotnikov@virtuozzo.com>
---
v2v/convert_linux.ml | 123 ++++++++++++++++++++++++++++++++++++++
v2v/linux_bootloaders.ml | 7 +++
v2v/linux_bootloaders.mli | 4 ++
3 files changed, 134 insertions(+)
diff --git a/v2v/convert_linux.ml b/v2v/convert_linux.ml
index e91ae120f..045afa98b 100644
---...
2020 Aug 26
0
Re: [PATCH v2] v2v: fix UEFI bootloader for linux guests
A bit late but regarding '| "x86_32" -> Some "X32"',
Is "x86_32" actually a valid i_arch? I was under the impression that it is
being set to i386.
Thanks!
On Fri, Jul 24, 2020 at 6:20 PM Denis Plotnikov <dplotnikov@virtuozzo.com>
wrote:
>
>
> On 24.07.2020 17:20, Richard W.M. Jones wrote:
> > On Fri, Jul 24, 2020 at 03:36:58PM +0300, Denis Plotnikov wrote:
> >> v2:
> >> Rich, I hope I've done all modifications according to your comments,
> namely:
> >>...
2020 May 15
1
[PATCH] v2v: fix UEFI bootloader for linux guests
...d a bootloader.
We can fix the guests which don't have such a fallback loader by providing
a temporary one. This bootloader is used for the first boot only, then the
conversion script restores the initial bootloader settings and removes the
temporary loader.
Signed-off-by: Denis Plotnikov <dplotnikov@virtuozzo.com>
---
v2v/convert_linux.ml | 15 +++++
v2v/linux_bootloaders.ml | 149 ++++++++++++++++++++++++++++++++++++++++++++--
v2v/linux_bootloaders.mli | 2 +
3 files changed, 162 insertions(+), 4 deletions(-)
diff --git a/v2v/convert_linux.ml b/v2v/convert_linux.ml
index e91ae12...