Commit 99ad3c53 authored by Changli Gao's avatar Changli Gao Committed by Patrick McHardy

netfilter: nf_nat_core: don't check if the tuple is used if there is no other choice

Eliminate nf_nat_used_tuple() to save some CPU cycles when there is no
other choice.
Signed-off-by: default avatarChangli Gao <xiaosuo@gmail.com>
Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
parent 70a85166
...@@ -262,11 +262,17 @@ get_unique_tuple(struct nf_conntrack_tuple *tuple, ...@@ -262,11 +262,17 @@ get_unique_tuple(struct nf_conntrack_tuple *tuple,
proto = __nf_nat_proto_find(orig_tuple->dst.protonum); proto = __nf_nat_proto_find(orig_tuple->dst.protonum);
/* Only bother mapping if it's not already in range and unique */ /* Only bother mapping if it's not already in range and unique */
if (!(range->flags & IP_NAT_RANGE_PROTO_RANDOM) && if (!(range->flags & IP_NAT_RANGE_PROTO_RANDOM)) {
(!(range->flags & IP_NAT_RANGE_PROTO_SPECIFIED) || if (range->flags & IP_NAT_RANGE_PROTO_SPECIFIED) {
proto->in_range(tuple, maniptype, &range->min, &range->max)) && if (proto->in_range(tuple, maniptype, &range->min,
!nf_nat_used_tuple(tuple, ct)) &range->max) &&
goto out; (range->min.all == range->max.all ||
!nf_nat_used_tuple(tuple, ct)))
goto out;
} else if (!nf_nat_used_tuple(tuple, ct)) {
goto out;
}
}
/* Last change: get protocol to try to obtain unique tuple. */ /* Last change: get protocol to try to obtain unique tuple. */
proto->unique_tuple(tuple, range, maniptype, ct); proto->unique_tuple(tuple, range, maniptype, ct);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment