diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-09-27 18:28:28 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-28 18:01:54 -0700 |
commit | c1d18f9fa09489635a451ee13c1727e1683c2333 (patch) | |
tree | f44abb3c8ac44ec7113c00d2ca86bb2e33488464 /include/net/ip.h | |
parent | 3ca3c68e76686bee058937ade2b96f4de58ee434 (diff) |
[IPV4]: struct ipcm_cookie annotation
->addr is net-endian
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/ip.h')
-rw-r--r-- | include/net/ip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/ip.h b/include/net/ip.h index 6da1229c041..b40bd2f9ed7 100644 --- a/include/net/ip.h +++ b/include/net/ip.h @@ -45,7 +45,7 @@ struct inet_skb_parm struct ipcm_cookie { - u32 addr; + __be32 addr; int oif; struct ip_options *opt; }; |