diff options
author | David S. Miller <davem@davemloft.net> | 2011-02-24 00:16:53 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-02-24 02:07:39 -0500 |
commit | 6418c4e07991a7b405d86bd4579c670b50fec99d (patch) | |
tree | 6fac3cf69e9b813f002e2dfcfefc0fbb08135211 /net/xfrm/xfrm_policy.c | |
parent | 5e6b930f21b0a442f9d5db97c8314b4d91be1c27 (diff) |
xfrm: Const'ify address arguments to __xfrm_dst_lookup()
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/xfrm/xfrm_policy.c')
-rw-r--r-- | net/xfrm/xfrm_policy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/xfrm/xfrm_policy.c b/net/xfrm/xfrm_policy.c index 4827c8db864d..5f19ae66ac2d 100644 --- a/net/xfrm/xfrm_policy.c +++ b/net/xfrm/xfrm_policy.c | |||
@@ -92,8 +92,8 @@ int xfrm_selector_match(const struct xfrm_selector *sel, const struct flowi *fl, | |||
92 | } | 92 | } |
93 | 93 | ||
94 | static inline struct dst_entry *__xfrm_dst_lookup(struct net *net, int tos, | 94 | static inline struct dst_entry *__xfrm_dst_lookup(struct net *net, int tos, |
95 | xfrm_address_t *saddr, | 95 | const xfrm_address_t *saddr, |
96 | xfrm_address_t *daddr, | 96 | const xfrm_address_t *daddr, |
97 | int family) | 97 | int family) |
98 | { | 98 | { |
99 | struct xfrm_policy_afinfo *afinfo; | 99 | struct xfrm_policy_afinfo *afinfo; |