diff options
author | Christian König <christian.koenig@amd.com> | 2021-06-07 08:40:37 +0200 |
---|---|---|
committer | Christian König <christian.koenig@amd.com> | 2021-06-07 15:41:50 +0200 |
commit | c43f2f9842347630f2ebfab05c9972e58b7df9d5 (patch) | |
tree | 3db1776c74508bb11e2a56a0bf4335e4dce4dcaf /drivers/infiniband/core | |
parent | b36a6bb8a151c056e1046e9d5b1192d90d9941c9 (diff) | |
download | linux-next-c43f2f9842347630f2ebfab05c9972e58b7df9d5.tar.gz |
RDMA/umem: fix missing automated rename
This occasions was missed during the recent rename of the function.
Signed-off-by: Christian König <christian.koenig@amd.com>
Reported-by: kernel test robot <lkp@intel.com>
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20210607070658.11586-1-christian.koenig@amd.com
Diffstat (limited to 'drivers/infiniband/core')
-rw-r--r-- | drivers/infiniband/core/umem_dmabuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/core/umem_dmabuf.c b/drivers/infiniband/core/umem_dmabuf.c index 0d65ce146fc4..c6e875619fac 100644 --- a/drivers/infiniband/core/umem_dmabuf.c +++ b/drivers/infiniband/core/umem_dmabuf.c @@ -66,7 +66,7 @@ wait_fence: * may be not up-to-date. Wait for the exporter to finish * the migration. */ - fence = dma_resv_get_excl(umem_dmabuf->attach->dmabuf->resv); + fence = dma_resv_excl_fence(umem_dmabuf->attach->dmabuf->resv); if (fence) return dma_fence_wait(fence, false); |