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

Packit Service da4517
diff --git a/net/ipv6/netfilter.c b/net/ipv6/netfilter.c
Packit Service da4517
index a9d587a..23336ed 100644
Packit Service da4517
--- a/net/ipv6/netfilter.c
Packit Service da4517
+++ b/net/ipv6/netfilter.c
Packit Service da4517
@@ -106,6 +106,8 @@ static int nf_ip6_reroute(struct sk_buff *skb,
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
@@ -119,6 +121,9 @@ static int nf_ip6_route(struct net *net, struct dst_entry **dst,
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)