Commit 0c7b3eef authored by David S. Miller's avatar David S. Miller

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

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 05d84025
...@@ -279,7 +279,7 @@ struct xfrm_policy_afinfo { ...@@ -279,7 +279,7 @@ struct xfrm_policy_afinfo {
int nfheader_len); int nfheader_len);
int (*fill_dst)(struct xfrm_dst *xdst, int (*fill_dst)(struct xfrm_dst *xdst,
struct net_device *dev, struct net_device *dev,
struct flowi *fl); const struct flowi *fl);
}; };
extern int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo); extern int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo);
......
...@@ -68,7 +68,7 @@ static int xfrm4_init_path(struct xfrm_dst *path, struct dst_entry *dst, ...@@ -68,7 +68,7 @@ static int xfrm4_init_path(struct xfrm_dst *path, struct dst_entry *dst,
} }
static int xfrm4_fill_dst(struct xfrm_dst *xdst, struct net_device *dev, static int xfrm4_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
struct flowi *fl) const struct flowi *fl)
{ {
struct rtable *rt = (struct rtable *)xdst->route; struct rtable *rt = (struct rtable *)xdst->route;
......
...@@ -87,7 +87,7 @@ static int xfrm6_init_path(struct xfrm_dst *path, struct dst_entry *dst, ...@@ -87,7 +87,7 @@ static int xfrm6_init_path(struct xfrm_dst *path, struct dst_entry *dst,
} }
static int xfrm6_fill_dst(struct xfrm_dst *xdst, struct net_device *dev, static int xfrm6_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
struct flowi *fl) const struct flowi *fl)
{ {
struct rt6_info *rt = (struct rt6_info*)xdst->route; struct rt6_info *rt = (struct rt6_info*)xdst->route;
......
...@@ -1369,7 +1369,7 @@ static inline int xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst, ...@@ -1369,7 +1369,7 @@ static inline int xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst,
} }
static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev, static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
struct flowi *fl) const struct flowi *fl)
{ {
struct xfrm_policy_afinfo *afinfo = struct xfrm_policy_afinfo *afinfo =
xfrm_policy_get_afinfo(xdst->u.dst.ops->family); xfrm_policy_get_afinfo(xdst->u.dst.ops->family);
......
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