From 0da00e099d0836654950a9676844630e8d444c40 Mon Sep 17 00:00:00 2001 From: Mark Johnston Date: Tue, 22 Nov 2022 12:59:56 -0500 Subject: [PATCH 17/52] vm_map: Avoid a flag collision The Juniper-specific MAP_ENABLE_COREDUMP was colliding with the boundary mask flag. Redefine it to avoid the collision. No functional change intended. --- sys/vm/vm_map.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/vm/vm_map.h b/sys/vm/vm_map.h index 351d15097dd5..ecb6f4914e0e 100644 --- a/sys/vm/vm_map.h +++ b/sys/vm/vm_map.h @@ -383,7 +383,7 @@ long vmspace_resident_count(struct vmspace *vmspace); #define MAP_SPLIT_BOUNDARY_SHIFT 19 #ifdef JUNIPER_BUILD -#define MAP_ENABLE_COREDUMP 0x00080000 +#define MAP_ENABLE_COREDUMP 0x80000000 #endif /* -- 2.41.0