Skip to content

Commit

Permalink
oshmem/shmem: move warn if segment inside data region to verbose level
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Vegas <[email protected]>
  • Loading branch information
tvegas1 committed Oct 29, 2024
1 parent c393881 commit c6a8a13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions oshmem/mca/memheap/base/memheap_base_static.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ int mca_memheap_base_static_init(mca_memheap_map_t *map)
#ifdef __linux__
extern unsigned _end;
if (mca_sshmem_base_start_address < (uintptr_t)&_end) {
MEMHEAP_WARN("sshmem base start address is inside data region"
" (%p < %p)", mca_sshmem_base_start_address, &_end);
MEMHEAP_VERBOSE(1, "sshmem base start address is inside data region"
" (%p < %p)", mca_sshmem_base_start_address, &_end);
}
#endif

Expand Down

0 comments on commit c6a8a13

Please sign in to comment.