aboutsummaryrefslogtreecommitdiffstats
path: root/net/netfilter/x_tables.c
diff options
context:
space:
mode:
authorChangli Gao <xiaosuo@gmail.com>2010-10-04 22:24:12 +0200
committerPatrick McHardy <kaber@trash.net>2010-10-04 22:24:12 +0200
commitf68c53015c5b9aa98ffd87a34009f89bdbbd7160 (patch)
tree93c420dc5f5643125d1bad05398faceeade47416 /net/netfilter/x_tables.c
parente55df53dd62c73185af46fb6ffa7074b05ceefc4 (diff)
downloadkernel_samsung_smdk4412-f68c53015c5b9aa98ffd87a34009f89bdbbd7160.zip
kernel_samsung_smdk4412-f68c53015c5b9aa98ffd87a34009f89bdbbd7160.tar.gz
kernel_samsung_smdk4412-f68c53015c5b9aa98ffd87a34009f89bdbbd7160.tar.bz2
netfilter: unregister nf hooks, matches and targets in the reverse order
Since we register nf hooks, matches and targets in order, we'd better unregister them in the reverse order. Signed-off-by: Changli Gao <xiaosuo@gmail.com> Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'net/netfilter/x_tables.c')
-rw-r--r--net/netfilter/x_tables.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/net/netfilter/x_tables.c b/net/netfilter/x_tables.c
index e34622f..8046350 100644
--- a/net/netfilter/x_tables.c
+++ b/net/netfilter/x_tables.c
@@ -116,10 +116,8 @@ EXPORT_SYMBOL(xt_register_targets);
void
xt_unregister_targets(struct xt_target *target, unsigned int n)
{
- unsigned int i;
-
- for (i = 0; i < n; i++)
- xt_unregister_target(&target[i]);
+ while (n-- > 0)
+ xt_unregister_target(&target[n]);
}
EXPORT_SYMBOL(xt_unregister_targets);
@@ -174,10 +172,8 @@ EXPORT_SYMBOL(xt_register_matches);
void
xt_unregister_matches(struct xt_match *match, unsigned int n)
{
- unsigned int i;
-
- for (i = 0; i < n; i++)
- xt_unregister_match(&match[i]);
+ while (n-- > 0)
+ xt_unregister_match(&match[n]);
}
EXPORT_SYMBOL(xt_unregister_matches);