diff options
author | Roland Dreier <rolandd@cisco.com> | 2008-04-16 21:01:06 -0700 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2008-04-16 21:01:06 -0700 |
commit | b3d636b0d1b2eb870a55ae196b8f3838e1399554 (patch) | |
tree | f33ae9f2f618c0367dcddf4238cdba10f29f1d2b /include/rdma | |
parent | edba846af9e1f27bab00d5aebfeef01386e00af0 (diff) | |
download | linux-3.10-b3d636b0d1b2eb870a55ae196b8f3838e1399554.tar.gz linux-3.10-b3d636b0d1b2eb870a55ae196b8f3838e1399554.tar.bz2 linux-3.10-b3d636b0d1b2eb870a55ae196b8f3838e1399554.zip |
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: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'include/rdma')
-rw-r--r-- | include/rdma/ib_verbs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rdma/ib_verbs.h b/include/rdma/ib_verbs.h index 701e7b40560..40ff51244d1 100644 --- a/include/rdma/ib_verbs.h +++ b/include/rdma/ib_verbs.h @@ -730,7 +730,7 @@ struct ib_uobject { struct ib_ucontext *context; /* associated user context */ void *object; /* containing object */ 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 rw_semaphore mutex; /* protects .live */ int live; |