I think use variable 'min' instead of number '1024' is better. Signed-off-by: Lin Zhang <xiaolou4617@xxxxxxxxx> --- net/netfilter/nf_nat_proto_common.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/netfilter/nf_nat_proto_common.c b/net/netfilter/nf_nat_proto_common.c index fbce552..e87e683 100644 --- a/net/netfilter/nf_nat_proto_common.c +++ b/net/netfilter/nf_nat_proto_common.c @@ -67,7 +67,7 @@ void nf_nat_l4proto_unique_tuple(const struct nf_nat_l3proto *l3proto, } } else { min = 1024; - range_size = 65535 - 1024 + 1; + range_size = 65535 - min + 1; } } else { min = ntohs(range->min_proto.all); -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html