Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 194918
b: refs/heads/master
c: 0d34545
h: refs/heads/master
v: v3
  • Loading branch information
Jan Engelhardt committed Mar 25, 2010
1 parent 76e2a98 commit b66fe2c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2c46cd8163b25bf6f38e612e9f1d162f0357c8f1
refs/heads/master: 0d34545563f99886b997be7da63f0e8084af3bc5
6 changes: 3 additions & 3 deletions trunk/net/ipv4/netfilter/ipt_CLUSTERIP.c
Original file line number Diff line number Diff line change
Expand Up @@ -401,9 +401,9 @@ static bool clusterip_tg_check(const struct xt_tgchk_param *par)
}
cipinfo->config = config;

if (nf_ct_l3proto_try_module_get(par->target->family) < 0) {
if (nf_ct_l3proto_try_module_get(par->family) < 0) {
printk(KERN_WARNING "can't load conntrack support for "
"proto=%u\n", par->target->family);
"proto=%u\n", par->family);
return false;
}

Expand All @@ -421,7 +421,7 @@ static void clusterip_tg_destroy(const struct xt_tgdtor_param *par)

clusterip_config_put(cipinfo->config);

nf_ct_l3proto_module_put(par->target->family);
nf_ct_l3proto_module_put(par->family);
}

#ifdef CONFIG_COMPAT
Expand Down
4 changes: 2 additions & 2 deletions trunk/net/netfilter/xt_NFQUEUE.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ nfqueue_tg_v1(struct sk_buff *skb, const struct xt_target_param *par)
u32 queue = info->queuenum;

if (info->queues_total > 1) {
if (par->target->family == NFPROTO_IPV4)
if (par->family == NFPROTO_IPV4)
queue = hash_v4(skb) % info->queues_total + queue;
#if defined(CONFIG_IP6_NF_IPTABLES) || defined(CONFIG_IP6_NF_IPTABLES_MODULE)
else if (par->target->family == NFPROTO_IPV6)
else if (par->family == NFPROTO_IPV6)
queue = hash_v6(skb) % info->queues_total + queue;
#endif
}
Expand Down

0 comments on commit b66fe2c

Please sign in to comment.