aboutsummaryrefslogtreecommitdiffstats
path: root/include/rdma/ib_umem.h
diff options
context:
space:
mode:
authorJason Gunthorpe <jgg@mellanox.com>2019-08-06 20:15:44 -0300
committerJason Gunthorpe <jgg@mellanox.com>2019-08-21 20:58:19 -0300
commit47f725ee7b5f5cae1f83512961bcf8b41a7a5794 (patch)
tree5060299eb0914f1c4894b2ddf4d8f785a39d69e8 /include/rdma/ib_umem.h
parentRDMA/odp: use mmu_notifier_get/put for 'struct ib_ucontext_per_mm' (diff)
downloadlinux-dev-47f725ee7b5f5cae1f83512961bcf8b41a7a5794.tar.xz
linux-dev-47f725ee7b5f5cae1f83512961bcf8b41a7a5794.zip
RDMA/odp: remove ib_ucontext from ib_umem
At this point the ucontext is only being stored to access the ib_device, so just store the ib_device directly instead. This is more natural and logical as the umem has nothing to do with the ucontext. Link: https://lore.kernel.org/r/20190806231548.25242-8-jgg@ziepe.ca Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Diffstat (limited to '')
-rw-r--r--include/rdma/ib_umem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rdma/ib_umem.h b/include/rdma/ib_umem.h
index 1052d0d62be7..a91b2af64ec4 100644
--- a/include/rdma/ib_umem.h
+++ b/include/rdma/ib_umem.h
@@ -42,7 +42,7 @@ struct ib_ucontext;
struct ib_umem_odp;
struct ib_umem {
- struct ib_ucontext *context;
+ struct ib_device *ibdev;
struct mm_struct *owning_mm;
size_t length;
unsigned long address;