mbox series

[0/5] tools: address Coverity UNUSED issues

Message ID 2dc50b58-a4e4-3e32-1876-94412b14b052@suse.com (mailing list archive)
Headers show
Series tools: address Coverity UNUSED issues | expand

Message

Jan Beulich June 12, 2023, 11:43 a.m. UTC
There a number of cases where Coverity has spotted writes to variables
when the written values wouldn't be used subsequently. The patches here
are independent of one another, except for this common theme.

1: xen-mfndump: drop dead assignment to "page" from lookup_pte_func()
2: libxl: drop dead assignments to "ret" from libxl__domain_config_setdefault()
3: libxg: drop dead assignment to "ptes" from xc_core_arch_map_p2m_list_rw()
4: libxg: drop dead assignment to "rc" from xc_cpuid_apply_policy()
5: libxl: drop dead assignment to transaction variable from libxl__domain_make()

Jan