Skip to content
This repository was archived by the owner on Sep 30, 2022. It is now read-only.

rcache/grdma: fix typo in cuda code #1200

Merged
merged 1 commit into from
May 31, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion opal/mca/mpool/grdma/mpool_grdma_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ static int check_for_cuda_freed_memory(mca_mpool_base_module_t *mpool, void *add
/* This memory has been freed. Find all registrations and delete. Ensure they are deregistered
* now by passing dereg_mem as the delete function. This is safe because the rcache lock is
* recursive and this is only called from register. */
return mpool->rcache->rcache_iterate (mpool->rcache, base, size, gc_add, NULL);
return mpool->rcache->rcache_iterate (mpool->rcache, addr, size, gc_add, NULL);
}
#endif /* OPAL_CUDA_GDR_SUPPORT */

Expand Down