diff options
author | Sean Hefty <sean.hefty@intel.com> | 2007-06-18 11:03:58 -0700 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2007-07-10 21:45:31 -0700 |
commit | 2aec5c602c6a44e2a3a173339a9ab94549658e4b (patch) | |
tree | b16a5002a07d96b88ad162ac34d628b531844a6f /include/rdma | |
parent | 1b844afe9e67d6cd441ae6df71051b4004f31dd2 (diff) | |
download | op-kernel-dev-2aec5c602c6a44e2a3a173339a9ab94549658e4b.zip op-kernel-dev-2aec5c602c6a44e2a3a173339a9ab94549658e4b.tar.gz |
IB/sa: Make sure SA queries use default P_Key
MADs sent to the SA should use the the default P_Key (0x7fff/0xffff).
There's no requirement that the default P_Key is stored at index 0 in
the local P_Key table, so add code to the sa_query module to look up
the index of the default P_Key when creating an address handle for the
SA (which is done any time the P_Key table might change), and use this
index for all SA queries.
Signed-off-by: Sean Hefty <sean.hefty@intel.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'include/rdma')
-rw-r--r-- | include/rdma/ib_mad.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/rdma/ib_mad.h b/include/rdma/ib_mad.h index 739fa4d..30712dd 100644 --- a/include/rdma/ib_mad.h +++ b/include/rdma/ib_mad.h @@ -111,6 +111,9 @@ #define IB_QP1_QKEY 0x80010000 #define IB_QP_SET_QKEY 0x80000000 +#define IB_DEFAULT_PKEY_PARTIAL 0x7FFF +#define IB_DEFAULT_PKEY_FULL 0xFFFF + enum { IB_MGMT_MAD_HDR = 24, IB_MGMT_MAD_DATA = 232, |