All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH wpan-next] net: mac802154: Fix symbol durations
@ 2022-04-28 16:41 Miquel Raynal
  2022-04-28 18:32 ` Alexander Aring
  2022-04-30 18:37 ` Stefan Schmidt
  0 siblings, 2 replies; 3+ messages in thread
From: Miquel Raynal @ 2022-04-28 16:41 UTC (permalink / raw)
  To: Alexander Aring, Stefan Schmidt, linux-wpan
  Cc: David S. Miller, Jakub Kicinski, netdev, David Girault,
	Romuald Despres, Frederic Blain, Nicolas Schodet,
	Thomas Petazzoni, Miquel Raynal

There are two major issues in the logic calculating the symbol durations
based on the page/channel:
- The page number is used in place of the channel value.
- The BIT() macro is missing because we want to check the channel
  value against a bitmask.

Fix these two errors and apologize loudly for this mistake.

Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
---
 net/mac802154/main.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/net/mac802154/main.c b/net/mac802154/main.c
index 5546ef86e231..bd7bdb1219dd 100644
--- a/net/mac802154/main.c
+++ b/net/mac802154/main.c
@@ -119,26 +119,26 @@ void ieee802154_configure_durations(struct wpan_phy *phy)
 
 	switch (phy->current_page) {
 	case 0:
-		if (BIT(phy->current_page) & 0x1)
+		if (BIT(phy->current_channel) & 0x1)
 			/* 868 MHz BPSK 802.15.4-2003: 20 ksym/s */
 			duration = 50 * NSEC_PER_USEC;
-		else if (phy->current_page & 0x7FE)
+		else if (BIT(phy->current_channel) & 0x7FE)
 			/* 915 MHz BPSK	802.15.4-2003: 40 ksym/s */
 			duration = 25 * NSEC_PER_USEC;
-		else if (phy->current_page & 0x7FFF800)
+		else if (BIT(phy->current_channel) & 0x7FFF800)
 			/* 2400 MHz O-QPSK 802.15.4-2006: 62.5 ksym/s */
 			duration = 16 * NSEC_PER_USEC;
 		break;
 	case 2:
-		if (BIT(phy->current_page) & 0x1)
+		if (BIT(phy->current_channel) & 0x1)
 			/* 868 MHz O-QPSK 802.15.4-2006: 25 ksym/s */
 			duration = 40 * NSEC_PER_USEC;
-		else if (phy->current_page & 0x7FE)
+		else if (BIT(phy->current_channel) & 0x7FE)
 			/* 915 MHz O-QPSK 802.15.4-2006: 62.5 ksym/s */
 			duration = 16 * NSEC_PER_USEC;
 		break;
 	case 3:
-		if (BIT(phy->current_page) & 0x3FFF)
+		if (BIT(phy->current_channel) & 0x3FFF)
 			/* 2.4 GHz CSS 802.15.4a-2007: 1/6 Msym/s */
 			duration = 6 * NSEC_PER_USEC;
 		break;
-- 
2.27.0


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

* Re: [PATCH wpan-next] net: mac802154: Fix symbol durations
  2022-04-28 16:41 [PATCH wpan-next] net: mac802154: Fix symbol durations Miquel Raynal
@ 2022-04-28 18:32 ` Alexander Aring
  2022-04-30 18:37 ` Stefan Schmidt
  1 sibling, 0 replies; 3+ messages in thread
From: Alexander Aring @ 2022-04-28 18:32 UTC (permalink / raw)
  To: Miquel Raynal
  Cc: Stefan Schmidt, linux-wpan - ML, David S. Miller, Jakub Kicinski,
	open list:NETWORKING [GENERAL],
	David Girault, Romuald Despres, Frederic Blain, Nicolas Schodet,
	Thomas Petazzoni

Hi,

On Thu, Apr 28, 2022 at 12:41 PM Miquel Raynal
<miquel.raynal@bootlin.com> wrote:
>
> There are two major issues in the logic calculating the symbol durations
> based on the page/channel:
> - The page number is used in place of the channel value.
> - The BIT() macro is missing because we want to check the channel
>   value against a bitmask.
>
> Fix these two errors and apologize loudly for this mistake.
>
> Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>

Acked-by: Alexander Aring <aahringo@redhat.com>

- Alex

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

* Re: [PATCH wpan-next] net: mac802154: Fix symbol durations
  2022-04-28 16:41 [PATCH wpan-next] net: mac802154: Fix symbol durations Miquel Raynal
  2022-04-28 18:32 ` Alexander Aring
@ 2022-04-30 18:37 ` Stefan Schmidt
  1 sibling, 0 replies; 3+ messages in thread
From: Stefan Schmidt @ 2022-04-30 18:37 UTC (permalink / raw)
  To: Miquel Raynal, Alexander Aring, linux-wpan
  Cc: David S. Miller, Jakub Kicinski, netdev, David Girault,
	Romuald Despres, Frederic Blain, Nicolas Schodet,
	Thomas Petazzoni

Hello.

On 28.04.22 18:41, Miquel Raynal wrote:
> There are two major issues in the logic calculating the symbol durations
> based on the page/channel:
> - The page number is used in place of the channel value.
> - The BIT() macro is missing because we want to check the channel
>    value against a bitmask.
> 
> Fix these two errors and apologize loudly for this mistake.
> 
> Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>


This patch has been applied to the wpan-next tree and will be
part of the next pull request to net-next. Thanks!

regards
Stefan Schmidt

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

end of thread, other threads:[~2022-04-30 18:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-28 16:41 [PATCH wpan-next] net: mac802154: Fix symbol durations Miquel Raynal
2022-04-28 18:32 ` Alexander Aring
2022-04-30 18:37 ` Stefan Schmidt

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.