From: Ian Jackson Date: Tue, 29 Oct 2019 15:17:58 +0000 (+0000) Subject: libxl: gentypes.py: Break out field_pass in ..._copy_deprecated X-Git-Tag: 4.13.0-rc3~14 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=dde31350cbeae417903d3a6b3259d21fff34eb8b;p=xen.git libxl: gentypes.py: Break out field_pass in ..._copy_deprecated We are going to want this in a moment. No functional change with existing types: C output is identical. Signed-off-by: Ian Jackson Release-acked-by: Juergen Gross Acked-by: Anthony PERARD --- diff --git a/tools/libxl/gentypes.py b/tools/libxl/gentypes.py index 1769121468..62883acb2e 100644 --- a/tools/libxl/gentypes.py +++ b/tools/libxl/gentypes.py @@ -287,10 +287,10 @@ def libxl_C_type_copy_deprecated(field, v, indent = " ", vparent = None): if field.type.check_default_fn is None: raise Exception( "Deprecated field %s type doesn't have a default value checker" % field.name) - field_val = field.type.pass_arg(v, vparent is None, - passby=idl.PASS_BY_VALUE) - field_ptr = field.type.pass_arg(v, vparent is None, - passby=idl.PASS_BY_REFERENCE) + field_pass = lambda by: field.type.pass_arg(v, vparent is None, + passby=by) + field_val = field_pass(idl.PASS_BY_VALUE) + field_ptr = field_pass(idl.PASS_BY_REFERENCE) s+= "if (!%s(&p->%s) && !%s(%s))\n" % (field.type.check_default_fn, field.deprecated_by, field.type.check_default_fn,