Skip to content

Commit

Permalink
tg3: Reorg tg3_napi members
Browse files Browse the repository at this point in the history
This patch reorders and realigns the tg3_napi members for a ~3-4%
performance improvement on small packet performance tests.

Signed-off-by: Matt Carlson <mcarlson@broadcom.com>
Reviewed-by: Michael Chan <mchan@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Matt Carlson authored and David S. Miller committed Nov 24, 2010
1 parent cf79003 commit 07ae8fc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions drivers/net/tg3.h
Original file line number Diff line number Diff line change
Expand Up @@ -2715,17 +2715,17 @@ struct tg3_napi {
u32 last_irq_tag;
u32 int_mbox;
u32 coal_now;
u32 tx_prod;
u32 tx_cons;
u32 tx_pending;
u32 prodmbox;

u32 consmbox;
u32 consmbox ____cacheline_aligned;
u32 rx_rcb_ptr;
u16 *rx_rcb_prod_idx;
struct tg3_rx_prodring_set prodring;

struct tg3_rx_buffer_desc *rx_rcb;

u32 tx_prod ____cacheline_aligned;
u32 tx_cons;
u32 tx_pending;
u32 prodmbox;
struct tg3_tx_buffer_desc *tx_ring;
struct ring_info *tx_buffers;

Expand Down

0 comments on commit 07ae8fc

Please sign in to comment.