Skip to content

Commit 1d45928

Browse files
committed
oshmem/shmem: move warn if segment inside data region to verbose level
Signed-off-by: Thomas Vegas <[email protected]>
1 parent b858b9f commit 1d45928

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
@@ -57,8 +57,8 @@ int mca_memheap_base_static_init(mca_memheap_map_t *map)
5757
#ifdef __linux__
5858
extern unsigned _end;
5959
if (mca_sshmem_base_start_address < (uintptr_t)&_end) {
60-
MEMHEAP_WARN("sshmem base start address is inside data region"
61-
" (%p < %p)", mca_sshmem_base_start_address, &_end);
60+
MEMHEAP_VERBOSE(1, "sshmem base start address is inside data region"
61+
" (%p < %p)", mca_sshmem_base_start_address, &_end);
6262
}
6363
#endif
6464

0 commit comments

Comments
 (0)