[PATCH 1/5] ch: pass virCHDriver to chDomainAttachDeviceLice

Stefan Kober posted 5 patches 3 weeks ago
[PATCH 1/5] ch: pass virCHDriver to chDomainAttachDeviceLice
Posted by Stefan Kober 3 weeks ago
On-behalf-of: SAP stefan.kober@sap.com
Signed-off-by: Stefan Kober <stefan.kober@cyberus-technology.de>
---
 src/ch/ch_hotplug.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/ch/ch_hotplug.c b/src/ch/ch_hotplug.c
index b953fe4c6c..902eab839b 100644
--- a/src/ch/ch_hotplug.c
+++ b/src/ch/ch_hotplug.c
@@ -18,9 +18,11 @@
 
 #include <config.h>
 
-#include "ch_hotplug.h"
 #include "ch_alias.h"
 #include "ch_domain.h"
+#include "ch_hotplug.h"
+#include "ch_process.h"
+
 #include "domain_event.h"
 #include "domain_validate.h"
 #include "virlog.h"
-- 
2.51.0
Re: [PATCH 1/5] ch: pass virCHDriver to chDomainAttachDeviceLice
Posted by Michal Prívozník via Devel 2 weeks, 4 days ago
On 10/6/25 17:18, Stefan Kober wrote:
> On-behalf-of: SAP stefan.kober@sap.com
> Signed-off-by: Stefan Kober <stefan.kober@cyberus-technology.de>
> ---
>  src/ch/ch_hotplug.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/src/ch/ch_hotplug.c b/src/ch/ch_hotplug.c
> index b953fe4c6c..902eab839b 100644
> --- a/src/ch/ch_hotplug.c
> +++ b/src/ch/ch_hotplug.c
> @@ -18,9 +18,11 @@
>  
>  #include <config.h>
>  
> -#include "ch_hotplug.h"
>  #include "ch_alias.h"
>  #include "ch_domain.h"
> +#include "ch_hotplug.h"
> +#include "ch_process.h"
> +
>  #include "domain_event.h"
>  #include "domain_validate.h"
>  #include "virlog.h"

This doesn't pass anything.

Michal