[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 08/17] bsd-user: Eliminate unused qemu_uname_release
|
From: |
Warner Losh |
|
Subject: |
[PATCH 08/17] bsd-user: Eliminate unused qemu_uname_release |
|
Date: |
Fri, 2 Aug 2024 17:56:08 -0600 |
bsd-user has never supported this, and FreeBSD make it easy to set this
on a per-jail basis, so that the normal reporting routines that we pass
through just work. Since this was never used, and never even in the
usage(), retire it to cut down on the clutter. It was literally just a
write-only variable.
Signed-off-by: Warner Losh <imp@bsdimp.com>
---
bsd-user/main.c | 3 ---
bsd-user/qemu.h | 1 -
2 files changed, 4 deletions(-)
diff --git a/bsd-user/main.c b/bsd-user/main.c
index 709ab10ddc1..8c52fb43ff1 100644
--- a/bsd-user/main.c
+++ b/bsd-user/main.c
@@ -92,7 +92,6 @@ static const char *cpu_type;
unsigned long reserved_va;
const char *interp_prefix = CONFIG_QEMU_INTERP_PREFIX;
-const char *qemu_uname_release;
unsigned long target_maxtsiz = TARGET_MAXTSIZ; /* max text size */
unsigned long target_dfldsiz = TARGET_DFLDSIZ; /* initial data size limit */
@@ -390,8 +389,6 @@ int main(int argc, char **argv)
interp_prefix = argv[optind++];
} else if (!strcmp(r, "g")) {
gdbstub = g_strdup(argv[optind++]);
- } else if (!strcmp(r, "r")) {
- qemu_uname_release = argv[optind++];
} else if (!strcmp(r, "cpu")) {
cpu_model = argv[optind++];
if (is_help_option(cpu_model)) {
diff --git a/bsd-user/qemu.h b/bsd-user/qemu.h
index b97a902a4c2..ed6044cfdaf 100644
--- a/bsd-user/qemu.h
+++ b/bsd-user/qemu.h
@@ -122,7 +122,6 @@ struct TaskState {
void init_task_state(TaskState *ts);
void stop_all_tasks(void);
extern const char *interp_prefix;
-extern const char *qemu_uname_release;
/*
* TARGET_ARG_MAX defines the number of bytes allocated for arguments
--
2.45.1
- [PATCH 04/17] bsd-user: Implement cpu_copy(), (continued)
- [PATCH 04/17] bsd-user: Implement cpu_copy(), Warner Losh, 2024/08/02
- [PATCH 05/17] bsd-user: Eliminate unused regs arg in load_elf_binary, Warner Losh, 2024/08/02
- [PATCH 12/17] bsd-user: Use guest_range_valid_untagged to validate range, Warner Losh, 2024/08/02
- [PATCH 03/17] bsd-user: Make cpu_model and cpu_type file scope, Warner Losh, 2024/08/02
- [PATCH 07/17] bsd-user: Remove deprecated -p argument, Warner Losh, 2024/08/02
- [PATCH 08/17] bsd-user: Eliminate unused qemu_uname_release,
Warner Losh <=
- [PATCH 06/17] bsd-user: Remove load_flt_binary prototype, Warner Losh, 2024/08/02
- [PATCH 11/17] bsd-user: Replace set_brk and padzero with zerobss from linux-user, Warner Losh, 2024/08/02
- [PATCH 13/17] bsd-user: target_mprotect: rename prot to target_prot, Warner Losh, 2024/08/02
- [PATCH 09/17] bsd-user: target_msync unused, remove it, Warner Losh, 2024/08/02
- [PATCH 16/17] bsd-user: Define validate_prot_to_pageflags and use in mprotect, Warner Losh, 2024/08/02