Empty Go strings should be converted to `nil` libxl_cpuid_policy_list;
otherwise libxl_cpuid_parse_config gets confused.
Also, libxl_cpuid_policy_list returns a weird error, not a "normal"
libxl error; if it returns one of these non-standard errors, convert
it to ErrorInval.
Finally, make the fromC() method take a pointer, and set the value of
CpuidPolicyList such that it will generate a valid CpuidPolicyList in
response.
Signed-off-by: George Dunlap <george.dunlap@citrix.com>
Reviewed-by: Nick Rosbrook <rosbrookn@ainfosec.com>
// empty when it is returned from libxl.
type CpuidPolicyList string
-func (cpl CpuidPolicyList) fromC(ccpl *C.libxl_cpuid_policy_list) error { return nil }
+func (cpl *CpuidPolicyList) fromC(ccpl *C.libxl_cpuid_policy_list) error { *cpl = ""; return nil }
func (cpl CpuidPolicyList) toC(ccpl *C.libxl_cpuid_policy_list) error {
+ if cpl == "" {
+ *ccpl = nil
+ return nil
+ }
+
s := C.CString(string(cpl))
defer C.free(unsafe.Pointer(s))
if ret != 0 {
C.libxl_cpuid_dispose(ccpl)
- return Error(-ret)
+ // libxl_cpuid_parse_config doesn't return a normal libxl error.
+ return ErrorInval
}
return nil