Re: [PATCH 1/1] netfilter: h323: Use mod_timer instead of set_expect_timeout

2016-07-23 Thread Pablo Neira Ayuso
On Fri, Jul 22, 2016 at 12:59:15PM +0800, f...@ikuai8.com wrote: > From: Gao Feng > > It could simplify the codes without any side effect. > The set_expect_timeout is used to modify the timer expired time. > It tries to delete timer, and add it again. > So we could use mod_timer

[PATCH 1/1] netfilter: h323: Use mod_timer instead of set_expect_timeout

2016-07-21 Thread fgao
From: Gao Feng It could simplify the codes without any side effect. The set_expect_timeout is used to modify the timer expired time. It tries to delete timer, and add it again. So we could use mod_timer directly. Signed-off-by: Gao Feng --- v1: Intial Patch