diff options
author | Bryan O'Sullivan <bos@pathscale.com> | 2006-07-01 04:35:48 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-07-01 09:55:58 -0700 |
commit | 443a64abbcb130caa315eb1110d7146365846235 (patch) | |
tree | 4d026a545c69fffe3f387f53155aede10615cb68 /drivers/infiniband/hw/ipath/ipath_verbs.c | |
parent | 345a6e6aea43cd544c682601926bbd11c09c999b (diff) | |
download | kernel_samsung_tuna-443a64abbcb130caa315eb1110d7146365846235.zip kernel_samsung_tuna-443a64abbcb130caa315eb1110d7146365846235.tar.gz kernel_samsung_tuna-443a64abbcb130caa315eb1110d7146365846235.tar.bz2 |
[PATCH] IB/ipath: name zero counter offsets so it's clear they aren't counters
Signed-off-by: Ralph Campbell <ralph.campbell@qlogic.com>
Signed-off-by: Bryan O'Sullivan <bryan.osullivan@qlogic.com>
Cc: "Michael S. Tsirkin" <mst@mellanox.co.il>
Cc: Roland Dreier <rolandd@cisco.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/infiniband/hw/ipath/ipath_verbs.c')
-rw-r--r-- | drivers/infiniband/hw/ipath/ipath_verbs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/ipath/ipath_verbs.c b/drivers/infiniband/hw/ipath/ipath_verbs.c index 28fdbda..507a99b 100644 --- a/drivers/infiniband/hw/ipath/ipath_verbs.c +++ b/drivers/infiniband/hw/ipath/ipath_verbs.c @@ -646,7 +646,7 @@ static int ipath_query_port(struct ib_device *ibdev, props->max_msg_sz = 4096; props->pkey_tbl_len = ipath_layer_get_npkeys(dev->dd); props->bad_pkey_cntr = ipath_layer_get_cr_errpkey(dev->dd) - - dev->n_pkey_violations; + dev->z_pkey_violations; props->qkey_viol_cntr = dev->qkey_violations; props->active_width = IB_WIDTH_4X; /* See rate_show() */ |