Al Viro
9916ecb0a6
[XFRM]: struct xfrm_usersa_id annotations
...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk >
Signed-off-by: David S. Miller <davem@davemloft.net >
2006-09-28 18:02:42 -07:00
Al Viro
61f4627b2f
[XFRM]: xfrm_replay_advance() annotations
...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk >
Signed-off-by: David S. Miller <davem@davemloft.net >
2006-09-28 18:02:41 -07:00
Al Viro
a252cc2371
[XFRM]: xrfm_replay_check() annotations
...
seq argument is net-endian
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk >
Signed-off-by: David S. Miller <davem@davemloft.net >
2006-09-28 18:02:40 -07:00
Al Viro
6067b2baba
[XFRM]: xfrm_parse_spi() annotations
...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk >
Signed-off-by: David S. Miller <davem@davemloft.net >
2006-09-28 18:02:39 -07:00
Al Viro
e037c39bf9
[XFRM]: struct xfrm_id annotations
...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk >
Signed-off-by: David S. Miller <davem@davemloft.net >
2006-09-28 18:02:38 -07:00
Al Viro
a94cfd1974
[XFRM]: xfrm_state_lookup() annotations
...
spi argument of xfrm_state_lookup() is net-endian
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk >
Signed-off-by: David S. Miller <davem@davemloft.net >
2006-09-28 18:02:37 -07:00
Al Viro
26977b4ed7
[XFRM]: xfrm_alloc_spi() annotated
...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk >
Signed-off-by: David S. Miller <davem@davemloft.net >
2006-09-28 18:02:36 -07:00
Al Viro
737b5761df
[XFRM]: xfrm_address_t annotations
...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk >
Signed-off-by: David S. Miller <davem@davemloft.net >
2006-09-28 18:02:35 -07:00
Al Viro
5f19343fb1
[XFRM]: addr_match() annotations
...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk >
Signed-off-by: David S. Miller <davem@davemloft.net >
2006-09-28 18:02:34 -07:00
Al Viro
8f83f23e6d
[XFRM]: ports in struct xfrm_selector annotated
...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk >
Signed-off-by: David S. Miller <davem@davemloft.net >
2006-09-28 18:02:33 -07:00
Al Viro
f9d07e41f8
[XFRM]: xfrm_flowi_[sd]port() annotations
...
both return net-endian
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk >
Signed-off-by: David S. Miller <davem@davemloft.net >
2006-09-28 18:02:32 -07:00
Al Viro
e2e38e819b
[IPV6]: sin6_port is net-endian
...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk >
Signed-off-by: David S. Miller <davem@davemloft.net >
2006-09-28 18:02:31 -07:00
Al Viro
43505077df
[IPV6]: IPv6 headers annotations
...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk >
Signed-off-by: David S. Miller <davem@davemloft.net >
2006-09-28 18:02:30 -07:00
Al Viro
48818f822d
[IPV6]: struct in6_addr annotations
...
in6_addr elements are net-endian
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk >
Signed-off-by: David S. Miller <davem@davemloft.net >
2006-09-28 18:02:30 -07:00
Al Viro
9f8552996d
[IPV4]: inet_diag annotations
...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk >
Signed-off-by: David S. Miller <davem@davemloft.net >
2006-09-28 18:02:29 -07:00
Al Viro
82103232ed
[IPV4]: inet_rcv_saddr() annotations
...
inet_rcv_saddr() returns net-endian
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk >
Signed-off-by: David S. Miller <davem@davemloft.net >
2006-09-28 18:02:28 -07:00
Al Viro
23f33c2d4f
[IPV4]: struct inet_timewait_sock annotations
...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk >
Signed-off-by: David S. Miller <davem@davemloft.net >
2006-09-28 18:02:27 -07:00
Al Viro
fb99c848e5
[IPV4]: annotate inet_lookup() and friends
...
inet_lookup() annotated along with helper functions (__inet_lookup(),
__inet_lookup_established(), inet_lookup_established(),
inet_lookup_listener(), __inet_lookup_listener() and inet_ehashfn())
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk >
Signed-off-by: David S. Miller <davem@davemloft.net >
2006-09-28 18:02:26 -07:00
Al Viro
4f765d842f
[IPV4]: INET_MATCH() annotations
...
INET_MATCH() and friends depend on an interesting set of kludges:
* there's a pair of adjacent fields in struct inet_sock - __be16 dport
followed by __u16 num. We want to search by pair, so we combine the keys into
a single 32bit value and compare with 32bit value read from &...->dport.
* on 64bit targets we combine comparisons with pair of adjacent __be32
fields in the same way.
Make sure that we don't mix those values with anything else and that pairs
we form them from have correct types.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk >
Signed-off-by: David S. Miller <davem@davemloft.net >
2006-09-28 18:02:25 -07:00
Al Viro
81f7bf6cba
[IPV4]: net/ipv4/fib annotations
...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk >
Signed-off-by: David S. Miller <davem@davemloft.net >
2006-09-28 18:02:23 -07:00
Al Viro
114c7844f3
[IPV4]: mroute annotations
...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk >
Signed-off-by: David S. Miller <davem@davemloft.net >
2006-09-28 18:02:22 -07:00
Al Viro
1b62015427
[IPV4]: PIMv2 header annotations
...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk >
Signed-off-by: David S. Miller <davem@davemloft.net >
2006-09-28 18:02:21 -07:00
Al Viro
b1dd39ac96
[IPV4]: ICMP header annotations
...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk >
Signed-off-by: David S. Miller <davem@davemloft.net >
2006-09-28 18:02:18 -07:00
Al Viro
4e7e0c7592
[IPV4]: UDP header annotations
...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk >
Signed-off-by: David S. Miller <davem@davemloft.net >
2006-09-28 18:02:16 -07:00
Al Viro
6b72977bd6
[IPV4]: inet_csk_search_req() annotations
...
rport argument is net-endian
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk >
Signed-off-by: David S. Miller <davem@davemloft.net >
2006-09-28 18:02:15 -07:00