diff options
author | Patrick McHardy <kaber@trash.net> | 2007-03-23 14:16:30 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:27:43 -0400 |
commit | e6f689db51a789807edede411b32eb7c9e457948 (patch) | |
tree | 6ba28587853721dc617d7f71ab622ac54eb4cd9d /net/netfilter | |
parent | 9afdb00c80b0b9c20435ce690b5287fa2434ef44 (diff) |
[NETFILTER]: Use setup_timer
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/netfilter')
-rw-r--r-- | net/netfilter/nf_conntrack_core.c | 5 | ||||
-rw-r--r-- | net/netfilter/nf_conntrack_expect.c | 4 | ||||
-rw-r--r-- | net/netfilter/nfnetlink_log.c | 5 | ||||
-rw-r--r-- | net/netfilter/xt_hashlimit.c | 4 |
4 files changed, 5 insertions, 13 deletions
diff --git a/net/netfilter/nf_conntrack_core.c b/net/netfilter/nf_conntrack_core.c index a74b205b272d..6f2aac1d01af 100644 --- a/net/netfilter/nf_conntrack_core.c +++ b/net/netfilter/nf_conntrack_core.c | |||
@@ -620,9 +620,8 @@ __nf_conntrack_alloc(const struct nf_conntrack_tuple *orig, | |||
620 | conntrack->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig; | 620 | conntrack->tuplehash[IP_CT_DIR_ORIGINAL].tuple = *orig; |
621 | conntrack->tuplehash[IP_CT_DIR_REPLY].tuple = *repl; | 621 | conntrack->tuplehash[IP_CT_DIR_REPLY].tuple = *repl; |
622 | /* Don't set timer yet: wait for confirmation */ | 622 | /* Don't set timer yet: wait for confirmation */ |
623 | init_timer(&conntrack->timeout); | 623 | setup_timer(&conntrack->timeout, death_by_timeout, |
624 | conntrack->timeout.data = (unsigned long)conntrack; | 624 | (unsigned long)conntrack); |
625 | conntrack->timeout.function = death_by_timeout; | ||
626 | read_unlock_bh(&nf_ct_cache_lock); | 625 | read_unlock_bh(&nf_ct_cache_lock); |
627 | 626 | ||
628 | return conntrack; | 627 | return conntrack; |
diff --git a/net/netfilter/nf_conntrack_expect.c b/net/netfilter/nf_conntrack_expect.c index ce70a6fc6bda..c31af29a4439 100644 --- a/net/netfilter/nf_conntrack_expect.c +++ b/net/netfilter/nf_conntrack_expect.c | |||
@@ -290,9 +290,7 @@ static void nf_conntrack_expect_insert(struct nf_conntrack_expect *exp) | |||
290 | master_help->expecting++; | 290 | master_help->expecting++; |
291 | list_add(&exp->list, &nf_conntrack_expect_list); | 291 | list_add(&exp->list, &nf_conntrack_expect_list); |
292 | 292 | ||
293 | init_timer(&exp->timeout); | 293 | setup_timer(&exp->timeout, expectation_timed_out, (unsigned long)exp); |
294 | exp->timeout.data = (unsigned long)exp; | ||
295 | exp->timeout.function = expectation_timed_out; | ||
296 | exp->timeout.expires = jiffies + master_help->helper->timeout * HZ; | 294 | exp->timeout.expires = jiffies + master_help->helper->timeout * HZ; |
297 | add_timer(&exp->timeout); | 295 | add_timer(&exp->timeout); |
298 | 296 | ||
diff --git a/net/netfilter/nfnetlink_log.c b/net/netfilter/nfnetlink_log.c index 0ae06561ae9a..d2c6aab6bb7a 100644 --- a/net/netfilter/nfnetlink_log.c +++ b/net/netfilter/nfnetlink_log.c | |||
@@ -158,10 +158,7 @@ instance_create(u_int16_t group_num, int pid) | |||
158 | /* needs to be two, since we _put() after creation */ | 158 | /* needs to be two, since we _put() after creation */ |
159 | atomic_set(&inst->use, 2); | 159 | atomic_set(&inst->use, 2); |
160 | 160 | ||
161 | init_timer(&inst->timer); | 161 | setup_timer(&inst->timer, nfulnl_timer, (unsigned long)inst); |
162 | inst->timer.function = nfulnl_timer; | ||
163 | inst->timer.data = (unsigned long)inst; | ||
164 | /* don't start timer yet. (re)start it with every packet */ | ||
165 | 162 | ||
166 | inst->peer_pid = pid; | 163 | inst->peer_pid = pid; |
167 | inst->group_num = group_num; | 164 | inst->group_num = group_num; |
diff --git a/net/netfilter/xt_hashlimit.c b/net/netfilter/xt_hashlimit.c index eb932913693b..d3043fa32ebc 100644 --- a/net/netfilter/xt_hashlimit.c +++ b/net/netfilter/xt_hashlimit.c | |||
@@ -216,10 +216,8 @@ static int htable_create(struct xt_hashlimit_info *minfo, int family) | |||
216 | hinfo->pde->proc_fops = &dl_file_ops; | 216 | hinfo->pde->proc_fops = &dl_file_ops; |
217 | hinfo->pde->data = hinfo; | 217 | hinfo->pde->data = hinfo; |
218 | 218 | ||
219 | init_timer(&hinfo->timer); | 219 | setup_timer(&hinfo->timer, htable_gc, (unsigned long )hinfo); |
220 | hinfo->timer.expires = jiffies + msecs_to_jiffies(hinfo->cfg.gc_interval); | 220 | hinfo->timer.expires = jiffies + msecs_to_jiffies(hinfo->cfg.gc_interval); |
221 | hinfo->timer.data = (unsigned long )hinfo; | ||
222 | hinfo->timer.function = htable_gc; | ||
223 | add_timer(&hinfo->timer); | 221 | add_timer(&hinfo->timer); |
224 | 222 | ||
225 | spin_lock_bh(&hashlimit_lock); | 223 | spin_lock_bh(&hashlimit_lock); |