[libvirt] [PATCH 07/16] hyperv: implement ability to send xml soap requests

2016-08-09 Thread Jason Miesionczek
also added ability to get/set auto start --- src/hyperv/hyperv_driver.c | 101 +++ src/hyperv/hyperv_wmi.c| 670 - src/hyperv/hyperv_wmi.h| 58 src/hyperv/openwsman.h | 4 + 4 files changed, 827 insertions(+), 6 deletions(-)

[libvirt] [PATCH 15/16] hyperv: network list functions

2016-08-09 Thread Jason Miesionczek
--- src/hyperv/hyperv_network_driver.c | 156 + 1 file changed, 156 insertions(+) diff --git a/src/hyperv/hyperv_network_driver.c b/src/hyperv/hyperv_network_driver.c index 00037ae..68f03e5 100644 --- a/src/hyperv/hyperv_network_driver.c +++

[libvirt] [PATCH 09/16] hyperv: add domain shutdown function

2016-08-09 Thread Jason Miesionczek
--- src/hyperv/hyperv_driver.c | 35 +++ 1 file changed, 35 insertions(+) diff --git a/src/hyperv/hyperv_driver.c b/src/hyperv/hyperv_driver.c index 4c094e7..2623916 100644 --- a/src/hyperv/hyperv_driver.c +++ b/src/hyperv/hyperv_driver.c @@ -1704,6 +1704,39 @@

[libvirt] [PATCH 02/16] hyperv: add cim types support to code generator

2016-08-09 Thread Jason Miesionczek
--- src/hyperv/hyperv_wmi_generator.py | 57 -- 1 file changed, 54 insertions(+), 3 deletions(-) diff --git a/src/hyperv/hyperv_wmi_generator.py b/src/hyperv/hyperv_wmi_generator.py index f767d54..8384634 100755 --- a/src/hyperv/hyperv_wmi_generator.py +++

[libvirt] [PATCH 05/16] hyperv: implement vcpu functions

2016-08-09 Thread Jason Miesionczek
--- src/hyperv/hyperv_driver.c | 176 + 1 file changed, 176 insertions(+) diff --git a/src/hyperv/hyperv_driver.c b/src/hyperv/hyperv_driver.c index b2d1abf..7d956d3 100644 --- a/src/hyperv/hyperv_driver.c +++ b/src/hyperv/hyperv_driver.c @@ -1401,6

[libvirt] [PATCH 03/16] hyperv: add get capabilities

2016-08-09 Thread Jason Miesionczek
--- src/hyperv/hyperv_driver.c | 106 +++- src/hyperv/hyperv_private.h | 2 + 2 files changed, 107 insertions(+), 1 deletion(-) diff --git a/src/hyperv/hyperv_driver.c b/src/hyperv/hyperv_driver.c index b642a02..4a5e80d 100644 ---

[libvirt] [PATCH 10/16] hyperv: add get scheduler functions

2016-08-09 Thread Jason Miesionczek
--- src/hyperv/hyperv_driver.c | 127 + 1 file changed, 127 insertions(+) diff --git a/src/hyperv/hyperv_driver.c b/src/hyperv/hyperv_driver.c index 2623916..348b39c 100644 --- a/src/hyperv/hyperv_driver.c +++ b/src/hyperv/hyperv_driver.c @@ -1737,6

[libvirt] [PATCH 16/16] hyperv: introduce 2012 support

2016-08-09 Thread Jason Miesionczek
--- src/Makefile.am | 1 + src/hyperv/hyperv_driver.c| 62 ++- src/hyperv/hyperv_driver_2012.c | 299 ++ src/hyperv/hyperv_driver_2012.h | 55 +++ src/hyperv/hyperv_private.h | 4 +

[libvirt] [PATCH 11/16] hyperv: add set memory functions

2016-08-09 Thread Jason Miesionczek
--- src/hyperv/hyperv_driver.c | 232 src/hyperv/hyperv_private.h | 2 + 2 files changed, 234 insertions(+) diff --git a/src/hyperv/hyperv_driver.c b/src/hyperv/hyperv_driver.c index 348b39c..daae371 100644 --- a/src/hyperv/hyperv_driver.c +++

[libvirt] [PATCH 00/16] Hyper-V: Improve 2008, Introduce 2012

2016-08-09 Thread Jason Miesionczek
to suggestions on how to do this better. Jason Miesionczek (16): hyperv: additional server 2008 wmi classes hyperv: add cim types support to code generator hyperv: add get capabilities hyperv: implement connectGetVersion hyperv: implement vcpu functions hyperv: implement nodeGetFreeMemory

[libvirt] [PATCH 01/16] hyperv: additional server 2008 wmi classes

2016-08-09 Thread Jason Miesionczek
--- src/hyperv/hyperv_wmi_generator.input | 485 ++ 1 file changed, 485 insertions(+) diff --git a/src/hyperv/hyperv_wmi_generator.input b/src/hyperv/hyperv_wmi_generator.input index 97f9dff..28a5bdc 100644 --- a/src/hyperv/hyperv_wmi_generator.input +++

[libvirt] [PATCH 06/16] hyperv: implement nodeGetFreeMemory

