Skip to content

Commit

Permalink
net/xen-netback: Remove unused code in xenvif_rx_action
Browse files Browse the repository at this point in the history
The variables old_req_cons and ring_slots_used are assigned but never
used since commit 1650d54 "xen-netback:
always fully coalesce guest Rx packets".

Signed-off-by: Julien Grall <julien.grall@citrix.com>
Acked-by: Wei Liu <wei.liu2@citrix.com>
Cc: Ian Campbell <ian.campbell@citrix.com>
Cc: netdev@vger.kernel.org
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Julien Grall authored and David S. Miller committed Jun 21, 2015
1 parent 6c10127 commit 44f0764
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions drivers/net/xen-netback/netback.c
Original file line number Diff line number Diff line change
Expand Up @@ -515,14 +515,9 @@ static void xenvif_rx_action(struct xenvif_queue *queue)

while (xenvif_rx_ring_slots_available(queue, XEN_NETBK_RX_SLOTS_MAX)
&& (skb = xenvif_rx_dequeue(queue)) != NULL) {
RING_IDX old_req_cons;
RING_IDX ring_slots_used;

queue->last_rx_time = jiffies;

old_req_cons = queue->rx.req_cons;
XENVIF_RX_CB(skb)->meta_slots_used = xenvif_gop_skb(skb, &npo, queue);
ring_slots_used = queue->rx.req_cons - old_req_cons;

__skb_queue_tail(&rxq, skb);
}
Expand Down

0 comments on commit 44f0764

Please sign in to comment.