hw/xen*: Replace fprintf(stderr, "*\n" with error_report()
Replace a large number of the fprintf(stderr, "*\n" calls with
error_report(). The functions were renamed with these commands and then
compiler issues where manually fixed.
find ./* -type f -exec sed -i \
    'N;N;N;N;N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N;N;N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
Some lines where then manually tweaked to pass checkpatch.
xen_pt_log() was left with an fprintf(stderr,
Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
Cc: Stefano Stabellini <sstabellini@kernel.org>
Cc: Anthony Perard <anthony.perard@citrix.com>
Conversions that aren't followed by exit() dropped, because they might
be inappropriate.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20180203084315.20497-13-armbru@redhat.com>
			
			
This commit is contained in:
		
							parent
							
								
									29bd723171
								
							
						
					
					
						commit
						47d17c0ac3
					
				| 
						 | 
				
			
			@ -9,6 +9,7 @@
 | 
			
		|||
 */
 | 
			
		||||
 | 
			
		||||
#include "qemu/osdep.h"
 | 
			
		||||
#include "qemu/error-report.h"
 | 
			
		||||
#include "hw/xen/xen_backend.h"
 | 
			
		||||
#include "qmp-commands.h"
 | 
			
		||||
#include "chardev/char.h"
 | 
			
		||||
| 
						 | 
				
			
			@ -96,13 +97,13 @@ static void xenstore_record_dm_state(struct xs_handle *xs, const char *state)
 | 
			
		|||
    char path[50];
 | 
			
		||||
 | 
			
		||||
    if (xs == NULL) {
 | 
			
		||||
        fprintf(stderr, "xenstore connection not initialized\n");
 | 
			
		||||
        error_report("xenstore connection not initialized");
 | 
			
		||||
        exit(1);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    snprintf(path, sizeof (path), "device-model/%u/state", xen_domid);
 | 
			
		||||
    if (!xs_write(xs, XBT_NULL, path, state, strlen(state))) {
 | 
			
		||||
        fprintf(stderr, "error recording dm state\n");
 | 
			
		||||
        error_report("error recording dm state");
 | 
			
		||||
        exit(1);
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -23,6 +23,7 @@
 | 
			
		|||
 */
 | 
			
		||||
 | 
			
		||||
#include "qemu/osdep.h"
 | 
			
		||||
#include "qemu/error-report.h"
 | 
			
		||||
#include "hw/hw.h"
 | 
			
		||||
#include "hw/boards.h"
 | 
			
		||||
#include "hw/xen/xen_backend.h"
 | 
			
		||||
| 
						 | 
				
			
			@ -36,7 +37,7 @@ static void xen_init_pv(MachineState *machine)
 | 
			
		|||
 | 
			
		||||
    /* Initialize backend core & drivers */
 | 
			
		||||
    if (xen_be_init() != 0) {
 | 
			
		||||
        fprintf(stderr, "%s: xen backend core setup failed\n", __func__);
 | 
			
		||||
        error_report("%s: xen backend core setup failed", __func__);
 | 
			
		||||
        exit(1);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -51,18 +52,18 @@ static void xen_init_pv(MachineState *machine)
 | 
			
		|||
        const char *initrd_filename = machine->initrd_filename;
 | 
			
		||||
        if (xen_domain_build_pv(kernel_filename, initrd_filename,
 | 
			
		||||
                                kernel_cmdline) < 0) {
 | 
			
		||||
            fprintf(stderr, "xen pv domain creation failed\n");
 | 
			
		||||
            error_report("xen pv domain creation failed");
 | 
			
		||||
            exit(1);
 | 
			
		||||
        }
 | 
			
		||||
        break;
 | 
			
		||||
    }
 | 
			
		||||
#endif
 | 
			
		||||
    case XEN_EMULATE:
 | 
			
		||||
        fprintf(stderr, "xen emulation not implemented (yet)\n");
 | 
			
		||||
        error_report("xen emulation not implemented (yet)");
 | 
			
		||||
        exit(1);
 | 
			
		||||
        break;
 | 
			
		||||
    default:
 | 
			
		||||
        fprintf(stderr, "unhandled xen_mode %d\n", xen_mode);
 | 
			
		||||
        error_report("unhandled xen_mode %d", xen_mode);
 | 
			
		||||
        exit(1);
 | 
			
		||||
        break;
 | 
			
		||||
    }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue