bsd-user: replace fprintf(stderr, ...) with error_report()
Replace fprintf(stderr,...) with error_report() in files bsd-user/*. The trailing "\n"s of the @fmt argument have been removed because @fmt of error_report() should not contain newline. Signed-off-by: Le Tan <tamlokveer@gmail.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
69e995040c
commit
1fba509527
@ -183,7 +183,7 @@ int loader_exec(const char * filename, char ** argv, char ** envp,
|
|||||||
&& bprm.buf[3] == 'F') {
|
&& bprm.buf[3] == 'F') {
|
||||||
retval = load_elf_binary(&bprm,regs,infop);
|
retval = load_elf_binary(&bprm,regs,infop);
|
||||||
} else {
|
} else {
|
||||||
fprintf(stderr, "Unknown binary format\n");
|
error_report("Unknown binary format");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -628,7 +628,7 @@ static abi_ulong copy_elf_strings(int argc,char ** argv, void **page,
|
|||||||
while (argc-- > 0) {
|
while (argc-- > 0) {
|
||||||
tmp = argv[argc];
|
tmp = argv[argc];
|
||||||
if (!tmp) {
|
if (!tmp) {
|
||||||
fprintf(stderr, "VFS: argc is wrong");
|
error_report("VFS: argc is wrong");
|
||||||
exit(-1);
|
exit(-1);
|
||||||
}
|
}
|
||||||
tmp1 = tmp;
|
tmp1 = tmp;
|
||||||
|
@ -378,8 +378,8 @@ void cpu_loop(CPUX86State *env)
|
|||||||
#endif
|
#endif
|
||||||
default:
|
default:
|
||||||
pc = env->segs[R_CS].base + env->eip;
|
pc = env->segs[R_CS].base + env->eip;
|
||||||
fprintf(stderr, "qemu: 0x%08lx: unhandled CPU exception 0x%x - aborting\n",
|
error_report("qemu: 0x%08lx: unhandled CPU exception 0x%x"
|
||||||
(long)pc, trapnr);
|
" - aborting", (long)pc, trapnr);
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
process_pending_signals(env);
|
process_pending_signals(env);
|
||||||
@ -752,7 +752,7 @@ int main(int argc, char **argv)
|
|||||||
module_call_init(MODULE_INIT_QOM);
|
module_call_init(MODULE_INIT_QOM);
|
||||||
|
|
||||||
if ((envlist = envlist_create()) == NULL) {
|
if ((envlist = envlist_create()) == NULL) {
|
||||||
(void) fprintf(stderr, "Unable to allocate envlist\n");
|
error_report("Unable to allocate envlist");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -794,7 +794,7 @@ int main(int argc, char **argv)
|
|||||||
} else if (!strcmp(r, "ignore-environment")) {
|
} else if (!strcmp(r, "ignore-environment")) {
|
||||||
envlist_free(envlist);
|
envlist_free(envlist);
|
||||||
if ((envlist = envlist_create()) == NULL) {
|
if ((envlist = envlist_create()) == NULL) {
|
||||||
(void) fprintf(stderr, "Unable to allocate envlist\n");
|
error_report("Unable to allocate envlist");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
} else if (!strcmp(r, "U")) {
|
} else if (!strcmp(r, "U")) {
|
||||||
@ -816,7 +816,7 @@ int main(int argc, char **argv)
|
|||||||
qemu_host_page_size = atoi(argv[optind++]);
|
qemu_host_page_size = atoi(argv[optind++]);
|
||||||
if (qemu_host_page_size == 0 ||
|
if (qemu_host_page_size == 0 ||
|
||||||
(qemu_host_page_size & (qemu_host_page_size - 1)) != 0) {
|
(qemu_host_page_size & (qemu_host_page_size - 1)) != 0) {
|
||||||
fprintf(stderr, "page size must be a power of two\n");
|
error_report("page size must be a power of two");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
} else if (!strcmp(r, "g")) {
|
} else if (!strcmp(r, "g")) {
|
||||||
@ -910,7 +910,7 @@ int main(int argc, char **argv)
|
|||||||
qemu_host_page_size */
|
qemu_host_page_size */
|
||||||
env = cpu_init(cpu_model);
|
env = cpu_init(cpu_model);
|
||||||
if (!env) {
|
if (!env) {
|
||||||
fprintf(stderr, "Unable to find CPU definition\n");
|
error_report("Unable to find CPU definition");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
cpu = ENV_GET_CPU(env);
|
cpu = ENV_GET_CPU(env);
|
||||||
@ -1012,7 +1012,7 @@ int main(int argc, char **argv)
|
|||||||
#ifndef TARGET_ABI32
|
#ifndef TARGET_ABI32
|
||||||
/* enable 64 bit mode if possible */
|
/* enable 64 bit mode if possible */
|
||||||
if (!(env->features[FEAT_8000_0001_EDX] & CPUID_EXT2_LM)) {
|
if (!(env->features[FEAT_8000_0001_EDX] & CPUID_EXT2_LM)) {
|
||||||
fprintf(stderr, "The selected x86 CPU does not support 64 bit mode\n");
|
error_report("The selected x86 CPU does not support 64 bit mode");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
env->cr[4] |= CR4_PAE_MASK;
|
env->cr[4] |= CR4_PAE_MASK;
|
||||||
|
Loading…
Reference in New Issue
Block a user