From: "ira.weiny" <ira.weiny-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
To: Hal Rosenstock <hal-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
Cc: "linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
<linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
Subject: Re: [PATCH infiniband-diags 1/3] perfquery.c: Output PerfMgt ClassPortInfo CapabilityMask2
Date: Tue, 28 Mar 2017 09:18:52 -0400 [thread overview]
Message-ID: <20170328131851.GA14000@phlsvsds.ph.intel.com> (raw)
In-Reply-To: <a64b9648-c79d-795a-8e40-ea1d4009c9ce-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
On Mon, Mar 27, 2017 at 11:36:12AM -0400, Hal Rosenstock wrote:
>
> in addition to CapabilityMask for PortCountersExtended attribute
>
> MgtWG errata #9301 defines IsAdditionalPortCountersExtendedSupported
> bit in CapabilityMask2.
This and the other perfquery patch appear to be corrupted.
Not sure why:
09:14:24 > git am ~/tmp/mutt/_PATCH_infiniband_diags_1_3__perfquery_c__Output_PerfMgt.patch
Applying: perfquery.c: Output PerfMgt ClassPortInfo CapabilityMask2
fatal: patch fragment without header at line 26: @@ -699,6 +701,7 @@ int main(int argc, char **argv)
Patch failed at 0001 perfquery.c: Output PerfMgt ClassPortInfo CapabilityMask2
Ira
>
> Signed-off-by: Hal Rosenstock <hal-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> ---
> diff --git a/src/perfquery.c b/src/perfquery.c
> index 948ce52..ab6c0f8 100644
> --- a/src/perfquery.c
> +++ b/src/perfquery.c
> @@ -296,7 +296,8 @@ static void output_aggregate_perfcounters_ext(ib_portid_t * portid,
> }
> static void dump_perfcounters(int extended, int timeout, uint16_t cap_mask,
> - ib_portid_t * portid, int port, int aggregate)
> + uint32_t cap_mask2, ib_portid_t * portid,
> + int port, int aggregate)
> {
> char buf[1024];
> @@ -344,8 +345,9 @@ static void dump_perfcounters(int extended, int timeout, uint16_t cap_mask,
> if (!aggregate) {
> if (extended)
> printf("# Port extended counters: %s port %d "
> - "(CapMask: 0x%02X)\n%s",
> - portid2str(portid), port, ntohs(cap_mask), buf);
> + "(CapMask: 0x%02X CapMask2: 0x%07X)\n%s",
> + portid2str(portid), port, ntohs(cap_mask),
> + cap_mask2, buf);
> else
> printf("# Port counters: %s port %d "
> "(CapMask: 0x%02X)\n%s",
> @@ -699,6 +701,7 @@ int main(int argc, char **argv)
> ib_portid_t portid = { 0 };
> int mask = 0xffff;
> uint64_t ext_mask = 0xffffffffffffffffULL;
> + uint32_t cap_mask2;
> uint16_t cap_mask;
> int all_ports_loop = 0;
> int node_type, num_ports = 0;
> @@ -816,6 +819,9 @@ int main(int argc, char **argv)
> IBEXIT("classportinfo query");
> /* ClassPortInfo should be supported as part of libibmad */
> memcpy(&cap_mask, pc + 2, sizeof(cap_mask)); /* CapabilityMask */
> + memcpy(&cap_mask2, pc + 4, sizeof(cap_mask2)); /* CapabilityMask2 */
> + cap_mask2 = ntohl(cap_mask2) >> 5;
> +
> if (!(cap_mask & IB_PM_ALL_PORT_SELECT)) { /* bit 8 is AllPortSelect */
> if (!all_ports && port == ALL_PORTS)
> IBEXIT("AllPortSelect not supported");
> @@ -942,7 +948,8 @@ int main(int argc, char **argv)
> if (all_ports_loop || (loop_ports && (all_ports || port == ALL_PORTS))) {
> for (i = start_port; i <= num_ports; i++)
> - dump_perfcounters(extended, ibd_timeout, cap_mask,
> + dump_perfcounters(extended, ibd_timeout,
> + cap_mask, cap_mask2,
> &portid, i, (all_ports_loop
> && !loop_ports));
> if (all_ports_loop && !loop_ports) {
> @@ -956,7 +963,7 @@ int main(int argc, char **argv)
> } else if (ports_count > 1) {
> for (i = 0; i < ports_count; i++)
> dump_perfcounters(extended, ibd_timeout, cap_mask,
> - &portid, ports[i],
> + cap_mask2, &portid, ports[i],
> (all_ports && !loop_ports));
> if (all_ports && !loop_ports) {
> if (extended != 1)
> @@ -967,8 +974,8 @@ int main(int argc, char **argv)
> cap_mask);
> }
> } else
> - dump_perfcounters(extended, ibd_timeout, cap_mask, &portid,
> - port, 0);
> + dump_perfcounters(extended, ibd_timeout, cap_mask, cap_mask2,
> + &portid, port, 0);
> if (!reset)
> goto done;
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2017-03-28 13:18 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-27 15:36 [PATCH infiniband-diags 1/3] perfquery.c: Output PerfMgt ClassPortInfo CapabilityMask2 Hal Rosenstock
[not found] ` <a64b9648-c79d-795a-8e40-ea1d4009c9ce-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
2017-03-28 13:18 ` ira.weiny [this message]
[not found] ` <20170328131851.GA14000-W4f6Xiosr+yv7QzWx2u06xL4W9x8LtSr@public.gmane.org>
2017-03-28 14:56 ` Hal Rosenstock
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170328131851.GA14000@phlsvsds.ph.intel.com \
--to=ira.weiny-ral2jqcrhueavxtiumwx3w@public.gmane.org \
--cc=hal-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org \
--cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox