diff options
author | Dotan Barak <dotanb@dev.mellanox.co.il> | 2007-07-31 16:49:15 +0300 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2007-08-03 10:45:18 -0700 |
commit | bfb3ea125174813cdf87b1120caf0c9bd580283e (patch) | |
tree | 1c510cdf419b5b99981794d17dedc48cdc2a3d64 /include/rdma | |
parent | e8b398deb73b4a0c3d636f2146c9f35f8eac6d88 (diff) | |
download | linux-bfb3ea125174813cdf87b1120caf0c9bd580283e.tar.bz2 |
IB: Include <linux/list.h> and <linux/rwsem.h> from <rdma/ib_verbs.h>
ib_verbs.h uses struct list_head and rw_semaphore, so while the files
<linux/list.h> and <linux/rwsem.h> seem to be pulled in indirectly by
the other header files it includes, the right thing is to include
those files directly.
Signed-off-by: Dotan Barak <dotanb@dev.mellanox.co.il>
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, 2 insertions, 0 deletions
diff --git a/include/rdma/ib_verbs.h b/include/rdma/ib_verbs.h index 0627a6aa282a..7a99f1125d24 100644 --- a/include/rdma/ib_verbs.h +++ b/include/rdma/ib_verbs.h @@ -46,6 +46,8 @@ #include <linux/mm.h> #include <linux/dma-mapping.h> #include <linux/kref.h> +#include <linux/list.h> +#include <linux/rwsem.h> #include <asm/atomic.h> #include <asm/scatterlist.h> |