diff mbox

ixgbevf - Remove unused parameter in ixgbevf_receive_skb

Message ID 20120813144255.GA4789@fedora-17-guest.blr.amer.dell.com
State Awaiting Upstream, archived
Delegated to: David Miller
Headers show

Commit Message

Narendra K Aug. 13, 2012, 2:44 p.m. UTC
From: Narendra K <narendra_k@dell.com>

Remove 'rx_ring' parameter as it is not used in ixgbevf_receive_skb

Signed-off-by: Narendra K <narendra_k@dell.com>
---
The patch applies to 'net' tree.

 drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c |    4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

Comments

Waskiewicz Jr, Peter P Aug. 13, 2012, 3:58 p.m. UTC | #1
On Mon, 2012-08-13 at 07:44 -0700, Narendra_K@Dell.com wrote:
> From: Narendra K <narendra_k@dell.com>

> 

> Remove 'rx_ring' parameter as it is not used in ixgbevf_receive_skb

> 

> Signed-off-by: Narendra K <narendra_k@dell.com>

> ---

> The patch applies to 'net' tree.


Thanks Narenda, we'll get it applied and tested in our internal trees.

Cheers,
-PJ
diff mbox

Patch

diff --git a/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c b/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c
index 60ef645..cc5cdeb 100644
--- a/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c
+++ b/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c
@@ -272,12 +272,10 @@  cont_loop:
  * @q_vector: structure containing interrupt and ring information
  * @skb: packet to send up
  * @status: hardware indication of status of receive
- * @rx_ring: rx descriptor ring (for a specific queue) to setup
  * @rx_desc: rx descriptor
  **/
 static void ixgbevf_receive_skb(struct ixgbevf_q_vector *q_vector,
 				struct sk_buff *skb, u8 status,
-				struct ixgbevf_ring *ring,
 				union ixgbe_adv_rx_desc *rx_desc)
 {
 	struct ixgbevf_adapter *adapter = q_vector->adapter;
@@ -461,7 +459,7 @@  static bool ixgbevf_clean_rx_irq(struct ixgbevf_q_vector *q_vector,
 		}
 		skb->protocol = eth_type_trans(skb, rx_ring->netdev);
 
-		ixgbevf_receive_skb(q_vector, skb, staterr, rx_ring, rx_desc);
+		ixgbevf_receive_skb(q_vector, skb, staterr, rx_desc);
 
 next_desc:
 		rx_desc->wb.upper.status_error = 0;