]> xenbits.xensource.com Git - people/hx242/xen.git/commitdiff
golang: Update generated files after libxl_types.idl change
authorGeorge Dunlap <george.dunlap@citrix.com>
Fri, 22 May 2020 09:35:10 +0000 (10:35 +0100)
committerGeorge Dunlap <george.dunlap@citrix.com>
Fri, 22 May 2020 09:35:10 +0000 (10:35 +0100)
c/s 7efd9f3d45 ("libxl: Handle Linux stubdomain specific QEMU
options.") modified libl_types.idl.  Run gengotypes.py again to update
the geneated golang bindings.

Signed-off-by: George Dunlap <george.dunlap@citrix.com>
Acked-by: Wei Liu <wl@xen.org>
tools/golang/xenlight/helpers.gen.go
tools/golang/xenlight/types.gen.go

index 109e9515a2551855a0aba0b31a5a52e518b2122e..b5bd0de8306e50eb7d81685a6ccd3259cd3890c0 100644 (file)
@@ -1163,6 +1163,9 @@ func (x *DomainBuildInfo) fromC(xc *C.libxl_domain_build_info) error {
        if err := x.DeviceModelStubdomain.fromC(&xc.device_model_stubdomain); err != nil {
                return fmt.Errorf("converting field DeviceModelStubdomain: %v", err)
        }
+       x.StubdomainMemkb = uint64(xc.stubdomain_memkb)
+       x.StubdomainKernel = C.GoString(xc.stubdomain_kernel)
+       x.StubdomainRamdisk = C.GoString(xc.stubdomain_ramdisk)
        x.DeviceModel = C.GoString(xc.device_model)
        x.DeviceModelSsidref = uint32(xc.device_model_ssidref)
        x.DeviceModelSsidLabel = C.GoString(xc.device_model_ssid_label)
@@ -1489,6 +1492,13 @@ func (x *DomainBuildInfo) toC(xc *C.libxl_domain_build_info) (err error) {
        if err := x.DeviceModelStubdomain.toC(&xc.device_model_stubdomain); err != nil {
                return fmt.Errorf("converting field DeviceModelStubdomain: %v", err)
        }
+       xc.stubdomain_memkb = C.uint64_t(x.StubdomainMemkb)
+       if x.StubdomainKernel != "" {
+               xc.stubdomain_kernel = C.CString(x.StubdomainKernel)
+       }
+       if x.StubdomainRamdisk != "" {
+               xc.stubdomain_ramdisk = C.CString(x.StubdomainRamdisk)
+       }
        if x.DeviceModel != "" {
                xc.device_model = C.CString(x.DeviceModel)
        }
index df68fd0e88999cc311a8c25c78f0b0d3368474c3..15516ae5527438e7455bfcf2e95201b753da8b9b 100644 (file)
@@ -509,6 +509,9 @@ type DomainBuildInfo struct {
        MaxMaptrackFrames     uint32
        DeviceModelVersion    DeviceModelVersion
        DeviceModelStubdomain Defbool
+       StubdomainMemkb       uint64
+       StubdomainKernel      string
+       StubdomainRamdisk     string
        DeviceModel           string
        DeviceModelSsidref    uint32
        DeviceModelSsidLabel  string