Re: [PATCH net-next v5 1/2] net: UDP tunnel encapsulation module for tunnelling different protocols like MPLS,IP,NSH etc.
From: David Miller <davem@davemloft.net>
Date: 2020-01-26 20:06:53
From: David Miller <davem@davemloft.net>
Date: 2020-01-26 20:06:53
From: Martin Varghese <redacted> Date: Thu, 23 Jan 2020 23:34:15 +0530
+#ifdef CONFIG_DST_CACHE
+ dst_cache = (struct dst_cache *)&info->dst_cache;
+ if (use_cache) {
+ dst = dst_cache_get_ip6(dst_cache, &fl6->saddr);
+ if (dst)
+ return dst;
+ }
+#endifThis needs also an IPV6 ifdef guard. The kbuild robot has reported this to you for at least v4 and v5 of this patch series. Please do not ignore such reports.