From patchwork Fri Sep 16 13:56:00 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Vivier X-Patchwork-Id: 670894 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3sbHSw2qvzz9s36 for ; Sat, 17 Sep 2016 00:18:40 +1000 (AEST) Received: from localhost ([::1]:41071 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bktvP-00021W-Cm for incoming@patchwork.ozlabs.org; Fri, 16 Sep 2016 10:15:31 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58979) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bkteT-00049T-Ga for qemu-devel@nongnu.org; Fri, 16 Sep 2016 09:58:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bkteN-0007hA-NN for qemu-devel@nongnu.org; Fri, 16 Sep 2016 09:58:01 -0400 Received: from mx1.redhat.com ([209.132.183.28]:56442) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bkteN-0007L0-Dx; Fri, 16 Sep 2016 09:57:55 -0400 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 7629C30C7D5; Fri, 16 Sep 2016 13:56:38 +0000 (UTC) Received: from thinkpad.redhat.com (ovpn-112-33.ams2.redhat.com [10.36.112.33]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u8GDuHkB024127; Fri, 16 Sep 2016 09:56:36 -0400 From: Laurent Vivier To: qemu-trivial@nongnu.org Date: Fri, 16 Sep 2016 15:56:00 +0200 Message-Id: <1474034177-17663-10-git-send-email-lvivier@redhat.com> In-Reply-To: <1474034177-17663-1-git-send-email-lvivier@redhat.com> References: <1474034177-17663-1-git-send-email-lvivier@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.27 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.29]); Fri, 16 Sep 2016 13:56:38 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH 09/26] qemu-user: use exit(EXIT_SUCCESS) and exit(EXIT_FAILURE) X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Laurent Vivier , Riku Voipio , qemu-devel@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" This patch is the result of coccinelle script scripts/coccinelle/exit.cocci Signed-off-by: Laurent Vivier CC: Riku Voipio Acked-by: Riku Voipio --- bsd-user/main.c | 20 ++++++++++---------- linux-user/main.c | 4 ++-- linux-user/syscall.c | 2 +- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/bsd-user/main.c b/bsd-user/main.c index 0fb08e4..e47e4d7 100644 --- a/bsd-user/main.c +++ b/bsd-user/main.c @@ -658,7 +658,7 @@ void cpu_loop(CPUSPARCState *env) #endif printf ("Unhandled trap: 0x%x\n", trapnr); cpu_dump_state(cs, stderr, fprintf, 0); - exit (1); + exit(EXIT_FAILURE); } process_pending_signals (env); } @@ -708,7 +708,7 @@ static void usage(void) TARGET_NAME, interp_prefix, x86_stack_size); - exit(1); + exit(EXIT_FAILURE); } THREAD CPUState *thread_cpu; @@ -752,7 +752,7 @@ int main(int argc, char **argv) if ((envlist = envlist_create()) == NULL) { (void) fprintf(stderr, "Unable to allocate envlist\n"); - exit(1); + exit(EXIT_FAILURE); } /* add current environment into the list */ @@ -793,7 +793,7 @@ int main(int argc, char **argv) envlist_free(envlist); if ((envlist = envlist_create()) == NULL) { (void) fprintf(stderr, "Unable to allocate envlist\n"); - exit(1); + exit(EXIT_FAILURE); } } else if (!strcmp(r, "U")) { r = argv[optind++]; @@ -815,7 +815,7 @@ int main(int argc, char **argv) if (qemu_host_page_size == 0 || (qemu_host_page_size & (qemu_host_page_size - 1)) != 0) { fprintf(stderr, "page size must be a power of two\n"); - exit(1); + exit(EXIT_FAILURE); } } else if (!strcmp(r, "g")) { gdbstub_port = atoi(argv[optind++]); @@ -828,7 +828,7 @@ int main(int argc, char **argv) #if defined(cpu_list) cpu_list(stdout, &fprintf); #endif - exit(1); + exit(EXIT_FAILURE); } } else if (!strcmp(r, "B")) { guest_base = strtol(argv[optind++], NULL, 0); @@ -867,7 +867,7 @@ int main(int argc, char **argv) mask = qemu_str_to_log_mask(log_mask); if (!mask) { qemu_print_log_usage(stdout); - exit(1); + exit(EXIT_FAILURE); } qemu_set_log(mask); } @@ -878,7 +878,7 @@ int main(int argc, char **argv) filename = argv[optind]; if (!trace_init_backends()) { - exit(1); + exit(EXIT_FAILURE); } trace_init_file(trace_file); @@ -914,7 +914,7 @@ int main(int argc, char **argv) cpu = cpu_init(cpu_model); if (!cpu) { fprintf(stderr, "Unable to find CPU definition\n"); - exit(1); + exit(EXIT_FAILURE); } env = cpu->env_ptr; #if defined(TARGET_SPARC) || defined(TARGET_PPC) @@ -1010,7 +1010,7 @@ int main(int argc, char **argv) /* enable 64 bit mode if possible */ if (!(env->features[FEAT_8000_0001_EDX] & CPUID_EXT2_LM)) { fprintf(stderr, "The selected x86 CPU does not support 64 bit mode\n"); - exit(1); + exit(EXIT_FAILURE); } env->cr[4] |= CR4_PAE_MASK; env->efer |= MSR_EFER_LMA | MSR_EFER_LME; diff --git a/linux-user/main.c b/linux-user/main.c index 3ad70f8..0ab5360 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -4243,7 +4243,7 @@ int main(int argc, char **argv, char **envp) optind = parse_args(argc, argv); if (!trace_init_backends()) { - exit(1); + exit(EXIT_FAILURE); } trace_init_file(trace_file); @@ -4700,7 +4700,7 @@ int main(int argc, char **argv, char **envp) if ((env->active_fpu.fcr31_rw_bitmask & (1 << FCR31_NAN2008)) == 0) { fprintf(stderr, "ELF binary's NaN mode not supported by CPU\n"); - exit(1); + exit(EXIT_FAILURE); } if ((info->elf_flags & EF_MIPS_NAN2008) != 0) { env->active_fpu.fcr31 |= (1 << FCR31_NAN2008); diff --git a/linux-user/syscall.c b/linux-user/syscall.c index ca06943..da1f581 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -6513,7 +6513,7 @@ void syscall_init(void) if (arg_type[0] != TYPE_PTR) { fprintf(stderr, "cannot patch size for ioctl 0x%x\n", ie->target_cmd); - exit(1); + exit(EXIT_FAILURE); } arg_type++; size = thunk_type_size(arg_type, 0);