2020-04-01 23:28:26

by Colin King

[permalink] [raw]
Subject: [PATCH][next] net: atlantic: fix missing | operator when assigning rec->llc

From: Colin Ian King <[email protected]>

rec->llc is currently being assigned twice, once with the lower 8 bits
from packed_record[8] and then re-assigned afterwards with data from
packed_record[9]. This looks like a type, I believe the second assignment
should be using the |= operator rather than a direct assignment.

Addresses-Coverity: ("Unused value")
Fixes: b8f8a0b7b5cb ("net: atlantic: MACSec ingress offload HW bindings")
Signed-off-by: Colin Ian King <[email protected]>
---
drivers/net/ethernet/aquantia/atlantic/macsec/macsec_api.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/aquantia/atlantic/macsec/macsec_api.c b/drivers/net/ethernet/aquantia/atlantic/macsec/macsec_api.c
index 97901c114bfa..fbe9d88b13c7 100644
--- a/drivers/net/ethernet/aquantia/atlantic/macsec/macsec_api.c
+++ b/drivers/net/ethernet/aquantia/atlantic/macsec/macsec_api.c
@@ -491,7 +491,7 @@ get_ingress_preclass_record(struct aq_hw_s *hw,
rec->snap[1] = packed_record[8] & 0xFF;

rec->llc = (packed_record[8] >> 8) & 0xFF;
- rec->llc = packed_record[9] << 8;
+ rec->llc |= packed_record[9] << 8;

rec->mac_sa[0] = packed_record[10];
rec->mac_sa[0] |= packed_record[11] << 16;
--
2.25.1


2020-04-02 11:42:45

by Igor Russkikh

[permalink] [raw]
Subject: RE: [EXT] [PATCH][next] net: atlantic: fix missing | operator when assigning rec->llc

Thanks Colin,

We also found this typo recently, but you were ahead of us )

> From: Colin Ian King <[email protected]>
> rec->llc is currently being assigned twice, once with the lower 8 bits
> from packed_record[8] and then re-assigned afterwards with data from packed_record[9]. This looks like a type,
> I believe the second assignment should be using the |= operator rather than a direct assignment.

> Addresses-Coverity: ("Unused value")
> Fixes: b8f8a0b7b5cb ("net: atlantic: MACSec ingress offload HW bindings")
> Signed-off-by: Colin Ian King <[email protected]>

Acked-by: Igor Russkikh <[email protected]>

2020-04-02 13:52:39

by David Miller

[permalink] [raw]
Subject: Re: [PATCH][next] net: atlantic: fix missing | operator when assigning rec->llc

From: Colin King <[email protected]>
Date: Thu, 2 Apr 2020 00:27:36 +0100

> From: Colin Ian King <[email protected]>
>
> rec->llc is currently being assigned twice, once with the lower 8 bits
> from packed_record[8] and then re-assigned afterwards with data from
> packed_record[9]. This looks like a type, I believe the second assignment
> should be using the |= operator rather than a direct assignment.
>
> Addresses-Coverity: ("Unused value")
> Fixes: b8f8a0b7b5cb ("net: atlantic: MACSec ingress offload HW bindings")
> Signed-off-by: Colin Ian King <[email protected]>

Applied, thanks.