aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorGanesh Venkatesan <ganesh.venkatesan@intel.com>2005-01-08 02:28:21 -0500
committerJeff Garzik <jgarzik@pobox.com>2005-01-08 02:28:21 -0500
commit4696435025beab9260192a8f78e1174b7e0a0dae (patch)
treef54aa3e37de8635dfd8964c2637e3f0164cfdeec /drivers
parentc14cb241c84c08c377e1a8d3976907502afc05ac (diff)
downloadhistory-4696435025beab9260192a8f78e1174b7e0a0dae.tar.gz
[PATCH] ixgb: Shrink size and fix ordering of elements in ixgb_buffer
Signed-off-by: Ganesh Venkatesan <ganesh.venkatesan@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/ixgb/ixgb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ixgb/ixgb.h b/drivers/net/ixgb/ixgb.h
index 34f2c2dc2b1fcf..926e1ec0d2f937 100644
--- a/drivers/net/ixgb/ixgb.h
+++ b/drivers/net/ixgb/ixgb.h
@@ -120,9 +120,9 @@ struct ixgb_adapter;
struct ixgb_buffer {
struct sk_buff *skb;
uint64_t dma;
- unsigned long length;
unsigned long time_stamp;
- unsigned int next_to_watch;
+ uint16_t length;
+ uint16_t next_to_watch;
};
struct ixgb_desc_ring {