diff options
| author | Christoph Hellwig <hch@lst.de> | 2016-09-05 12:56:16 +0200 |
|---|---|---|
| committer | Doug Ledford <dledford@redhat.com> | 2016-09-23 13:47:44 -0400 |
| commit | 50d46335b03baa9767e79a6f4757df7bd31eba21 (patch) | |
| tree | 95a0a3c0926d3fd944045075573a38f08728142e /drivers/infiniband/core/uverbs_cmd.c | |
| parent | 64278fe89b729dddb8dbe5ea52220685f6103d1b (diff) | |
| download | linux-50d46335b03baa9767e79a6f4757df7bd31eba21.tar.gz linux-50d46335b03baa9767e79a6f4757df7bd31eba21.tar.bz2 linux-50d46335b03baa9767e79a6f4757df7bd31eba21.zip | |
IB/core: rename pd->local_mr to pd->__internal_mr
This has two reasons: a) to clearly mark that drivers don't have any
business using it, and b) because we're going to use it for the
(dangerous) global rkey soon, so that drivers don't create on themselves.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Reviewed-by: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
Reviewed-by: Steve Wise <swise@opengridcomputing.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/core/uverbs_cmd.c')
| -rw-r--r-- | drivers/infiniband/core/uverbs_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/core/uverbs_cmd.c b/drivers/infiniband/core/uverbs_cmd.c index f6647318138d..fe784a908817 100644 --- a/drivers/infiniband/core/uverbs_cmd.c +++ b/drivers/infiniband/core/uverbs_cmd.c @@ -571,7 +571,7 @@ ssize_t ib_uverbs_alloc_pd(struct ib_uverbs_file *file, pd->device = ib_dev; pd->uobject = uobj; - pd->local_mr = NULL; + pd->__internal_mr = NULL; atomic_set(&pd->usecnt, 0); uobj->object = pd; |
