Commit b3d636b0 authored by Roland Dreier's avatar Roland Dreier

IB: Make struct ib_uobject.id a signed int

IDR IDs are signed, so struct ib_uobject.id should be signed.  This
avoids some sparse pointer signedness warnings.
Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
parent edba846a
...@@ -730,7 +730,7 @@ struct ib_uobject { ...@@ -730,7 +730,7 @@ struct ib_uobject {
struct ib_ucontext *context; /* associated user context */ struct ib_ucontext *context; /* associated user context */
void *object; /* containing object */ void *object; /* containing object */
struct list_head list; /* link to context's list */ struct list_head list; /* link to context's list */
u32 id; /* index into kernel idr */ int id; /* index into kernel idr */
struct kref ref; struct kref ref;
struct rw_semaphore mutex; /* protects .live */ struct rw_semaphore mutex; /* protects .live */
int live; int live;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment