Linux RDMA and InfiniBand development
 help / color / mirror / Atom feed
* [PATCH] IB/hfil: Delete unused bypass flags
@ 2017-10-11 20:56 Christos Gkekas
       [not found] ` <1507755409-12280-1-git-send-email-chris.gekas-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Christos Gkekas @ 2017-10-11 20:56 UTC (permalink / raw)
  To: Mike Marciniszyn, Dennis Dalessandro, Doug Ledford, Sean Hefty,
	Hal Rosenstock, linux-rdma, linux-kernel
  Cc: Christos Gkekas

Clean up unused bypass variables in verbs.

Signed-off-by: Christos Gkekas <chris.gekas@gmail.com>
---
 drivers/infiniband/hw/hfi1/verbs.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/drivers/infiniband/hw/hfi1/verbs.c b/drivers/infiniband/hw/hfi1/verbs.c
index e232f3c..62c3f4e 100644
--- a/drivers/infiniband/hw/hfi1/verbs.c
+++ b/drivers/infiniband/hw/hfi1/verbs.c
@@ -891,14 +891,12 @@ int hfi1_verbs_send_dma(struct rvt_qp *qp, struct hfi1_pkt_state *ps,
 	u8 sc5 = priv->s_sc;
 	int ret;
 	u32 dwords;
-	bool bypass = false;
 
 	if (ps->s_txreq->phdr.hdr.hdr_type) {
 		u8 extra_bytes = hfi1_get_16b_padding((hdrwords << 2), len);
 
 		dwords = (len + extra_bytes + (SIZE_OF_CRC << 2) +
 			  SIZE_OF_LT) >> 2;
-		bypass = true;
 	} else {
 		dwords = (len + 3) >> 2;
 	}
@@ -1034,7 +1032,6 @@ int hfi1_verbs_send_pio(struct rvt_qp *qp, struct hfi1_pkt_state *ps,
 	int ret = 0;
 	pio_release_cb cb = NULL;
 	u32 lrh0_16b;
-	bool bypass = false;
 	u8 extra_bytes = 0;
 
 	if (ps->s_txreq->phdr.hdr.hdr_type) {
@@ -1044,7 +1041,6 @@ int hfi1_verbs_send_pio(struct rvt_qp *qp, struct hfi1_pkt_state *ps,
 		dwords = (len + extra_bytes) >> 2;
 		hdr = (u32 *)&ps->s_txreq->phdr.hdr.opah;
 		lrh0_16b = ps->s_txreq->phdr.hdr.opah.lrh[0];
-		bypass = true;
 	} else {
 		dwords = (len + 3) >> 2;
 		hdr = (u32 *)&ps->s_txreq->phdr.hdr.ibh;
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] IB/hfil: Delete unused bypass flags
       [not found] ` <1507755409-12280-1-git-send-email-chris.gekas-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2017-10-11 21:35   ` Don Hiatt
       [not found]     ` <dcb0766e-6960-fd02-089f-fdde83b93df4-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Don Hiatt @ 2017-10-11 21:35 UTC (permalink / raw)
  To: Christos Gkekas, Mike Marciniszyn, Dennis Dalessandro,
	Doug Ledford, Sean Hefty, Hal Rosenstock,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA



