* [PATCH 2/9] bnx2x: annotate struct eth_tx_db_data
@ 2009-01-21 5:50 Harvey Harrison
2009-01-22 17:49 ` Eilon Greenstein
0 siblings, 1 reply; 2+ messages in thread
From: Harvey Harrison @ 2009-01-21 5:50 UTC (permalink / raw)
To: Eilon Greenstein; +Cc: linux-netdev
Always treated as little-endian values, annotate as such, use
the leXX_add_cpu helpers rather than opencoded byteswapping.
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
---
drivers/net/bnx2x_hsi.h | 4 ++--
drivers/net/bnx2x_main.c | 12 ++++--------
2 files changed, 6 insertions(+), 10 deletions(-)
diff --git a/drivers/net/bnx2x_hsi.h b/drivers/net/bnx2x_hsi.h
index efd7644..a3c1068 100644
--- a/drivers/net/bnx2x_hsi.h
+++ b/drivers/net/bnx2x_hsi.h
@@ -2355,8 +2355,8 @@ struct eth_spe {
* doorbell data in host memory
*/
struct eth_tx_db_data {
- u32 packets_prod;
- u16 bds_prod;
+ __le32 packets_prod;
+ __le16 bds_prod;
u16 reserved;
};
diff --git a/drivers/net/bnx2x_main.c b/drivers/net/bnx2x_main.c
index 897f370..2f8d64c 100644
--- a/drivers/net/bnx2x_main.c
+++ b/drivers/net/bnx2x_main.c
@@ -8774,11 +8774,9 @@ static int bnx2x_run_loopback(struct bnx2x *bp, int loopback_mode, u8 link_up)
wmb();
- fp->hw_tx_prods->bds_prod =
- cpu_to_le16(le16_to_cpu(fp->hw_tx_prods->bds_prod) + 1);
+ le16_add_cpu(&fp->hw_tx_prods->bds_prod, 1);
mb(); /* FW restriction: must not reorder writing nbd and packets */
- fp->hw_tx_prods->packets_prod =
- cpu_to_le32(le32_to_cpu(fp->hw_tx_prods->packets_prod) + 1);
+ le32_add_cpu(&fp->hw_tx_prods->packets_prod, 1);
DOORBELL(bp, fp->index, 0);
mmiowb();
@@ -9774,11 +9772,9 @@ static int bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev)
*/
wmb();
- fp->hw_tx_prods->bds_prod =
- cpu_to_le16(le16_to_cpu(fp->hw_tx_prods->bds_prod) + nbd);
+ le16_add_cpu(&fp->hw_tx_prods->bds_prod, nbd);
mb(); /* FW restriction: must not reorder writing nbd and packets */
- fp->hw_tx_prods->packets_prod =
- cpu_to_le32(le32_to_cpu(fp->hw_tx_prods->packets_prod) + 1);
+ le32_add_cpu(&fp->hw_tx_prods->packets_prod, 1);
DOORBELL(bp, fp->index, 0);
mmiowb();
--
1.6.1.249.g455e5
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH 2/9] bnx2x: annotate struct eth_tx_db_data
2009-01-21 5:50 [PATCH 2/9] bnx2x: annotate struct eth_tx_db_data Harvey Harrison
@ 2009-01-22 17:49 ` Eilon Greenstein
0 siblings, 0 replies; 2+ messages in thread
From: Eilon Greenstein @ 2009-01-22 17:49 UTC (permalink / raw)
To: Harvey Harrison; +Cc: linux-netdev
On Tue, 2009-01-20 at 21:50 -0800, Harvey Harrison wrote:
> Always treated as little-endian values, annotate as such, use
> the leXX_add_cpu helpers rather than opencoded byteswapping.
>
> Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
The next few patches are similar, and I feel more comfortable combining
them. I will try to follow your lead and will work on a suggestion that
will complete this task in the next couple of days. I rather not to
submit it half-backed.
Thanks,
Eilon
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-01-22 17:50 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-21 5:50 [PATCH 2/9] bnx2x: annotate struct eth_tx_db_data Harvey Harrison
2009-01-22 17:49 ` Eilon Greenstein
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).