diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-03-03 10:33:17 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-03-03 10:33:17 -0500 |
commit | 3ff1562ea48cddaa5ac1adcb8892227389a4c96c (patch) | |
tree | 927f885b02579402859f339db707a0a76470aa51 /include | |
parent | 88b68033b99b16b42e734ab56a4ed6bc1d53516a (diff) | |
parent | fe8875e5a41a36ef26072cf05731df5493ade0e1 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband: (48 commits)
IB/srp: Clean up error path in srp_create_target_ib()
IB/srp: Split send and recieve CQs to reduce number of interrupts
RDMA/nes: Add support for KR device id 0x0110
IB/uverbs: Use anon_inodes instead of private infinibandeventfs
IB/core: Fix and clean up ib_ud_header_init()
RDMA/cxgb3: Mark RDMA device with CXIO_ERROR_FATAL when removing
RDMA/cxgb3: Don't allocate the SW queue for user mode CQs
RDMA/cxgb3: Increase the max CQ depth
RDMA/cxgb3: Doorbell overflow avoidance and recovery
IB/core: Pack struct ib_device a little tighter
IB/ucm: Clean whitespace errors
IB/ucm: Increase maximum devices supported
IB/ucm: Use stack variable 'base' in ib_ucm_add_one
IB/ucm: Use stack variable 'devnum' in ib_ucm_add_one
IB/umad: Clean whitespace
IB/umad: Increase maximum devices supported
IB/umad: Use stack variable 'base' in ib_umad_init_port
IB/umad: Use stack variable 'devnum' in ib_umad_init_port
IB/umad: Remove port_table[]
IB/umad: Convert *cdev to cdev in struct ib_umad_port
...
Diffstat (limited to 'include')
-rw-r--r-- | include/rdma/ib_pack.h | 1 | ||||
-rw-r--r-- | include/rdma/ib_verbs.h | 4 | ||||
-rw-r--r-- | include/rdma/rdma_cm.h | 1 |
3 files changed, 3 insertions, 3 deletions
diff --git a/include/rdma/ib_pack.h b/include/rdma/ib_pack.h index d7fc45c4eba9..cbb50f4da3dd 100644 --- a/include/rdma/ib_pack.h +++ b/include/rdma/ib_pack.h | |||
@@ -232,6 +232,7 @@ void ib_unpack(const struct ib_field *desc, | |||
232 | 232 | ||
233 | void ib_ud_header_init(int payload_bytes, | 233 | void ib_ud_header_init(int payload_bytes, |
234 | int grh_present, | 234 | int grh_present, |
235 | int immediate_present, | ||
235 | struct ib_ud_header *header); | 236 | struct ib_ud_header *header); |
236 | 237 | ||
237 | int ib_ud_header_pack(struct ib_ud_header *header, | 238 | int ib_ud_header_pack(struct ib_ud_header *header, |
diff --git a/include/rdma/ib_verbs.h b/include/rdma/ib_verbs.h index 09509edb1c5f..a585e0f92bc3 100644 --- a/include/rdma/ib_verbs.h +++ b/include/rdma/ib_verbs.h | |||
@@ -984,9 +984,9 @@ struct ib_device { | |||
984 | struct list_head event_handler_list; | 984 | struct list_head event_handler_list; |
985 | spinlock_t event_handler_lock; | 985 | spinlock_t event_handler_lock; |
986 | 986 | ||
987 | spinlock_t client_data_lock; | ||
987 | struct list_head core_list; | 988 | struct list_head core_list; |
988 | struct list_head client_data_list; | 989 | struct list_head client_data_list; |
989 | spinlock_t client_data_lock; | ||
990 | 990 | ||
991 | struct ib_cache cache; | 991 | struct ib_cache cache; |
992 | int *pkey_tbl_len; | 992 | int *pkey_tbl_len; |
@@ -1144,8 +1144,8 @@ struct ib_device { | |||
1144 | IB_DEV_UNREGISTERED | 1144 | IB_DEV_UNREGISTERED |
1145 | } reg_state; | 1145 | } reg_state; |
1146 | 1146 | ||
1147 | u64 uverbs_cmd_mask; | ||
1148 | int uverbs_abi_ver; | 1147 | int uverbs_abi_ver; |
1148 | u64 uverbs_cmd_mask; | ||
1149 | 1149 | ||
1150 | char node_desc[64]; | 1150 | char node_desc[64]; |
1151 | __be64 node_guid; | 1151 | __be64 node_guid; |
diff --git a/include/rdma/rdma_cm.h b/include/rdma/rdma_cm.h index c6b2962315b3..4fae90304648 100644 --- a/include/rdma/rdma_cm.h +++ b/include/rdma/rdma_cm.h | |||
@@ -67,7 +67,6 @@ enum rdma_port_space { | |||
67 | RDMA_PS_IPOIB = 0x0002, | 67 | RDMA_PS_IPOIB = 0x0002, |
68 | RDMA_PS_TCP = 0x0106, | 68 | RDMA_PS_TCP = 0x0106, |
69 | RDMA_PS_UDP = 0x0111, | 69 | RDMA_PS_UDP = 0x0111, |
70 | RDMA_PS_SCTP = 0x0183 | ||
71 | }; | 70 | }; |
72 | 71 | ||
73 | struct rdma_addr { | 72 | struct rdma_addr { |