Commit 8f029de2 authored by David S. Miller's avatar David S. Miller

xfrm: Mark flowi arg to xfrm_type->reject() const.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 73e5ebb2
...@@ -334,7 +334,8 @@ struct xfrm_type { ...@@ -334,7 +334,8 @@ struct xfrm_type {
void (*destructor)(struct xfrm_state *); void (*destructor)(struct xfrm_state *);
int (*input)(struct xfrm_state *, struct sk_buff *skb); int (*input)(struct xfrm_state *, struct sk_buff *skb);
int (*output)(struct xfrm_state *, struct sk_buff *pskb); int (*output)(struct xfrm_state *, struct sk_buff *pskb);
int (*reject)(struct xfrm_state *, struct sk_buff *, struct flowi *); int (*reject)(struct xfrm_state *, struct sk_buff *,
const struct flowi *);
int (*hdr_offset)(struct xfrm_state *, struct sk_buff *, u8 **); int (*hdr_offset)(struct xfrm_state *, struct sk_buff *, u8 **);
/* Estimate maximal size of result of transformation of a dgram */ /* Estimate maximal size of result of transformation of a dgram */
u32 (*get_mtu)(struct xfrm_state *, int size); u32 (*get_mtu)(struct xfrm_state *, int size);
......
...@@ -203,7 +203,8 @@ static inline int mip6_report_rl_allow(struct timeval *stamp, ...@@ -203,7 +203,8 @@ static inline int mip6_report_rl_allow(struct timeval *stamp,
return allow; return allow;
} }
static int mip6_destopt_reject(struct xfrm_state *x, struct sk_buff *skb, struct flowi *fl) static int mip6_destopt_reject(struct xfrm_state *x, struct sk_buff *skb,
const struct flowi *fl)
{ {
struct net *net = xs_net(x); struct net *net = xs_net(x);
struct inet6_skb_parm *opt = (struct inet6_skb_parm *)skb->cb; struct inet6_skb_parm *opt = (struct inet6_skb_parm *)skb->cb;
......
...@@ -1907,7 +1907,7 @@ int xfrm_lookup(struct net *net, struct dst_entry **dst_p, struct flowi *fl, ...@@ -1907,7 +1907,7 @@ int xfrm_lookup(struct net *net, struct dst_entry **dst_p, struct flowi *fl,
EXPORT_SYMBOL(xfrm_lookup); EXPORT_SYMBOL(xfrm_lookup);
static inline int static inline int
xfrm_secpath_reject(int idx, struct sk_buff *skb, struct flowi *fl) xfrm_secpath_reject(int idx, struct sk_buff *skb, const struct flowi *fl)
{ {
struct xfrm_state *x; struct xfrm_state *x;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment