diff options
author | David S. Miller <davem@davemloft.net> | 2011-02-22 21:31:08 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-02-22 21:31:08 -0500 |
commit | 062cdb43b8a8de888a6e2abd31228163cc5d8ee1 (patch) | |
tree | 82f6f683f094211dda63cc9ac68db9664b07871c /net/xfrm | |
parent | 47209abd7925acb3f61ae59884247b612b8904c8 (diff) |
xfrm: Mark flowi arg to xfrm_policy_{lookup_by_type,match}() const.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/xfrm')
-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 1e11398163d5..4a5092ad4d5d 100644 --- a/net/xfrm/xfrm_policy.c +++ b/net/xfrm/xfrm_policy.c | |||
@@ -864,7 +864,7 @@ EXPORT_SYMBOL(xfrm_policy_walk_done); | |||
864 | * | 864 | * |
865 | * Returns 0 if policy found, else an -errno. | 865 | * Returns 0 if policy found, else an -errno. |
866 | */ | 866 | */ |
867 | static int xfrm_policy_match(struct xfrm_policy *pol, struct flowi *fl, | 867 | static int xfrm_policy_match(struct xfrm_policy *pol, const struct flowi *fl, |
868 | u8 type, u16 family, int dir) | 868 | u8 type, u16 family, int dir) |
869 | { | 869 | { |
870 | struct xfrm_selector *sel = &pol->selector; | 870 | struct xfrm_selector *sel = &pol->selector; |
@@ -884,7 +884,7 @@ static int xfrm_policy_match(struct xfrm_policy *pol, struct flowi *fl, | |||
884 | } | 884 | } |
885 | 885 | ||
886 | static struct xfrm_policy *xfrm_policy_lookup_bytype(struct net *net, u8 type, | 886 | static struct xfrm_policy *xfrm_policy_lookup_bytype(struct net *net, u8 type, |
887 | struct flowi *fl, | 887 | const struct flowi *fl, |
888 | u16 family, u8 dir) | 888 | u16 family, u8 dir) |
889 | { | 889 | { |
890 | int err; | 890 | int err; |