mirror of
https://github.com/torvalds/linux.git
synced 2025-01-01 15:51:46 +00:00
xfrm: Kill strict arg to xfrm_bundle_ok().
Always set to "0". Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
0730b9a150
commit
47209abd79
@ -51,7 +51,7 @@ static void xfrm_policy_put_afinfo(struct xfrm_policy_afinfo *afinfo);
|
|||||||
static void xfrm_init_pmtu(struct dst_entry *dst);
|
static void xfrm_init_pmtu(struct dst_entry *dst);
|
||||||
static int stale_bundle(struct dst_entry *dst);
|
static int stale_bundle(struct dst_entry *dst);
|
||||||
static int xfrm_bundle_ok(struct xfrm_policy *pol, struct xfrm_dst *xdst,
|
static int xfrm_bundle_ok(struct xfrm_policy *pol, struct xfrm_dst *xdst,
|
||||||
struct flowi *fl, int family, int strict);
|
const struct flowi *fl, int family);
|
||||||
|
|
||||||
|
|
||||||
static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
|
static struct xfrm_policy *__xfrm_policy_unlink(struct xfrm_policy *pol,
|
||||||
@ -2210,7 +2210,7 @@ static struct dst_entry *xfrm_dst_check(struct dst_entry *dst, u32 cookie)
|
|||||||
|
|
||||||
static int stale_bundle(struct dst_entry *dst)
|
static int stale_bundle(struct dst_entry *dst)
|
||||||
{
|
{
|
||||||
return !xfrm_bundle_ok(NULL, (struct xfrm_dst *)dst, NULL, AF_UNSPEC, 0);
|
return !xfrm_bundle_ok(NULL, (struct xfrm_dst *)dst, NULL, AF_UNSPEC);
|
||||||
}
|
}
|
||||||
|
|
||||||
void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
|
void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
|
||||||
@ -2283,7 +2283,7 @@ static void xfrm_init_pmtu(struct dst_entry *dst)
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
static int xfrm_bundle_ok(struct xfrm_policy *pol, struct xfrm_dst *first,
|
static int xfrm_bundle_ok(struct xfrm_policy *pol, struct xfrm_dst *first,
|
||||||
struct flowi *fl, int family, int strict)
|
const struct flowi *fl, int family)
|
||||||
{
|
{
|
||||||
struct dst_entry *dst = &first->u.dst;
|
struct dst_entry *dst = &first->u.dst;
|
||||||
struct xfrm_dst *last;
|
struct xfrm_dst *last;
|
||||||
@ -2320,11 +2320,6 @@ static int xfrm_bundle_ok(struct xfrm_policy *pol, struct xfrm_dst *first,
|
|||||||
xdst->policy_genid != atomic_read(&xdst->pols[0]->genid))
|
xdst->policy_genid != atomic_read(&xdst->pols[0]->genid))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if (strict && fl &&
|
|
||||||
!(dst->xfrm->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL) &&
|
|
||||||
!xfrm_state_addr_flow_check(dst->xfrm, fl, family))
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
mtu = dst_mtu(dst->child);
|
mtu = dst_mtu(dst->child);
|
||||||
if (xdst->child_mtu_cached != mtu) {
|
if (xdst->child_mtu_cached != mtu) {
|
||||||
last = xdst;
|
last = xdst;
|
||||||
|
Loading…
Reference in New Issue
Block a user