In this context the uobject is not allowed to be NULL, so type is the same
as uobject->type, and at least for IDR, id is the same as uobject->id.
FD objects should never handle the FD number outside the uAPI boundary
code.
Suggested-by: Guy Levi <guyle@mellanox.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
object = uverbs_get_object(ibdev, spec->obj.obj_type);
if (!object)
return -EINVAL;
- o_attr->type = object->type_attrs;
- o_attr->id = (int)uattr->data;
o_attr->uobject = uverbs_get_uobject_from_context(
- o_attr->type,
+ object->type_attrs,
ucontext,
spec->obj.access,
- o_attr->id);
+ (int)uattr->data);
if (IS_ERR(o_attr->uobject))
return PTR_ERR(o_attr->uobject);
};
struct uverbs_obj_attr {
- /* pointer to the kernel descriptor -> type, access, etc */
- const struct uverbs_obj_type *type;
struct ib_uobject *uobject;
- /* fd or id in idr of this object */
- int id;
};
struct uverbs_attr {