On 10/11/2017 1:56 PM, Christos Gkekas wrote:
> Clean up unused bypass variables in verbs.
>
> Signed-off-by: Christos Gkekas <chris.gekas-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> ---
>   drivers/infiniband/hw/hfi1/verbs.c | 4 ----
>   1 file changed, 4 deletions(-)
>
> diff --git a/drivers/infiniband/hw/hfi1/verbs.c b/drivers/infiniband/hw/hfi1/verbs.c
> index e232f3c..62c3f4e 100644
> --- a/drivers/infiniband/hw/hfi1/verbs.c
> +++ b/drivers/infiniband/hw/hfi1/verbs.c
> @@ -891,14 +891,12 @@ int hfi1_verbs_send_dma(struct rvt_qp *qp, struct hfi1_pkt_state *ps,
>   	u8 sc5 = priv->s_sc;
>   	int ret;
>   	u32 dwords;
> -	bool bypass = false;
>   
>   	if (ps->s_txreq->phdr.hdr.hdr_type) {
>   		u8 extra_bytes = hfi1_get_16b_padding((hdrwords << 2), len);
>   
>   		dwords = (len + extra_bytes + (SIZE_OF_CRC << 2) +
>   			  SIZE_OF_LT) >> 2;
> -		bypass = true;
>   	} else {
>   		dwords = (len + 3) >> 2;
>   	}
> @@ -1034,7 +1032,6 @@ int hfi1_verbs_send_pio(struct rvt_qp *qp, struct hfi1_pkt_state *ps,
>   	int ret = 0;
>   	pio_release_cb cb = NULL;
>   	u32 lrh0_16b;
> -	bool bypass = false;
>   	u8 extra_bytes = 0;
>   
>   	if (ps->s_txreq->phdr.hdr.hdr_type) {
> @@ -1044,7 +1041,6 @@ int hfi1_verbs_send_pio(struct rvt_qp *qp, struct hfi1_pkt_state *ps,
>   		dwords = (len + extra_bytes) >> 2;
>   		hdr = (u32 *)&ps->s_txreq->phdr.hdr.opah;
>   		lrh0_16b = ps->s_txreq->phdr.hdr.opah.lrh[0];
> -		bypass = true;
>   	} else {
>   		dwords = (len + 3) >> 2;
>   		hdr = (u32 *)&ps->s_txreq->phdr.hdr.ibh;
Thanks!  Those were useful at one time. ;-)

Reviewed-by: Don Hiatt <don.hiatt-ral2JQCrhuEAvxtiuMwx3w@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] 3+ messages in thread

* Re: [PATCH] IB/hfil: Delete unused bypass flags
       [not found]     ` <dcb0766e-6960-fd02-089f-fdde83b93df4-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
@ 2017-10-12  1:19       ` Dennis Dalessandro
  0 siblings, 0 replies; 3+ messages in thread
From: Dennis Dalessandro @ 2017-10-12  1:19 UTC (permalink / raw)
  To: Don Hiatt, Christos Gkekas, Mike Marciniszyn, Doug Ledford,
	Sean Hefty, Hal Rosenstock, linux-rdma-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA

On 10/11/2017 5:35 PM, Don Hiatt wrote:
> 
> 
> On 10/11/2017 1:56 PM, Christos Gkekas wrote:
>> Clean up unused bypass variables in verbs.
>>
>> Signed-off-by: Christos Gkekas <chris.gekas-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
>> ---
>>   drivers/infiniband/hw/hfi1/verbs.c | 4 ----
>>   1 file changed, 4 deletions(-)
>>
>> diff --git a/drivers/infiniband/hw/hfi1/verbs.c 
>> b/drivers/infiniband/hw/hfi1/verbs.c
>> index e232f3c..62c3f4e 100644
>> --- a/drivers/infiniband/hw/hfi1/verbs.c
>> +++ b/drivers/infiniband/hw/hfi1/verbs.c
>> @@ -891,14 +891,12 @@ int hfi1_verbs_send_dma(struct rvt_qp *qp, 
>> struct hfi1_pkt_state *ps,
>>       u8 sc5 = priv->s_sc;
>>       int ret;
>>       u32 dwords;
>> -    bool bypass = false;
>>       if (ps->s_txreq->phdr.hdr.hdr_type) {
>>           u8 extra_bytes = hfi1_get_16b_padding((hdrwords << 2), len);
>>           dwords = (len + extra_bytes + (SIZE_OF_CRC << 2) +
>>                 SIZE_OF_LT) >> 2;
>> -        bypass = true;
>>       } else {
>>           dwords = (len + 3) >> 2;
>>       }
>> @@ -1034,7 +1032,6 @@ int hfi1_verbs_send_pio(struct rvt_qp *qp, 
>> struct hfi1_pkt_state *ps,
>>       int ret = 0;
>>       pio_release_cb cb = NULL;
>>       u32 lrh0_16b;
>> -    bool bypass = false;
>>       u8 extra_bytes = 0;
>>       if (ps->s_txreq->phdr.hdr.hdr_type) {
>> @@ -1044,7 +1041,6 @@ int hfi1_verbs_send_pio(struct rvt_qp *qp, 
>> struct hfi1_pkt_state *ps,
>>           dwords = (len + extra_bytes) >> 2;
>>           hdr = (u32 *)&ps->s_txreq->phdr.hdr.opah;
>>           lrh0_16b = ps->s_txreq->phdr.hdr.opah.lrh[0];
>> -        bypass = true;
>>       } else {
>>           dwords = (len + 3) >> 2;
>>           hdr = (u32 *)&ps->s_txreq->phdr.hdr.ibh;
> Thanks!  Those were useful at one time. ;-)
> 
> Reviewed-by: Don Hiatt <don.hiatt-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
> 

Thanks, but this is already handled by a patch submitted by Bart. See:

https://marc.info/?l=linux-rdma&m=150774420313310&w=2

His patch catches a few other variables in those same functions.

-Denny
--
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] 3+ messages in thread

end of thread, other threads:[~2017-10-12  1:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-11 20:56 [PATCH] IB/hfil: Delete unused bypass flags Christos Gkekas
     [not found] ` <1507755409-12280-1-git-send-email-chris.gekas-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2017-10-11 21:35   ` Don Hiatt
     [not found]     ` <dcb0766e-6960-fd02-089f-fdde83b93df4-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2017-10-12  1:19       ` Dennis Dalessandro

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox