Blame test/integration/rhel-8.1/gcc-static-local-var-6.patch

Packit Service da4517
diff -Nupr src/net/ipv6/netfilter.c src/net/ipv6/netfilter.c
Packit Service da4517
--- src/net/ipv6/netfilter.c	2020-03-11 11:23:32.702734076 +0000
Packit Service da4517
+++ src/net/ipv6/netfilter.c	2020-03-11 11:31:22.397716246 +0000
Packit Service da4517
@@ -87,6 +87,8 @@ static int nf_ip6_reroute(struct sk_buff
Packit Service da4517
 	return 0;
Packit Service da4517
 }
Packit Service da4517
 
Packit Service da4517
+#include "kpatch-macros.h"
Packit Service da4517
+
Packit Service da4517
 static int nf_ip6_route(struct net *net, struct dst_entry **dst,
Packit Service da4517
 			struct flowi *fl, bool strict)
Packit Service da4517
 {
Packit Service da4517
@@ -100,6 +102,9 @@ static int nf_ip6_route(struct net *net,
Packit Service da4517
 	struct dst_entry *result;
Packit Service da4517
 	int err;
Packit Service da4517
 
Packit Service da4517
+	if (!jiffies)
Packit Service da4517
+		printk("kpatch nf_ip6_route foo\n");
Packit Service da4517
+
Packit Service da4517
 	result = ip6_route_output(net, sk, &fl->u.ip6);
Packit Service da4517
 	err = result->error;
Packit Service da4517
 	if (err)