qemu-trivial
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v1 00/59] trivial unneeded labels cleanup


From: Eric Blake
Subject: Re: [PATCH v1 00/59] trivial unneeded labels cleanup
Date: Fri, 10 Jan 2020 13:05:39 -0600
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.3.1

On 1/6/20 12:23 PM, Daniel Henrique Barboza wrote:
Hello,

This is the type of cleanup I've contributed to Libvirt
during the last year. Figured QEMU also deserves the same
care.

The idea here is remove unneeded labels. By 'unneeded' I
mean labels that does nothing but a 'return' call. One
common case is something like this:

if ()
     goto cleanup;
[...]
  cleanup:
     return 0;

This code can be simplified to:

if ()
     return 0;



How much of this work is done manually, and how much via Coccinelle?


  qga/commands-win32.c          | 17 ++++---
  target/mips/mips-semi.c       | 15 +++---
  target/unicore32/softmmu.c    | 23 +++-------
  util/aio-posix.c              |  3 +-
  util/module.c                 | 11 ++---

Hmm, no change to scripts/coccinelle, so presumably all manual :(

If we have a Coccinelle script that performs this transformation, we are more likely to be able to catch all places in the tree that would benefit (rather than relying on grep calls or other manual inspection), and more importantly, we can repeat the effort periodically to fix future additions that don't comply with the preferred style as well as backport the patch by rerunning the Coccinelle script with less worry of changed context. Automated cleanups are always going to be easier to swallow (even if the diffstat is larger) than manual ad hoc cleanups.

--
Eric Blake, Principal Software Engineer
Red Hat, Inc.           +1-919-301-3226
Virtualization:  qemu.org | libvirt.org




reply via email to

[Prev in Thread] Current Thread [Next in Thread]