Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 749a8503 authored by Dmitry Kravkov's avatar Dmitry Kravkov Committed by David S. Miller
Browse files

bnx2x: remove unused parameter in reuse_rx_skb()

parent f2e0899f
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -595,7 +595,7 @@ int bnx2x_rx_int(struct bnx2x_fastpath *fp, int budget)
				skb_reserve(new_skb, pad);
				skb_reserve(new_skb, pad);
				skb_put(new_skb, len);
				skb_put(new_skb, len);


				bnx2x_reuse_rx_skb(fp, skb, bd_cons, bd_prod);
				bnx2x_reuse_rx_skb(fp, bd_cons, bd_prod);


				skb = new_skb;
				skb = new_skb;


@@ -614,7 +614,7 @@ int bnx2x_rx_int(struct bnx2x_fastpath *fp, int budget)
				   "of alloc failure\n");
				   "of alloc failure\n");
				fp->eth_q_stats.rx_skb_alloc_failed++;
				fp->eth_q_stats.rx_skb_alloc_failed++;
reuse_rx:
reuse_rx:
				bnx2x_reuse_rx_skb(fp, skb, bd_cons, bd_prod);
				bnx2x_reuse_rx_skb(fp, bd_cons, bd_prod);
				goto next_rx;
				goto next_rx;
			}
			}


+1 −1
Original line number Original line Diff line number Diff line
@@ -696,7 +696,7 @@ static inline int bnx2x_alloc_rx_skb(struct bnx2x *bp,
 * so there is no need to check for dma_mapping_error().
 * so there is no need to check for dma_mapping_error().
 */
 */
static inline void bnx2x_reuse_rx_skb(struct bnx2x_fastpath *fp,
static inline void bnx2x_reuse_rx_skb(struct bnx2x_fastpath *fp,
			       struct sk_buff *skb, u16 cons, u16 prod)
				      u16 cons, u16 prod)
{
{
	struct bnx2x *bp = fp->bp;
	struct bnx2x *bp = fp->bp;
	struct sw_rx_bd *cons_rx_buf = &fp->rx_buf_ring[cons];
	struct sw_rx_bd *cons_rx_buf = &fp->rx_buf_ring[cons];