Skip to content

Commit

Permalink
net/packet: Revert incorrect dead-code changes to prb_setup_retire_bl…
Browse files Browse the repository at this point in the history
…k_timer

Signed-off-by: Jesper Juhl <jj@chaosbits.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
jjuhl authored and davem330 committed Nov 15, 2011
1 parent f8b8a80 commit eec2057
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions net/packet/af_packet.c
Expand Up @@ -516,11 +516,13 @@ static void prb_init_blk_timer(struct packet_sock *po,

static void prb_setup_retire_blk_timer(struct packet_sock *po, int tx_ring)
{
struct tpacket_kbdq_core *pkc;

if (tx_ring)
BUG();

prb_init_blk_timer(po, &po->rx_ring.prb_bdqc,
prb_retire_rx_blk_timer_expired);
pkc = tx_ring ? &po->tx_ring.prb_bdqc : &po->rx_ring.prb_bdqc;
prb_init_blk_timer(po, pkc, prb_retire_rx_blk_timer_expired);
}

static int prb_calc_retire_blk_tmo(struct packet_sock *po,
Expand Down

0 comments on commit eec2057

Please sign in to comment.