diff options
author | Jack Morgenstein <jackm@mellanox.co.il> | 2006-10-04 15:56:34 +0400 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2006-10-10 23:50:36 +0400 |
commit | a8bf4e7717142b0688a726dd07501a6a7783792a (patch) | |
tree | 4e1219cd75c1dbd988827b4ed6877ea11b56f9f5 /drivers/infiniband | |
parent | 01cb9bcbd34b7ba768a7f05375faf43becdb8a60 (diff) | |
download | linux-a8bf4e7717142b0688a726dd07501a6a7783792a.tar.xz |
IB/mthca: Query port fix
Fill in "max_vl_num" (encoded according to VLCap field in the PortInfo MAD)
and "init_type_reply" values in the ib_query_port() verb.
Signed-off-by: Jack Morgenstein <jackm@mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/hw/mthca/mthca_provider.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/infiniband/hw/mthca/mthca_provider.c b/drivers/infiniband/hw/mthca/mthca_provider.c index 981fe2eebdfa..fc67f780581b 100644 --- a/drivers/infiniband/hw/mthca/mthca_provider.c +++ b/drivers/infiniband/hw/mthca/mthca_provider.c @@ -179,6 +179,8 @@ static int mthca_query_port(struct ib_device *ibdev, props->max_mtu = out_mad->data[41] & 0xf; props->active_mtu = out_mad->data[36] >> 4; props->subnet_timeout = out_mad->data[51] & 0x1f; + props->max_vl_num = out_mad->data[37] >> 4; + props->init_type_reply = out_mad->data[41] >> 4; out: kfree(in_mad); |