diff mbox series

[net] nfp: fix simple vNIC mailbox length

Message ID 20190307185213.8024-1-jakub.kicinski@netronome.com
State Accepted
Delegated to: David Miller
Headers show
Series [net] nfp: fix simple vNIC mailbox length | expand

Commit Message

Jakub Kicinski March 7, 2019, 6:52 p.m. UTC
From: Dirk van der Merwe <dirk.vandermerwe@netronome.com>

The simple vNIC mailbox length should be 12 decimal and not 0x12.
Using a decimal also makes it clear this is a length value and not
another field within the simple mailbox defines.

Found by code inspection, there are no known firmware configurations
where this would cause issues.

Fixes: 527d7d1b9949 ("nfp: read mailbox address from TLV caps")
Signed-off-by: Dirk van der Merwe <dirk.vandermerwe@netronome.com>
Reviewed-by: Jakub Kicinski <jakub.kicinski@netronome.com>
---
 drivers/net/ethernet/netronome/nfp/nfp_net_ctrl.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

David Miller March 7, 2019, 7:01 p.m. UTC | #1
From: Jakub Kicinski <jakub.kicinski@netronome.com>
Date: Thu,  7 Mar 2019 10:52:13 -0800

> From: Dirk van der Merwe <dirk.vandermerwe@netronome.com>
> 
> The simple vNIC mailbox length should be 12 decimal and not 0x12.
> Using a decimal also makes it clear this is a length value and not
> another field within the simple mailbox defines.
> 
> Found by code inspection, there are no known firmware configurations
> where this would cause issues.

Therefore I am not queueing this up for -stable, let me know if I
still should.

> Fixes: 527d7d1b9949 ("nfp: read mailbox address from TLV caps")
> Signed-off-by: Dirk van der Merwe <dirk.vandermerwe@netronome.com>
> Reviewed-by: Jakub Kicinski <jakub.kicinski@netronome.com>

Applied, thanks.
diff mbox series

Patch

diff --git a/drivers/net/ethernet/netronome/nfp/nfp_net_ctrl.h b/drivers/net/ethernet/netronome/nfp/nfp_net_ctrl.h
index 166d7f71442e..372adea10e14 100644
--- a/drivers/net/ethernet/netronome/nfp/nfp_net_ctrl.h
+++ b/drivers/net/ethernet/netronome/nfp/nfp_net_ctrl.h
@@ -392,7 +392,7 @@ 
 #define NFP_NET_CFG_MBOX_SIMPLE_CMD	0x0
 #define NFP_NET_CFG_MBOX_SIMPLE_RET	0x4
 #define NFP_NET_CFG_MBOX_SIMPLE_VAL	0x8
-#define NFP_NET_CFG_MBOX_SIMPLE_LEN	0x12
+#define NFP_NET_CFG_MBOX_SIMPLE_LEN	12
 
 #define NFP_NET_CFG_MBOX_CMD_CTAG_FILTER_ADD 1
 #define NFP_NET_CFG_MBOX_CMD_CTAG_FILTER_KILL 2