All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] libibmad: Add support for PortInfo:McastPkeyTrapSuppressionEnabled
@ 2009-11-06 14:10 Hal Rosenstock
       [not found] ` <20091106141034.GC19678-Wuw85uim5zDR7s880joybQ@public.gmane.org>
  0 siblings, 1 reply; 5+ messages in thread
From: Hal Rosenstock @ 2009-11-06 14:10 UTC (permalink / raw)
  To: sashak-smomgflXvOZWk0Htik3J/w; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA


Per published MgtWG erratum RefID 4576

Signed-off-by: Hal Rosenstock <hal.rosenstock-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
---
diff --git a/libibmad/include/infiniband/mad.h b/libibmad/include/infiniband/mad.h
index b82b0d5..ed8fd71 100644
--- a/libibmad/include/infiniband/mad.h
+++ b/libibmad/include/infiniband/mad.h
@@ -357,6 +357,7 @@ enum MAD_FIELDS {
 	IB_PORT_QKEY_VIOL_F,
 	IB_PORT_GUID_CAP_F,
 	IB_PORT_CLIENT_REREG_F,
+	IB_PORT_MCAST_PKEY_SUPR_ENAB_F,
 	IB_PORT_SUBN_TIMEOUT_F,
 	IB_PORT_RESP_TIME_VAL_F,
 	IB_PORT_LOCAL_PHYS_ERR_F,
diff --git a/libibmad/src/fields.c b/libibmad/src/fields.c
index 98a0c60..c2f9585 100644
--- a/libibmad/src/fields.c
+++ b/libibmad/src/fields.c
@@ -162,6 +162,7 @@ static const ib_field_t ib_mad_f[] = {
 	{BITSOFFS(384, 16), "QkeyViolations", mad_dump_uint},
 	{BITSOFFS(400, 8), "GuidCap", mad_dump_uint},
 	{BITSOFFS(408, 1), "ClientReregister", mad_dump_uint},
+	{BITSOFFS(409, 1), "McastPkeyTrapSuppressionEnabled", mad_dump_uint},
 	{BITSOFFS(411, 5), "SubnetTimeout", mad_dump_uint},
 	{BITSOFFS(419, 5), "RespTimeVal", mad_dump_uint},
 	{BITSOFFS(424, 4), "LocalPhysErr", mad_dump_uint},
--
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] 5+ messages in thread

* Re: [PATCH] libibmad: Add support for PortInfo:McastPkeyTrapSuppressionEnabled
       [not found] ` <20091106141034.GC19678-Wuw85uim5zDR7s880joybQ@public.gmane.org>
@ 2009-11-06 18:02   ` Sasha Khapyorsky
  2009-11-06 19:35     ` Hal Rosenstock
  0 siblings, 1 reply; 5+ messages in thread
From: Sasha Khapyorsky @ 2009-11-06 18:02 UTC (permalink / raw)
  To: Hal Rosenstock; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA

On 09:10 Fri 06 Nov     , Hal Rosenstock wrote:
> 
> Per published MgtWG erratum RefID 4576

Please describe the change. Reference to private tracker's RefID number
is not enough.

Sasha

