qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 1/2] linux-user: elfload: s/min_mmap_addr/mmap_min_addr/


From: Andrew Jeffery
Subject: [PATCH 1/2] linux-user: elfload: s/min_mmap_addr/mmap_min_addr/
Date: Mon, 27 Mar 2023 22:25:23 +1030

As-is the error message can cause some confusion as the mentioned sysctl
attribute name is wrong:

https://www.kernel.org/doc/html/latest/admin-guide/sysctl/vm.html#mmap-min-addr

Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
---
 linux-user/elfload.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/linux-user/elfload.c b/linux-user/elfload.c
index 1dbc1f0f9baa..601b156b476b 100644
--- a/linux-user/elfload.c
+++ b/linux-user/elfload.c
@@ -2771,7 +2771,7 @@ static void pgb_reserved_va(const char *image_name, 
abi_ulong guest_loaddr,
     if (addr == MAP_FAILED || addr != test) {
         error_report("Unable to reserve 0x%lx bytes of virtual address "
                      "space at %p (%s) for use as guest address space (check 
your "
-                     "virtual memory ulimit setting, min_mmap_addr or reserve 
less "
+                     "virtual memory ulimit setting, mmap_min_addr or reserve 
less "
                      "using -R option)", reserved_va, test, strerror(errno));
         exit(EXIT_FAILURE);
     }
-- 
2.39.2




reply via email to

[Prev in Thread] Current Thread [Next in Thread]