• A
    Convert multi-line fprintf() to warn_report() · 8297be80
    Alistair Francis 提交于
    Convert all the multi-line uses of fprintf(stderr, "warning:"..."\n"...
    to use warn_report() instead. This helps standardise on a single
    method of printing warnings to the user.
    
    All of the warnings were changed using these commands:
      find ./* -type f -exec sed -i \
        'N; {s|fprintf(.*".*warning[,:] \(.*\)\\n"\(.*\));|warn_report("\1"\2);|Ig}' \
        {} +
      find ./* -type f -exec sed -i \
        'N;N; {s|fprintf(.*".*warning[,:] \(.*\)\\n"\(.*\));|warn_report("\1"\2);|Ig}' \
        {} +
      find ./* -type f -exec sed -i \
        'N;N;N; {s|fprintf(.*".*warning[,:] \(.*\)\\n"\(.*\));|warn_report("\1"\2);|Ig}' \
        {} +
      find ./* -type f -exec sed -i \
        'N;N;N;N {s|fprintf(.*".*warning[,:] \(.*\)\\n"\(.*\));|warn_report("\1"\2);|Ig}' \
        {} +
      find ./* -type f -exec sed -i \
        'N;N;N;N;N {s|fprintf(.*".*warning[,:] \(.*\)\\n"\(.*\));|warn_report("\1"\2);|Ig}' \
        {} +
      find ./* -type f -exec sed -i \
        'N;N;N;N;N;N {s|fprintf(.*".*warning[,:] \(.*\)\\n"\(.*\));|warn_report("\1"\2);|Ig}' \
        {} +
      find ./* -type f -exec sed -i \
        'N;N;N;N;N;N;N; {s|fprintf(.*".*warning[,:] \(.*\)\\n"\(.*\));|warn_report("\1"\2);|Ig}' \
        {} +
    
    Indentation fixed up manually afterwards.
    
    Some of the lines were manually edited to reduce the line length to below
    80 charecters. Some of the lines with newlines in the middle of the
    string were also manually edit to avoid checkpatch errrors.
    
    The #include lines were manually updated to allow the code to compile.
    
    Several of the warning messages can be improved after this patch, to
    keep this patch mechanical this has been moved into a later patch.
    Signed-off-by: NAlistair Francis <alistair.francis@xilinx.com>
    Cc: Paolo Bonzini <pbonzini@redhat.com>
    Cc: Kevin Wolf <kwolf@redhat.com>
    Cc: Max Reitz <mreitz@redhat.com>
    Cc: "Michael S. Tsirkin" <mst@redhat.com>
    Cc: Igor Mammedov <imammedo@redhat.com>
    Cc: Peter Maydell <peter.maydell@linaro.org>
    Cc: Stefano Stabellini <sstabellini@kernel.org>
    Cc: Anthony Perard <anthony.perard@citrix.com>
    Cc: Richard Henderson <rth@twiddle.net>
    Cc: Eduardo Habkost <ehabkost@redhat.com>
    Cc: Aurelien Jarno <aurelien@aurel32.net>
    Cc: Yongbok Kim <yongbok.kim@imgtec.com>
    Cc: Cornelia Huck <cohuck@redhat.com>
    Cc: Christian Borntraeger <borntraeger@de.ibm.com>
    Cc: Alexander Graf <agraf@suse.de>
    Cc: Jason Wang <jasowang@redhat.com>
    Cc: David Gibson <david@gibson.dropbear.id.au>
    Cc: Gerd Hoffmann <kraxel@redhat.com>
    Acked-by: NCornelia Huck <cohuck@redhat.com>
    Reviewed-by: NMarkus Armbruster <armbru@redhat.com>
    Message-Id: <5def63849ca8f551630c6f2b45bcb1c482f765a6.1505158760.git.alistair.francis@xilinx.com>
    Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
    8297be80
net.c 44.7 KB