> 
> Signed-off-by: Hal Rosenstock <hal.rosenstock-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> ---
> diff --git a/libibmad/include/infiniband/mad.h b/libibmad/include/infiniband/mad.h
> index b82b0d5..ed8fd71 100644
> --- a/libibmad/include/infiniband/mad.h
> +++ b/libibmad/include/infiniband/mad.h
> @@ -357,6 +357,7 @@ enum MAD_FIELDS {
>  	IB_PORT_QKEY_VIOL_F,
>  	IB_PORT_GUID_CAP_F,
>  	IB_PORT_CLIENT_REREG_F,
> +	IB_PORT_MCAST_PKEY_SUPR_ENAB_F,
>  	IB_PORT_SUBN_TIMEOUT_F,
>  	IB_PORT_RESP_TIME_VAL_F,
>  	IB_PORT_LOCAL_PHYS_ERR_F,
> diff --git a/libibmad/src/fields.c b/libibmad/src/fields.c
> index 98a0c60..c2f9585 100644
> --- a/libibmad/src/fields.c
> +++ b/libibmad/src/fields.c
> @@ -162,6 +162,7 @@ static const ib_field_t ib_mad_f[] = {
>  	{BITSOFFS(384, 16), "QkeyViolations", mad_dump_uint},
>  	{BITSOFFS(400, 8), "GuidCap", mad_dump_uint},
>  	{BITSOFFS(408, 1), "ClientReregister", mad_dump_uint},
> +	{BITSOFFS(409, 1), "McastPkeyTrapSuppressionEnabled", mad_dump_uint},
>  	{BITSOFFS(411, 5), "SubnetTimeout", mad_dump_uint},
>  	{BITSOFFS(419, 5), "RespTimeVal", mad_dump_uint},
>  	{BITSOFFS(424, 4), "LocalPhysErr", mad_dump_uint},
> --
> 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
> 
--
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] 5+ messages in thread

* Re: [PATCH] libibmad: Add support for PortInfo:McastPkeyTrapSuppressionEnabled
  2009-11-06 18:02   ` Sasha Khapyorsky
@ 2009-11-06 19:35     ` Hal Rosenstock
       [not found]       ` <f0e08f230911061135x4117c1caj311139e1bc8799c2-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 5+ messages in thread
From: Hal Rosenstock @ 2009-11-06 19:35 UTC (permalink / raw)
  To: Sasha Khapyorsky; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA

On Fri, Nov 6, 2009 at 1:02 PM, Sasha Khapyorsky <sashak-smomgflXvOZWk0Htik3J/w@public.gmane.org> wrote:
> On 09:10 Fri 06 Nov     , Hal Rosenstock wrote:
>>
>> Per published MgtWG erratum RefID 4576
>
> Please describe the change.

Not sure what else you are looking for here. Is it a description of
the new field or a description of the patch which is trivial:
"Add support for new field to PortInfo"

> Reference to private tracker's RefID number
> is not enough.

It's not private as I've tried to explain before.

-- Hal

>
> Sasha
>
>>
>> Signed-off-by: Hal Rosenstock <hal.rosenstock-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
>> ---
>> diff --git a/libibmad/include/infiniband/mad.h b/libibmad/include/infiniband/mad.h
>> index b82b0d5..ed8fd71 100644
>> --- a/libibmad/include/infiniband/mad.h
>> +++ b/libibmad/include/infiniband/mad.h
>> @@ -357,6 +357,7 @@ enum MAD_FIELDS {
>>       IB_PORT_QKEY_VIOL_F,
>>       IB_PORT_GUID_CAP_F,
>>       IB_PORT_CLIENT_REREG_F,
>> +     IB_PORT_MCAST_PKEY_SUPR_ENAB_F,
>>       IB_PORT_SUBN_TIMEOUT_F,
>>       IB_PORT_RESP_TIME_VAL_F,
>>       IB_PORT_LOCAL_PHYS_ERR_F,
>> diff --git a/libibmad/src/fields.c b/libibmad/src/fields.c
>> index 98a0c60..c2f9585 100644
>> --- a/libibmad/src/fields.c
>> +++ b/libibmad/src/fields.c
>> @@ -162,6 +162,7 @@ static const ib_field_t ib_mad_f[] = {
>>       {BITSOFFS(384, 16), "QkeyViolations", mad_dump_uint},
>>       {BITSOFFS(400, 8), "GuidCap", mad_dump_uint},
>>       {BITSOFFS(408, 1), "ClientReregister", mad_dump_uint},
>> +     {BITSOFFS(409, 1), "McastPkeyTrapSuppressionEnabled", mad_dump_uint},
>>       {BITSOFFS(411, 5), "SubnetTimeout", mad_dump_uint},
>>       {BITSOFFS(419, 5), "RespTimeVal", mad_dump_uint},
>>       {BITSOFFS(424, 4), "LocalPhysErr", mad_dump_uint},
>> --
>> 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
>>
> --
> 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
>
--
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] 5+ messages in thread

* Re: [PATCH] libibmad: Add support for PortInfo:McastPkeyTrapSuppressionEnabled
       [not found]       ` <f0e08f230911061135x4117c1caj311139e1bc8799c2-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2009-11-12 16:50         ` Sasha Khapyorsky
  2009-11-30 19:53           ` Hal Rosenstock
  0 siblings, 1 reply; 5+ messages in thread
From: Sasha Khapyorsky @ 2009-11-12 16:50 UTC (permalink / raw)
  To: Hal Rosenstock; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA

On 14:35 Fri 06 Nov     , Hal Rosenstock wrote:
> On Fri, Nov 6, 2009 at 1:02 PM, Sasha Khapyorsky <sashak-smomgflXvOZWk0Htik3J/w@public.gmane.org> wrote:
> > On 09:10 Fri 06 Nov     , Hal Rosenstock wrote:
> >>
> >> Per published MgtWG erratum RefID 4576
> >
> > Please describe the change.
> 
> Not sure what else you are looking for here.

Not just me. Many people may look over change log. And they are not
necessary must be a full time IBTA members (and/or even not full time
linux-rdma list observers). Likely that for non-IBTA members words
"MgtWG" and "RefID 4576" will not say a lot about the change.

And for me it will be required to log into members area of IBTA web site
(which is slow) and to search in the tracker for RefID 4576. It is just
in order to review a two lines patch.

> Is it a description of
> the new field or a description of the patch which is trivial:
> "Add support for new field to PortInfo"

What is this field, what should it indicate, what is
McastPkeyTrap, what is an issue with it, etc.. Nothing of this is
covered.

> > Reference to private tracker's RefID number
> > is not enough.
> 
> It's not private as I've tried to explain before.

You said this, but you never provided any link to where it is published.
Could you?

Sasha
--
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] 5+ messages in thread

