DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] mem: fix infinite loop
@ 2025-04-02 12:42 Dengdui Huang
  2025-04-02 21:16 ` Dmitry Kozlyuk
  2025-04-03  2:57 ` [PATCH v2] " Dengdui Huang
  0 siblings, 2 replies; 4+ messages in thread
From: Dengdui Huang @ 2025-04-02 12:42 UTC (permalink / raw)
  To: dev
  Cc: fengchengwen, lihuisong, haijie1, liuyonglong, roretzla,
	anatoly.burakov, stephen, mb

When the process address space is insufficient,
mmap will fail, which will cause an infinite loop.
This pathc fix it.

Fixes: c4b89ecb64ea ("eal: introduce memory management wrappers")
Cc: stable@dpdk.org

Signed-off-by: Dengdui Huang <huangdengdui@huawei.com>
---
 lib/eal/common/eal_common_memory.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/lib/eal/common/eal_common_memory.c b/lib/eal/common/eal_common_memory.c
index a185e0b580..0c997201bd 100644
--- a/lib/eal/common/eal_common_memory.c
+++ b/lib/eal/common/eal_common_memory.c
@@ -101,8 +101,12 @@ eal_get_virtual_area(void *requested_addr, size_t *size,
 
 		mapped_addr = eal_mem_reserve(
 			requested_addr, (size_t)map_sz, reserve_flags);
-		if ((mapped_addr == NULL) && allow_shrink)
-			*size -= page_sz;
+		if (mapped_addr == NULL) {
+			if (allow_shrink)
+				*size -= page_sz;
+			else
+				break;
+		}
 
 		if ((mapped_addr != NULL) && addr_is_hint &&
 				(mapped_addr != requested_addr)) {
-- 
2.33.0


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-04-03  2:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-04-02 12:42 [PATCH] mem: fix infinite loop Dengdui Huang
2025-04-02 21:16 ` Dmitry Kozlyuk
2025-04-03  1:25   ` huangdengdui
2025-04-03  2:57 ` [PATCH v2] " Dengdui Huang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).