[PATCH 2/3] qga/win/vss: query VSS backup type

2023-02-09 Thread Kfir Manor
return default VSS backup type VSS_BT_FULL instead Signed-off-by: Kfir Manor --- qga/vss-win32/requester.cpp | 38 + qga/vss-win32/vss-handles.h | 3 +++ 2 files changed, 41 insertions(+) diff --git a/qga/vss-win32/requester.cpp b/qga/vss-win32/requester.cpp

[PATCH 3/3] qga/win/vss: requester_freeze changes

2023-02-09 Thread Kfir Manor
Change requester_freeze so that the VSS backup type queried from the registry Signed-off-by: Kfir Manor --- qga/vss-win32/requester.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qga/vss-win32/requester.cpp b/qga/vss-win32/requester.cpp index 27fdb9236b..163b3870b9

[PATCH 0/3] qga/win/vss: add VSS backup type options

2023-02-09 Thread Kfir Manor
own backup type. Kfir Manor (3): add VssOption to installer query VSS backup type requester_freeze changes qga/installer/qemu-ga.wxs | 4 qga/vss-win32/requester.cpp | 41 - qga/vss-win32/vss-handles.h | 3 +++ 3 files changed, 47 insertions(+),

[PATCH 1/3] qga/win/installer: add VssOption to installer

2023-02-09 Thread Kfir Manor
Adds registry value VssOption with value 1 to QEMU Guest Agent VSS Provider service registry key Signed-off-by: Kfir Manor --- qga/installer/qemu-ga.wxs | 4 1 file changed, 4 insertions(+) diff --git a/qga/installer/qemu-ga.wxs b/qga/installer/qemu-ga.wxs index 51340f7ecc..f7f145aa05

[PATCH v2] qga/linux: add usb support to guest-get-fsinfo

2023-01-23 Thread Kfir Manor
Signed-off-by: Kfir Manor --- qga/commands-posix.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/qga/commands-posix.c b/qga/commands-posix.c index ebd33a643c..aab9d3bd50 100644 --- a/qga/commands-posix.c +++ b/qga/commands-posix.c @@ -880,7 +880,9 @@ static bool

[PATCH] qga/linux: add usb support to guest-get-fsinfo

2023-01-23 Thread Kfir Manor
Signed-off-by: Kfir Manor --- qga/commands-posix.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/qga/commands-posix.c b/qga/commands-posix.c index ebd33a643c..aab9d3bd50 100644 --- a/qga/commands-posix.c +++ b/qga/commands-posix.c @@ -880,7 +880,9 @@ static bool

[PATCH] qga/linux: add usb support to guest-get-fsinfo

2023-01-22 Thread Kfir Manor
--- qga/commands-posix.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/qga/commands-posix.c b/qga/commands-posix.c index ebd33a643c..aab9d3bd50 100644 --- a/qga/commands-posix.c +++ b/qga/commands-posix.c @@ -880,7 +880,9 @@ static bool build_guest_fsinfo_for_pci_dev(cha

[PATCH 1/2] qga:/qga-win: adding a empty PCI address creation function

2022-11-20 Thread Kfir Manor
Refactoring code to avoid duplication of creating an empty PCI address code. Signed-off-by: Kfir Manor --- qga/commands-win32.c | 20 +--- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/qga/commands-win32.c b/qga/commands-win32.c index ec9f55b453..a645480496

[PATCH 0/2] qemu-ga-win: 'guest-get-fsinfo' command wont query storage devices of bus type USB

2022-11-20 Thread Kfir Manor
info (get_pci_info function) for USB disks (as USB disk doesn't have PCI info), and return an empty PCI address instead to keep with schema. Kfir Manor (2): adding a empty PCI address creation function skip getting pci info for USB disks qga/commands-wi

[PATCH 2/2] qga:/qga-win: skip getting pci info for USB disks

2022-11-20 Thread Kfir Manor
Skip getting PCI info from disks type USB and give them an empty PCI address instead. Signed-off-by: Kfir Manor --- qga/commands-win32.c | 12 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/qga/commands-win32.c b/qga/commands-win32.c index a645480496..14c43b3de5