[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 23/43] bsd-user: define max args in terms of pages
|
From: |
imp |
|
Subject: |
[PATCH v2 23/43] bsd-user: define max args in terms of pages |
|
Date: |
Thu, 26 Aug 2021 15:11:41 -0600 |
From: Warner Losh <imp@FreeBSD.org>
For 32-bit platforms, pass in up to 256k of args. For 64-bit, bump that
to 512k.
Signed-off-by: Kyle Evans <kevans@freebsd.org>
Signed-off-by: Warner Losh <imp@bsdimp.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
---
bsd-user/qemu.h | 15 +++++++++++----
1 file changed, 11 insertions(+), 4 deletions(-)
diff --git a/bsd-user/qemu.h b/bsd-user/qemu.h
index 55d71130bb..fea1a167e4 100644
--- a/bsd-user/qemu.h
+++ b/bsd-user/qemu.h
@@ -20,6 +20,7 @@
#include "qemu/osdep.h"
#include "cpu.h"
+#include "qemu/units.h"
#include "exec/cpu_ldst.h"
#include "exec/exec-all.h"
@@ -101,11 +102,17 @@ extern const char *qemu_uname_release;
extern unsigned long mmap_min_addr;
/*
- * MAX_ARG_PAGES defines the number of pages allocated for arguments
- * and envelope for the new program. 32 should suffice, this gives
- * a maximum env+arg of 128kB w/4KB pages!
+ * TARGET_ARG_MAX defines the number of bytes allocated for arguments
+ * and envelope for the new program. 256k should suffice for a reasonable
+ * maxiumum env+arg in 32-bit environments, bump it up to 512k for !ILP32
+ * platforms.
*/
-#define MAX_ARG_PAGES 32
+#if TARGET_ABI_BITS > 32
+#define TARGET_ARG_MAX (512 * KiB)
+#else
+#define TARGET_ARG_MAX (256 * KiB)
+#endif
+#define MAX_ARG_PAGES (TARGET_ARG_MAX / TARGET_PAGE_SIZE)
/*
* This structure is used to hold the arguments that are
--
2.32.0
- [PATCH v2 30/43] bsd-user: Remove dead #ifdefs from elfload.c, (continued)
- [PATCH v2 30/43] bsd-user: Remove dead #ifdefs from elfload.c, imp, 2021/08/26
- [PATCH v2 36/43] bsd-user: add stubbed out core dump support, imp, 2021/08/26
- [PATCH v2 38/43] bsd-user: Refactor load_elf_sections and is_target_elf_binary, imp, 2021/08/26
- [PATCH v2 42/43] bsd-user: Add '-0 argv0' option to bsd-user/main.c, imp, 2021/08/26
- [PATCH v2 37/43] bsd-user: elfload.c style catch up patch, imp, 2021/08/26
- [PATCH v2 41/43] bsd-user: Implement cpu_copy() helper routine, imp, 2021/08/26
- [PATCH v2 35/43] bsd-user: Add target_os_user.h to capture the user/kernel structures, imp, 2021/08/26
- [PATCH v2 23/43] bsd-user: define max args in terms of pages,
imp <=
- [PATCH v2 40/43] bsd-user: Implement interlock for atomic operations, imp, 2021/08/26
- [PATCH v2 43/43] bsd-user: Update mapping to handle reserved and starting conditions, imp, 2021/08/26