mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-23 15:32:33 +00:00
52a82ce3dd
This just copies the files from the kernel 4.14 specific folders into the kernel 4.19 specific folder, no changes are done to the files in this commit. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
21 lines
553 B
Diff
21 lines
553 B
Diff
From: Felix Fietkau <nbd@nbd.name>
|
|
Subject: kernel: add a small xfrm related performance optimization
|
|
|
|
Signed-off-by: Felix Fietkau <nbd@nbd.name>
|
|
---
|
|
net/netfilter/nf_nat_core.c | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
--- a/net/netfilter/nf_nat_core.c
|
|
+++ b/net/netfilter/nf_nat_core.c
|
|
@@ -90,6 +90,9 @@ int nf_xfrm_me_harder(struct net *net, s
|
|
struct dst_entry *dst;
|
|
int err;
|
|
|
|
+ if (skb->dev && !dev_net(skb->dev)->xfrm.policy_count[XFRM_POLICY_OUT])
|
|
+ return 0;
|
|
+
|
|
err = xfrm_decode_session(skb, &fl, family);
|
|
if (err < 0)
|
|
return err;
|