diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-09-28 17:29:52 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-28 21:03:04 -0400 |
commit | 014d730d56b559eacb11e91969a1f41c3feb36f9 (patch) | |
tree | d8c3a08108f435879b4d436c7b3c4a726d31c6af /net/ipv4/ipvs/ip_vs_sync.c | |
parent | d4263cde88d3fee2af0aac8836bb785cdb6b06c0 (diff) |
[IPVS]: ipvs annotations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/ipvs/ip_vs_sync.c')
-rw-r--r-- | net/ipv4/ipvs/ip_vs_sync.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/net/ipv4/ipvs/ip_vs_sync.c b/net/ipv4/ipvs/ip_vs_sync.c index 0c8d20da6139..6ab57d72b615 100644 --- a/net/ipv4/ipvs/ip_vs_sync.c +++ b/net/ipv4/ipvs/ip_vs_sync.c | |||
@@ -48,16 +48,16 @@ struct ip_vs_sync_conn { | |||
48 | 48 | ||
49 | /* Protocol, addresses and port numbers */ | 49 | /* Protocol, addresses and port numbers */ |
50 | __u8 protocol; /* Which protocol (TCP/UDP) */ | 50 | __u8 protocol; /* Which protocol (TCP/UDP) */ |
51 | __u16 cport; | 51 | __be16 cport; |
52 | __u16 vport; | 52 | __be16 vport; |
53 | __u16 dport; | 53 | __be16 dport; |
54 | __u32 caddr; /* client address */ | 54 | __be32 caddr; /* client address */ |
55 | __u32 vaddr; /* virtual address */ | 55 | __be32 vaddr; /* virtual address */ |
56 | __u32 daddr; /* destination address */ | 56 | __be32 daddr; /* destination address */ |
57 | 57 | ||
58 | /* Flags and state transition */ | 58 | /* Flags and state transition */ |
59 | __u16 flags; /* status flags */ | 59 | __be16 flags; /* status flags */ |
60 | __u16 state; /* state info */ | 60 | __be16 state; /* state info */ |
61 | 61 | ||
62 | /* The sequence options start here */ | 62 | /* The sequence options start here */ |
63 | }; | 63 | }; |