Skip to content

Commit 4d39b27

Browse files
committed
oshmem/shmem: move warn if segment inside data region to verbose level
Signed-off-by: Thomas Vegas <[email protected]> (cherry picked from commit 1eabd28)
1 parent 546e5f9 commit 4d39b27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

oshmem/mca/memheap/base/memheap_base_static.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ int mca_memheap_base_static_init(mca_memheap_map_t *map)
5555
#ifdef __linux__
5656
extern unsigned _end;
5757
if (mca_sshmem_base_start_address < (uintptr_t)&_end) {
58-
MEMHEAP_WARN("sshmem base start address is inside data region"
59-
" (%p < %p)", mca_sshmem_base_start_address, &_end);
58+
MEMHEAP_VERBOSE(1, "sshmem base start address is inside data region"
59+
" (%p < %p)", mca_sshmem_base_start_address, &_end);
6060
}
6161
#endif
6262

0 commit comments

Comments
 (0)