2016-08-09 Thread Jason Miesionczek
--- src/hyperv/hyperv_driver.c | 32 1 file changed, 32 insertions(+) diff --git a/src/hyperv/hyperv_driver.c b/src/hyperv/hyperv_driver.c index 7d956d3..861d5ab 100644 --- a/src/hyperv/hyperv_driver.c +++ b/src/hyperv/hyperv_driver.c @@ -1573,6 +1573,37 @@

[libvirt] [PATCH 13/16] hyperv: domain undefine functions

2016-08-09 Thread Jason Miesionczek
--- src/hyperv/hyperv_driver.c | 72 ++ 1 file changed, 72 insertions(+) diff --git a/src/hyperv/hyperv_driver.c b/src/hyperv/hyperv_driver.c index db59ce1..bd028ed 100644 --- a/src/hyperv/hyperv_driver.c +++ b/src/hyperv/hyperv_driver.c @@ -2205,6

[libvirt] [PATCH 08/16] hyperv: introduce basic network driver

2016-08-09 Thread Jason Miesionczek
--- src/Makefile.am| 1 + src/hyperv/hyperv_driver.c | 2 + src/hyperv/hyperv_network_driver.c | 124 + src/hyperv/hyperv_network_driver.h | 30 + src/hyperv/hyperv_wmi.c| 39

[libvirt] [PATCH 04/16] hyperv: implement connectGetVersion

2016-08-09 Thread Jason Miesionczek
--- src/hyperv/hyperv_driver.c | 52 ++ 1 file changed, 52 insertions(+) diff --git a/src/hyperv/hyperv_driver.c b/src/hyperv/hyperv_driver.c index 4a5e80d..b2d1abf 100644 --- a/src/hyperv/hyperv_driver.c +++ b/src/hyperv/hyperv_driver.c @@ -1349,6

[libvirt] [PATCH 14/16] hyperv: domain define and associated functions

2016-08-09 Thread Jason Miesionczek
--- src/hyperv/hyperv_driver.c | 807 + 1 file changed, 807 insertions(+) diff --git a/src/hyperv/hyperv_driver.c b/src/hyperv/hyperv_driver.c index bd028ed..716fadb 100644 --- a/src/hyperv/hyperv_driver.c +++ b/src/hyperv/hyperv_driver.c @@ -2275,6

[libvirt] [PATCH 12/16] hyperv: set vpcu functions

2016-08-09 Thread Jason Miesionczek
--- src/hyperv/hyperv_driver.c | 117 + 1 file changed, 117 insertions(+) diff --git a/src/hyperv/hyperv_driver.c b/src/hyperv/hyperv_driver.c index daae371..db59ce1 100644 --- a/src/hyperv/hyperv_driver.c +++ b/src/hyperv/hyperv_driver.c @@ -2090,6

Re: [libvirt] [PATCH 01/16] hyperv: additional server 2008 wmi classes

2016-08-09 Thread Jason Miesionczek
It doesn’t exist in the SOAP response > On Aug 9, 2016, at 11:33 AM, Neal Gompa <ngomp...@gmail.com> wrote: > > On Tue, Aug 9, 2016 at 8:39 AM, Jason Miesionczek > <jmiesionc...@datto.com> wrote: > >> +class Win32_OperatingSystem >> + string Boo

Re: [libvirt] [PATCH 00/16] Hyper-V: Improve 2008, Introduce 2012

2016-09-16 Thread Jason Miesionczek
Thank you very much for your review and your excellent suggestions. I will revisit the code, clean things up as best I can and submit much smaller patches that can be reviewed and merged one at a time. Thanks again! Best, Jason Miesionczek > On Sep 15, 2016, at 5:56 PM, John Ferlan &l

[libvirt] [PATCH v2a] HyperV: Improve 2008, introduce 2012

2016-09-16 Thread Jason Miesionczek
Second round of patches based on recently complete code review. Going to submit patches in much smaller chunks, starting with this one. Future patches will be submitted as each previous patch is reviewed and merged. Jason Miesionczek (1): hyperv: add new WMI classes and improve generator src

[libvirt] [PATCH] hyperv: add new WMI classes and improve generator

2016-09-16 Thread Jason Miesionczek
--- src/hyperv/hyperv_wmi_generator.input | 485 ++ src/hyperv/hyperv_wmi_generator.py| 57 +++- 2 files changed, 539 insertions(+), 3 deletions(-) diff --git a/src/hyperv/hyperv_wmi_generator.input b/src/hyperv/hyperv_wmi_generator.input index

Re: [libvirt] [PATCH v2a] HyperV: Improve 2008, introduce 2012

2016-09-16 Thread Jason Miesionczek
il.com> > wrote: > > 2016-09-16 18:35 GMT+02:00 Jason Miesionczek <jmiesionc...@datto.com>: >> Second round of patches based on recently complete code review. Going >> to submit patches in much smaller chunks, starting with this one. Future >> patches will be su

[libvirt] connecting to qemu domain monitor socket outside of libvirt/virsh

2016-12-20 Thread Jason Miesionczek
Hi, So I see that when i have a qemu vm running, that i created via libvirt, there is a socket here: /var/lib/libvirt/qemu/domain-/monitor.sock I am trying to connect to this socket via cli or a completely separate C/C++ application to be able to control the VM, but I can't seem to get it to