[NETFILTER] NAT sequence adjustment: Save eight bytes per conntrack
authorHarald Welte <laforge@netfilter.org>
Tue, 21 Mar 2006 01:14:12 +0000 (17:14 -0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 21 Mar 2006 01:14:12 +0000 (17:14 -0800)
This patch reduces the size of 'struct ip_conntrack' on systems with NAT
by eight bytes.  The sequence number delta values can be int16_t, since
we only support one sequence number modification per window anyway, and
one such modification is not going to exceed 32kB ;)

Signed-off-by: Harald Welte <laforge@netfilter.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/netfilter_ipv4/ip_nat.h

index 41a107de17cf547510a4923b58595df400a45472..e9f5ed1d9f680f4b32de4c01d26ed50089ec9983 100644 (file)
@@ -23,7 +23,7 @@ struct ip_nat_seq {
         * modification (if any) */
        u_int32_t correction_pos;
        /* sequence number offset before and after last modification */
-       int32_t offset_before, offset_after;
+       int16_t offset_before, offset_after;
 };
 
 /* Single range specification. */