* Re: [PATCH] libibmad: Add support for PortInfo:McastPkeyTrapSuppressionEnabled
  2009-11-12 16:50         ` Sasha Khapyorsky
@ 2009-11-30 19:53           ` Hal Rosenstock
  0 siblings, 0 replies; 5+ messages in thread
From: Hal Rosenstock @ 2009-11-30 19:53 UTC (permalink / raw)
  To: Sasha Khapyorsky; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA

On Thu, Nov 12, 2009 at 11:50 AM, Sasha Khapyorsky <sashak-smomgflXvOZWk0Htik3J/w@public.gmane.org> wrote:
> On 14:35 Fri 06 Nov     , Hal Rosenstock wrote:
>> On Fri, Nov 6, 2009 at 1:02 PM, Sasha Khapyorsky <sashak-smomgflXvObQFizaE/u3fw@public.gmane.orgm> wrote:
>> > On 09:10 Fri 06 Nov     , Hal Rosenstock wrote:
>> >>
>> >> Per published MgtWG erratum RefID 4576
>> >
>> > Please describe the change.
>>
>> Not sure what else you are looking for here.
>
> Not just me. Many people may look over change log. And they are not
> necessary must be a full time IBTA members (and/or even not full time
> linux-rdma list observers). Likely that for non-IBTA members words
> "MgtWG" and "RefID 4576" will not say a lot about the change.
>
> And for me it will be required to log into members area of IBTA web site
> (which is slow) and to search in the tracker for RefID 4576. It is just
> in order to review a two lines patch.
>
>> Is it a description of
>> the new field or a description of the patch which is trivial:
>> "Add support for new field to PortInfo"
>
> What is this field, what should it indicate, what is
> McastPkeyTrap, what is an issue with it, etc.. Nothing of this is
> covered.

This was addressed in an updated version of the patch sent on 11/6
which has since been incorporated.

>> > Reference to private tracker's RefID number
>> > is not enough.
>>
>> It's not private as I've tried to explain before.
>
> You said this, but you never provided any link to where it is published.
> Could you?

It's on the IBTA spec page.

-- Hal

>
> Sasha
>
--
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] 5+ messages in thread

end of thread, other threads:[~2009-11-30 19:53 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-11-06 14:10 [PATCH] libibmad: Add support for PortInfo:McastPkeyTrapSuppressionEnabled Hal Rosenstock
     [not found] ` <20091106141034.GC19678-Wuw85uim5zDR7s880joybQ@public.gmane.org>
2009-11-06 18:02   ` Sasha Khapyorsky
2009-11-06 19:35     ` Hal Rosenstock
     [not found]       ` <f0e08f230911061135x4117c1caj311139e1bc8799c2-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-11-12 16:50         ` Sasha Khapyorsky
2009-11-30 19:53           ` Hal Rosenstock

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.