RDMA/core: Remove the ufile arg from rdma_alloc_begin_uobject
Now that all callers provide a non-NULL attrs the ufile is redundant. Adjust things so that the context handling is done inside alloc_uobj, and the ib_uverbs_get_ucontext_file() is avoided if we already have the context. Link: https://lore.kernel.org/r/1578504126-9400-13-git-send-email-yishaih@mellanox.com Signed-off-by: Yishai Hadas <yishaih@mellanox.com> Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
This commit is contained in:
@@ -114,8 +114,7 @@ static inline struct ib_uobject *
|
||||
__uobj_alloc(const struct uverbs_api_object *obj,
|
||||
struct uverbs_attr_bundle *attrs, struct ib_device **ib_dev)
|
||||
{
|
||||
struct ib_uobject *uobj =
|
||||
rdma_alloc_begin_uobject(obj, attrs->ufile, attrs);
|
||||
struct ib_uobject *uobj = rdma_alloc_begin_uobject(obj, attrs);
|
||||
|
||||
if (!IS_ERR(uobj))
|
||||
*ib_dev = attrs->context->device;
|
||||
|
@@ -83,7 +83,7 @@ enum rdma_lookup_mode {
|
||||
*/
|
||||
struct uverbs_obj_type_class {
|
||||
struct ib_uobject *(*alloc_begin)(const struct uverbs_api_object *obj,
|
||||
struct ib_uverbs_file *ufile);
|
||||
struct uverbs_attr_bundle *attrs);
|
||||
/* This consumes the kref on uobj */
|
||||
void (*alloc_commit)(struct ib_uobject *uobj);
|
||||
/* This does not consume the kref on uobj */
|
||||
@@ -137,7 +137,6 @@ struct ib_uobject *rdma_lookup_get_uobject(const struct uverbs_api_object *obj,
|
||||
void rdma_lookup_put_uobject(struct ib_uobject *uobj,
|
||||
enum rdma_lookup_mode mode);
|
||||
struct ib_uobject *rdma_alloc_begin_uobject(const struct uverbs_api_object *obj,
|
||||
struct ib_uverbs_file *ufile,
|
||||
struct uverbs_attr_bundle *attrs);
|
||||
void rdma_alloc_abort_uobject(struct ib_uobject *uobj,
|
||||
struct uverbs_attr_bundle *attrs);
|
||||
|
Reference in New Issue
Block a user