Changeset 43567
- Timestamp:
- 2014-12-08T13:21:17+01:00 (3 years ago)
- Location:
- trunk/target/linux/generic
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/target/linux/generic/patches-3.10/616-net_optimize_xfrm_calls.patch
r43050 r43567 5 5 int err; 6 6 7 + if ( !dev_net(skb->dev)->xfrm.policy_count[XFRM_POLICY_OUT])7 + if (skb->dev && !dev_net(skb->dev)->xfrm.policy_count[XFRM_POLICY_OUT]) 8 8 + return 0; 9 9 + -
trunk/target/linux/generic/patches-3.14/616-net_optimize_xfrm_calls.patch
r42070 r43567 5 5 int err; 6 6 7 + if ( !dev_net(skb->dev)->xfrm.policy_count[XFRM_POLICY_OUT])7 + if (skb->dev && !dev_net(skb->dev)->xfrm.policy_count[XFRM_POLICY_OUT]) 8 8 + return 0; 9 9 + -
trunk/target/linux/generic/patches-3.18/616-net_optimize_xfrm_calls.patch
r43093 r43567 5 5 int err; 6 6 7 + if ( !dev_net(skb->dev)->xfrm.policy_count[XFRM_POLICY_OUT])7 + if (skb->dev && !dev_net(skb->dev)->xfrm.policy_count[XFRM_POLICY_OUT]) 8 8 + return 0; 9 9 +
Note: See TracChangeset
for help on using the changeset viewer.