aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/flow.h
diff options
context:
space:
mode:
authorEric Dumazet <eric.dumazet@gmail.com>2011-11-30 19:00:53 +0000
committerZiyan <jaraidaniel@gmail.com>2016-03-11 15:57:04 +0100
commit921edcf001b259f8d61b9507a22f39af786c2f8e (patch)
tree7f6b1abcaed50654877faad3bd99f46470b65d8c /include/net/flow.h
parent80607610d928c21da5b4ba3d8fded38f8ed80e9f (diff)
downloadkernel_samsung_espresso10-921edcf001b259f8d61b9507a22f39af786c2f8e.zip
kernel_samsung_espresso10-921edcf001b259f8d61b9507a22f39af786c2f8e.tar.gz
kernel_samsung_espresso10-921edcf001b259f8d61b9507a22f39af786c2f8e.tar.bz2
ipv4: use a 64bit load/store in output path
gcc compiler is smart enough to use a single load/store if we memcpy(dptr, sptr, 8) on x86_64, regardless of CONFIG_CC_OPTIMIZE_FOR_SIZE In IP header, daddr immediately follows saddr, this wont change in the future. We only need to make sure our flowi4 (saddr,daddr) fields wont break the rule. Change-Id: Iad9c8fd9121ec84c2599b013badaebba92db7c39 Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/flow.h')
-rw-r--r--include/net/flow.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/net/flow.h b/include/net/flow.h
index e37cfda..3a4e76e 100644
--- a/include/net/flow.h
+++ b/include/net/flow.h
@@ -59,8 +59,11 @@ struct flowi4 {
#define flowi4_proto __fl_common.flowic_proto
#define flowi4_flags __fl_common.flowic_flags
#define flowi4_secid __fl_common.flowic_secid
- __be32 daddr;
+
+ /* (saddr,daddr) must be grouped, same order as in IP header */
__be32 saddr;
+ __be32 daddr;
+
union flowi_uli uli;
#define fl4_sport uli.ports.sport
#define fl4_dport uli.ports.dport