aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorJesper Juhl <jj@chaosbits.net>2011-11-14 09:08:05 -0500
committerDavid S. Miller <davem@davemloft.net>2011-11-14 21:49:46 -0500
commiteec205719e97c95a422d0aa384d0517f6c74fc0a (patch)
tree99eacd50280e9bf886c45b6dbc5562c140d89f32 /net
parentf8b8a80f2d5f2960482292d961df18a776e3e524 (diff)
net/packet: Revert incorrect dead-code changes to prb_setup_retire_blk_timer
Signed-off-by: Jesper Juhl <jj@chaosbits.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r--net/packet/af_packet.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/net/packet/af_packet.c b/net/packet/af_packet.c
index ab10e84eda3a..82a6f34d39d0 100644
--- a/net/packet/af_packet.c
+++ b/net/packet/af_packet.c
@@ -516,11 +516,13 @@ static void prb_init_blk_timer(struct packet_sock *po,
516 516
517static void prb_setup_retire_blk_timer(struct packet_sock *po, int tx_ring) 517static void prb_setup_retire_blk_timer(struct packet_sock *po, int tx_ring)
518{ 518{
519 struct tpacket_kbdq_core *pkc;
520
519 if (tx_ring) 521 if (tx_ring)
520 BUG(); 522 BUG();
521 523
522 prb_init_blk_timer(po, &po->rx_ring.prb_bdqc, 524 pkc = tx_ring ? &po->tx_ring.prb_bdqc : &po->rx_ring.prb_bdqc;
523 prb_retire_rx_blk_timer_expired); 525 prb_init_blk_timer(po, pkc, prb_retire_rx_blk_timer_expired);
524} 526}
525 527
526static int prb_calc_retire_blk_tmo(struct packet_sock *po, 528static int prb_calc_retire_blk_tmo(struct packet_sock *po,