Commit a6c2e611152fcdc67047aaa56b75b9cfc592ce71

Authored by David S. Miller
1 parent 73ff93cd02

xfrm: Mark flowi arg to xfrm_tmpl_resolve{,_one}() const.

Signed-off-by: David S. Miller <davem@davemloft.net>

Showing 1 changed file with 4 additions and 6 deletions Side-by-side Diff

net/xfrm/xfrm_policy.c
... ... @@ -1157,9 +1157,8 @@
1157 1157 /* Resolve list of templates for the flow, given policy. */
1158 1158  
1159 1159 static int
1160   -xfrm_tmpl_resolve_one(struct xfrm_policy *policy, struct flowi *fl,
1161   - struct xfrm_state **xfrm,
1162   - unsigned short family)
  1160 +xfrm_tmpl_resolve_one(struct xfrm_policy *policy, const struct flowi *fl,
  1161 + struct xfrm_state **xfrm, unsigned short family)
1163 1162 {
1164 1163 struct net *net = xp_net(policy);
1165 1164 int nx;
... ... @@ -1214,9 +1213,8 @@
1214 1213 }
1215 1214  
1216 1215 static int
1217   -xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, struct flowi *fl,
1218   - struct xfrm_state **xfrm,
1219   - unsigned short family)
  1216 +xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, const struct flowi *fl,
  1217 + struct xfrm_state **xfrm, unsigned short family)
1220 1218 {
1221 1219 struct xfrm_state *tp[XFRM_MAX_DEPTH];
1222 1220 struct xfrm_state **tpp = (npols > 1) ? tp : xfrm;