Shmem: use bitwise and instead of logical and to check for allocator capabilities
Signed-off-by: Joseph Schuchart <schuchart@hlrs.de>
Этот коммит содержится в:
родитель
8343a289f2
Коммит
9f2c6a42c3
@ -70,7 +70,7 @@ int mca_memheap_alloc_with_hint(size_t size, long hint, void** ptr)
|
||||
|
||||
for (i = 0; i < mca_memheap_base_map.n_segments; i++) {
|
||||
map_segment_t *s = &mca_memheap_base_map.mem_segs[i];
|
||||
if (s->allocator && (hint && s->alloc_hints)) {
|
||||
if (s->allocator && (hint & s->alloc_hints)) {
|
||||
/* Do not fall back to default allocator since it will break the
|
||||
* symmetry between PEs
|
||||
*/
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user