浏览代码

tun: do not arm flow_gc_timer in tun_flow_init()

Timer is properly armed on demand from tun_flow_update(),
so there is no need to arm it at tun init.

Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Eric Dumazet 7 年之前
父节点
当前提交
ee74d9967b
共有 1 个文件被更改,包括 0 次插入2 次删除
  1. 0 2
      drivers/net/tun.c

+ 0 - 2
drivers/net/tun.c

@@ -1197,8 +1197,6 @@ static void tun_flow_init(struct tun_struct *tun)
 
 
 	tun->ageing_time = TUN_FLOW_EXPIRE;
 	tun->ageing_time = TUN_FLOW_EXPIRE;
 	setup_timer(&tun->flow_gc_timer, tun_flow_cleanup, (unsigned long)tun);
 	setup_timer(&tun->flow_gc_timer, tun_flow_cleanup, (unsigned long)tun);
-	mod_timer(&tun->flow_gc_timer,
-		  round_jiffies_up(jiffies + tun->ageing_time));
 }
 }
 
 
 static void tun_flow_uninit(struct tun_struct *tun)
 static void tun_flow_uninit(struct tun_struct *tun)