aboutsummaryrefslogtreecommitdiff
path: root/include/net
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2006-09-26 21:26:42 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2006-09-28 17:54:05 -0700
commitf2c3fe24119ee4f8faca08699f0488f500014a27 (patch)
tree7f1d1e4a80f3b9f345a5339bc7370ad187132a55 /include/net
parent8c7bc84085135d5cc87e9fc6802d3c7bbbb40ef5 (diff)
[IPV4]: annotate ipv4 addresses in struct rtable and struct flowi
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r--include/net/flow.h4
-rw-r--r--include/net/route.h8
2 files changed, 6 insertions, 6 deletions
diff --git a/include/net/flow.h b/include/net/flow.h
index 3ca210ec137..97569af9bda 100644
--- a/include/net/flow.h
+++ b/include/net/flow.h
@@ -16,8 +16,8 @@ struct flowi {
union {
struct {
- __u32 daddr;
- __u32 saddr;
+ __be32 daddr;
+ __be32 saddr;
__u32 fwmark;
__u8 tos;
__u8 scope;
diff --git a/include/net/route.h b/include/net/route.h
index 64a18811526..5bb2b15b439 100644
--- a/include/net/route.h
+++ b/include/net/route.h
@@ -62,18 +62,18 @@ struct rtable
__u16 rt_type;
__u16 rt_multipath_alg;
- __u32 rt_dst; /* Path destination */
- __u32 rt_src; /* Path source */
+ __be32 rt_dst; /* Path destination */
+ __be32 rt_src; /* Path source */
int rt_iif;
/* Info on neighbour */
- __u32 rt_gateway;
+ __be32 rt_gateway;
/* Cache lookup keys */
struct flowi fl;
/* Miscellaneous cached information */
- __u32 rt_spec_dst; /* RFC1122 specific destination */
+ __be32 rt_spec_dst; /* RFC1122 specific destination */
struct inet_peer *peer; /* long-living peer info */
};