Remove some unused fields.

Sponsored by:	Mellanox Technologies
MFC after:	1 week
This commit is contained in:
Hans Petter Selasky 2016-04-14 14:11:32 +00:00
parent b03aadaffc
commit ebcd5b5b31
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=297968
3 changed files with 0 additions and 13 deletions

View File

@ -1243,10 +1243,6 @@ int mlx4_en_start_port(struct net_device *dev)
/* Calculate Rx buf size */
dev->if_mtu = min(dev->if_mtu, priv->max_mtu);
mlx4_en_calc_rx_buf(dev);
priv->rx_alloc_size = max_t(int, 2 * roundup_pow_of_two(priv->rx_mb_size),
PAGE_SIZE);
priv->rx_alloc_order = get_order(priv->rx_alloc_size);
priv->rx_buf_size = roundup_pow_of_two(priv->rx_mb_size);
en_dbg(DRV, priv, "Rx buf size:%d\n", priv->rx_mb_size);
/* Configure rx cq's and rings */

View File

@ -391,9 +391,6 @@ int mlx4_en_activate_rx_rings(struct mlx4_en_priv *priv)
ring->cons = 0;
ring->actual_size = 0;
ring->cqn = priv->rx_cq[ring_ind]->mcq.cqn;
ring->rx_alloc_order = priv->rx_alloc_order;
ring->rx_alloc_size = priv->rx_alloc_size;
ring->rx_buf_size = priv->rx_buf_size;
ring->rx_mb_size = priv->rx_mb_size;
ring->stride = stride;

View File

@ -316,9 +316,6 @@ struct mlx4_en_rx_ring {
u32 cons;
u32 buf_size;
u8 fcs_del;
u16 rx_alloc_order;
u32 rx_alloc_size;
u32 rx_buf_size;
u32 rx_mb_size;
int qpn;
u8 *buf;
@ -557,9 +554,6 @@ struct mlx4_en_priv {
u32 tx_ring_num;
u32 rx_ring_num;
u32 rx_mb_size;
u16 rx_alloc_order;
u32 rx_alloc_size;
u32 rx_buf_size;
struct mlx4_en_tx_ring **tx_ring;
struct mlx4_en_rx_ring *rx_ring[MAX_RX_RINGS];