[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen staging] libxl: gentypes.py: Break out field_pass in ..._copy_deprecated
commit dde31350cbeae417903d3a6b3259d21fff34eb8b Author: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> AuthorDate: Tue Oct 29 15:17:58 2019 +0000 Commit: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> CommitDate: Tue Nov 19 16:33:56 2019 +0000 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 <ian.jackson@xxxxxxxxxxxxx> Release-acked-by: Juergen Gross <jgross@xxxxxxxx> Acked-by: Anthony PERARD <anthony.perard@xxxxxxxxxx> --- tools/libxl/gentypes.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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, -- generated by git-patchbot for /home/xen/git/xen.git#staging _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |