* [PATCHv2 2/2] infiniband-diags/smpquery: Add Mellanox extended portinfo query
@ 2011-07-22 14:05 Hal Rosenstock
[not found] ` <4E2983BF.80906-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Hal Rosenstock @ 2011-07-22 14:05 UTC (permalink / raw)
To: Ira Weiny; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Signed-off-by: Hal Rosenstock <hal-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
---
Changes since v1:
Added man page change
diff --git a/man/smpquery.8 b/man/smpquery.8
index 3b69e8a..2ba2ef2 100644
--- a/man/smpquery.8
+++ b/man/smpquery.8
@@ -1,4 +1,4 @@
-.TH SMPQUERY 8 "March 14, 2007" "OpenIB" "OpenIB Diagnostics"
+.TH SMPQUERY 8 "March 9, 2011" "OpenIB" "OpenIB Diagnostics"
.SH NAME
smpquery \- query InfiniBand subnet management attributes
@@ -29,6 +29,7 @@ Current supported operations and their parameters:
sl2vl <addr> [<portnum>]
vlarb <addr> [<portnum>]
guids <addr>
+ extportinfo <addr> [<portnum>] # default port is zero
.TP
\fB\-\-node\-name\-map\fR <node-name-map>
@@ -113,4 +114,4 @@ smpquery -c nodeinfo 6 0,12 # nodeinfo by combined route
.SH AUTHOR
.TP
Hal Rosenstock
-.RI < halr-smomgflXvOZWk0Htik3J/w@public.gmane.org >
+.RI < hal-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org >
diff --git a/src/smpquery.c b/src/smpquery.c
index 65bb65c..04cd925 100644
--- a/src/smpquery.c
+++ b/src/smpquery.c
@@ -63,7 +63,7 @@ typedef struct match_rec {
} match_rec_t;
static op_fn_t node_desc, node_info, port_info, switch_info, pkey_table,
- sl2vl_table, vlarb_table, guid_info;
+ sl2vl_table, vlarb_table, guid_info, ext_port_info;
static const match_rec_t match_tbl[] = {
{"NodeInfo", "NI", node_info},
@@ -74,6 +74,7 @@ static const match_rec_t match_tbl[] = {
{"SL2VLTable", "SL2VL", sl2vl_table, 1},
{"VLArbitration", "VLArb", vlarb_table, 1},
{"GUIDInfo", "GI", guid_info},
+ {"ExtPortInfo", "EPI", ext_port_info, 1},
{0}
};
@@ -147,6 +148,24 @@ static char *port_info(ib_portid_t * dest, char **argv, int argc)
return 0;
}
+static char *ext_port_info(ib_portid_t * dest, char **argv, int argc)
+{
+ char buf[2300];
+ char data[IB_SMP_DATA_SIZE];
+ int portnum = 0;
+
+ if (argc > 0)
+ portnum = strtol(argv[0], 0, 0);
+
+ if (!smp_query_via(data, dest, IB_ATTR_MLNX_EXT_PORT_INFO, portnum, 0, srcport))
+ return "ext port info query failed";
+
+ mad_dump_mlnx_ext_port_info(buf, sizeof buf, data, sizeof data);
+
+ printf("# Ext Port info: %s port %d\n%s", portid2str(dest), portnum, buf);
+ return 0;
+}
+
static char *switch_info(ib_portid_t * dest, char **argv, int argc)
{
char buf[2048];
--
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
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCHv2 2/2] infiniband-diags/smpquery: Add Mellanox extended portinfo query
[not found] ` <4E2983BF.80906-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
@ 2011-07-22 22:31 ` Ira Weiny
[not found] ` <20110722153151.ea416898.weiny2-i2BcT+NCU+M@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Ira Weiny @ 2011-07-22 22:31 UTC (permalink / raw)
To: Hal Rosenstock; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
On Fri, 22 Jul 2011 07:05:51 -0700
Hal Rosenstock <hal-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org> wrote:
>
> Signed-off-by: Hal Rosenstock <hal-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> ---
> Changes since v1:
> Added man page change
>
> diff --git a/man/smpquery.8 b/man/smpquery.8
> index 3b69e8a..2ba2ef2 100644
> --- a/man/smpquery.8
> +++ b/man/smpquery.8
> @@ -1,4 +1,4 @@
> -.TH SMPQUERY 8 "March 14, 2007" "OpenIB" "OpenIB Diagnostics"
> +.TH SMPQUERY 8 "March 9, 2011" "OpenIB" "OpenIB Diagnostics"
>
> .SH NAME
> smpquery \- query InfiniBand subnet management attributes
> @@ -29,6 +29,7 @@ Current supported operations and their parameters:
> sl2vl <addr> [<portnum>]
> vlarb <addr> [<portnum>]
> guids <addr>
> + extportinfo <addr> [<portnum>] # default port is zero
I think this should include something which indicates this is a Mellanox vendor specific query.
Perhaps just mlnxextportinfo and something in the comment.
>
> .TP
> \fB\-\-node\-name\-map\fR <node-name-map>
> @@ -113,4 +114,4 @@ smpquery -c nodeinfo 6 0,12 # nodeinfo by combined route
> .SH AUTHOR
> .TP
> Hal Rosenstock
> -.RI < halr-smomgflXvOZWk0Htik3J/w@public.gmane.org >
> +.RI < hal-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org >
> diff --git a/src/smpquery.c b/src/smpquery.c
> index 65bb65c..04cd925 100644
> --- a/src/smpquery.c
> +++ b/src/smpquery.c
> @@ -63,7 +63,7 @@ typedef struct match_rec {
> } match_rec_t;
>
> static op_fn_t node_desc, node_info, port_info, switch_info, pkey_table,
> - sl2vl_table, vlarb_table, guid_info;
> + sl2vl_table, vlarb_table, guid_info, ext_port_info;
>
> static const match_rec_t match_tbl[] = {
> {"NodeInfo", "NI", node_info},
> @@ -74,6 +74,7 @@ static const match_rec_t match_tbl[] = {
> {"SL2VLTable", "SL2VL", sl2vl_table, 1},
> {"VLArbitration", "VLArb", vlarb_table, 1},
> {"GUIDInfo", "GI", guid_info},
> + {"ExtPortInfo", "EPI", ext_port_info, 1},
> {0}
> };
>
> @@ -147,6 +148,24 @@ static char *port_info(ib_portid_t * dest, char **argv, int argc)
> return 0;
> }
>
> +static char *ext_port_info(ib_portid_t * dest, char **argv, int argc)
Also it might be more clear to future coders if this also included "mlnx" as a prefix.
Thanks,
Ira
> +{
> + char buf[2300];
> + char data[IB_SMP_DATA_SIZE];
> + int portnum = 0;
> +
> + if (argc > 0)
> + portnum = strtol(argv[0], 0, 0);
> +
> + if (!smp_query_via(data, dest, IB_ATTR_MLNX_EXT_PORT_INFO, portnum, 0, srcport))
> + return "ext port info query failed";
> +
> + mad_dump_mlnx_ext_port_info(buf, sizeof buf, data, sizeof data);
> +
> + printf("# Ext Port info: %s port %d\n%s", portid2str(dest), portnum, buf);
> + return 0;
> +}
> +
> static char *switch_info(ib_portid_t * dest, char **argv, int argc)
> {
> char buf[2048];
--
Ira Weiny
Math Programmer/Computer Scientist
Lawrence Livermore National Lab
925-423-8008
weiny2-i2BcT+NCU+M@public.gmane.org
--
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
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCHv2 2/2] infiniband-diags/smpquery: Add Mellanox extended portinfo query
[not found] ` <20110722153151.ea416898.weiny2-i2BcT+NCU+M@public.gmane.org>
@ 2011-07-22 23:56 ` Hal Rosenstock
[not found] ` <4E2A0E48.6030402-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Hal Rosenstock @ 2011-07-22 23:56 UTC (permalink / raw)
To: Ira Weiny; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
On 7/22/2011 6:31 PM, Ira Weiny wrote:
> On Fri, 22 Jul 2011 07:05:51 -0700
> Hal Rosenstock <hal-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org> wrote:
>
>>
>> Signed-off-by: Hal Rosenstock <hal-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
>> ---
>> Changes since v1:
>> Added man page change
>>
>> diff --git a/man/smpquery.8 b/man/smpquery.8
>> index 3b69e8a..2ba2ef2 100644
>> --- a/man/smpquery.8
>> +++ b/man/smpquery.8
>> @@ -1,4 +1,4 @@
>> -.TH SMPQUERY 8 "March 14, 2007" "OpenIB" "OpenIB Diagnostics"
>> +.TH SMPQUERY 8 "March 9, 2011" "OpenIB" "OpenIB Diagnostics"
>>
>> .SH NAME
>> smpquery \- query InfiniBand subnet management attributes
>> @@ -29,6 +29,7 @@ Current supported operations and their parameters:
>> sl2vl <addr> [<portnum>]
>> vlarb <addr> [<portnum>]
>> guids <addr>
>> + extportinfo <addr> [<portnum>] # default port is zero
>
> I think this should include something which indicates this is a Mellanox vendor specific query.
>
> Perhaps just mlnxextportinfo and something in the comment.
I was trying to keep the name from getting too long.
>
>>
>> .TP
>> \fB\-\-node\-name\-map\fR <node-name-map>
>> @@ -113,4 +114,4 @@ smpquery -c nodeinfo 6 0,12 # nodeinfo by combined route
>> .SH AUTHOR
>> .TP
>> Hal Rosenstock
>> -.RI < halr-smomgflXvOZWk0Htik3J/w@public.gmane.org >
>> +.RI < hal-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org >
>> diff --git a/src/smpquery.c b/src/smpquery.c
>> index 65bb65c..04cd925 100644
>> --- a/src/smpquery.c
>> +++ b/src/smpquery.c
>> @@ -63,7 +63,7 @@ typedef struct match_rec {
>> } match_rec_t;
>>
>> static op_fn_t node_desc, node_info, port_info, switch_info, pkey_table,
>> - sl2vl_table, vlarb_table, guid_info;
>> + sl2vl_table, vlarb_table, guid_info, ext_port_info;
>>
>> static const match_rec_t match_tbl[] = {
>> {"NodeInfo", "NI", node_info},
>> @@ -74,6 +74,7 @@ static const match_rec_t match_tbl[] = {
>> {"SL2VLTable", "SL2VL", sl2vl_table, 1},
>> {"VLArbitration", "VLArb", vlarb_table, 1},
>> {"GUIDInfo", "GI", guid_info},
>> + {"ExtPortInfo", "EPI", ext_port_info, 1},
>> {0}
>> };
>>
>> @@ -147,6 +148,24 @@ static char *port_info(ib_portid_t * dest, char **argv, int argc)
>> return 0;
>> }
>>
>> +static char *ext_port_info(ib_portid_t * dest, char **argv, int argc)
>
> Also it might be more clear to future coders if this also included "mlnx" as a prefix.
OK; so should it also be:
{"MlnxExtPortInfo", "MEPI" ?
-- Hal
> Thanks,
> Ira
>
>> +{
>> + char buf[2300];
>> + char data[IB_SMP_DATA_SIZE];
>> + int portnum = 0;
>> +
>> + if (argc > 0)
>> + portnum = strtol(argv[0], 0, 0);
>> +
>> + if (!smp_query_via(data, dest, IB_ATTR_MLNX_EXT_PORT_INFO, portnum, 0, srcport))
>> + return "ext port info query failed";
>> +
>> + mad_dump_mlnx_ext_port_info(buf, sizeof buf, data, sizeof data);
>> +
>> + printf("# Ext Port info: %s port %d\n%s", portid2str(dest), portnum, buf);
>> + return 0;
>> +}
>> +
>> static char *switch_info(ib_portid_t * dest, char **argv, int argc)
>> {
>> char buf[2048];
>
>
--
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
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCHv2 2/2] infiniband-diags/smpquery: Add Mellanox extended portinfo query
[not found] ` <4E2A0E48.6030402-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
@ 2011-07-23 0:09 ` Ira Weiny
0 siblings, 0 replies; 4+ messages in thread
From: Ira Weiny @ 2011-07-23 0:09 UTC (permalink / raw)
To: Hal Rosenstock; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
On Fri, 22 Jul 2011 16:56:56 -0700
Hal Rosenstock <hal-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org> wrote:
> On 7/22/2011 6:31 PM, Ira Weiny wrote:
> > On Fri, 22 Jul 2011 07:05:51 -0700
> > Hal Rosenstock <hal-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org> wrote:
> >
> >>
> >> Signed-off-by: Hal Rosenstock <hal-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> >> ---
> >> Changes since v1:
> >> Added man page change
> >>
> >> diff --git a/man/smpquery.8 b/man/smpquery.8
> >> index 3b69e8a..2ba2ef2 100644
> >> --- a/man/smpquery.8
> >> +++ b/man/smpquery.8
> >> @@ -1,4 +1,4 @@
> >> -.TH SMPQUERY 8 "March 14, 2007" "OpenIB" "OpenIB Diagnostics"
> >> +.TH SMPQUERY 8 "March 9, 2011" "OpenIB" "OpenIB Diagnostics"
> >>
> >> .SH NAME
> >> smpquery \- query InfiniBand subnet management attributes
> >> @@ -29,6 +29,7 @@ Current supported operations and their parameters:
> >> sl2vl <addr> [<portnum>]
> >> vlarb <addr> [<portnum>]
> >> guids <addr>
> >> + extportinfo <addr> [<portnum>] # default port is zero
> >
> > I think this should include something which indicates this is a Mellanox vendor specific query.
> >
> > Perhaps just mlnxextportinfo and something in the comment.
>
> I was trying to keep the name from getting too long.
Well MEPI would also be available as per below. So that is not too bad for the user.
>
> >
> >>
> >> .TP
> >> \fB\-\-node\-name\-map\fR <node-name-map>
> >> @@ -113,4 +114,4 @@ smpquery -c nodeinfo 6 0,12 # nodeinfo by combined route
> >> .SH AUTHOR
> >> .TP
> >> Hal Rosenstock
> >> -.RI < halr-smomgflXvOZWk0Htik3J/w@public.gmane.org >
> >> +.RI < hal-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org >
> >> diff --git a/src/smpquery.c b/src/smpquery.c
> >> index 65bb65c..04cd925 100644
> >> --- a/src/smpquery.c
> >> +++ b/src/smpquery.c
> >> @@ -63,7 +63,7 @@ typedef struct match_rec {
> >> } match_rec_t;
> >>
> >> static op_fn_t node_desc, node_info, port_info, switch_info, pkey_table,
> >> - sl2vl_table, vlarb_table, guid_info;
> >> + sl2vl_table, vlarb_table, guid_info, ext_port_info;
> >>
> >> static const match_rec_t match_tbl[] = {
> >> {"NodeInfo", "NI", node_info},
> >> @@ -74,6 +74,7 @@ static const match_rec_t match_tbl[] = {
> >> {"SL2VLTable", "SL2VL", sl2vl_table, 1},
> >> {"VLArbitration", "VLArb", vlarb_table, 1},
> >> {"GUIDInfo", "GI", guid_info},
> >> + {"ExtPortInfo", "EPI", ext_port_info, 1},
> >> {0}
> >> };
> >>
> >> @@ -147,6 +148,24 @@ static char *port_info(ib_portid_t * dest, char **argv, int argc)
> >> return 0;
> >> }
> >>
> >> +static char *ext_port_info(ib_portid_t * dest, char **argv, int argc)
> >
> > Also it might be more clear to future coders if this also included "mlnx" as a prefix.
>
> OK; so should it also be:
>
> {"MlnxExtPortInfo", "MEPI" ?
Sounds good,
Ira
>
> -- Hal
>
> > Thanks,
> > Ira
> >
> >> +{
> >> + char buf[2300];
> >> + char data[IB_SMP_DATA_SIZE];
> >> + int portnum = 0;
> >> +
> >> + if (argc > 0)
> >> + portnum = strtol(argv[0], 0, 0);
> >> +
> >> + if (!smp_query_via(data, dest, IB_ATTR_MLNX_EXT_PORT_INFO, portnum, 0, srcport))
> >> + return "ext port info query failed";
> >> +
> >> + mad_dump_mlnx_ext_port_info(buf, sizeof buf, data, sizeof data);
> >> +
> >> + printf("# Ext Port info: %s port %d\n%s", portid2str(dest), portnum, buf);
> >> + return 0;
> >> +}
> >> +
> >> static char *switch_info(ib_portid_t * dest, char **argv, int argc)
> >> {
> >> char buf[2048];
> >
> >
>
--
Ira Weiny
Math Programmer/Computer Scientist
Lawrence Livermore National Lab
925-423-8008
weiny2-i2BcT+NCU+M@public.gmane.org
--
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
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-07-23 0:09 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-22 14:05 [PATCHv2 2/2] infiniband-diags/smpquery: Add Mellanox extended portinfo query Hal Rosenstock
[not found] ` <4E2983BF.80906-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
2011-07-22 22:31 ` Ira Weiny
[not found] ` <20110722153151.ea416898.weiny2-i2BcT+NCU+M@public.gmane.org>
2011-07-22 23:56 ` Hal Rosenstock
[not found] ` <4E2A0E48.6030402-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
2011-07-23 0:09 ` Ira Weiny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox