[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <202510230845.sa3eZvoK-lkp@intel.com>
Date: Thu, 23 Oct 2025 08:24:48 +0800
From: kernel test robot <lkp@...el.com>
To: Dmitry Skorodumov <skorodumov.dmitry@...wei.com>,
netdev@...r.kernel.org, linux-kernel@...r.kernel.org
Cc: oe-kbuild-all@...ts.linux.dev, andrey.bokhanko@...wei.com,
Dmitry Skorodumov <skorodumov.dmitry@...wei.com>,
Andrew Lunn <andrew+netdev@...n.ch>,
Eric Dumazet <edumazet@...gle.com>,
Jakub Kicinski <kuba@...nel.org>, Paolo Abeni <pabeni@...hat.com>
Subject: Re: [PATCH net-next 7/8] ipvlan: Support IPv6 for learnable l2-bridge
Hi Dmitry,
kernel test robot noticed the following build errors:
[auto build test ERROR on net-next/main]
url: https://github.com/intel-lab-lkp/linux/commits/Dmitry-Skorodumov/ipvlan-Implement-learnable-L2-bridge/20251021-224923
base: net-next/main
patch link: https://lore.kernel.org/r/20251021144410.257905-8-skorodumov.dmitry%40huawei.com
patch subject: [PATCH net-next 7/8] ipvlan: Support IPv6 for learnable l2-bridge
config: x86_64-rhel-9.4-func (https://download.01.org/0day-ci/archive/20251023/202510230845.sa3eZvoK-lkp@intel.com/config)
compiler: gcc-14 (Debian 14.2.0-19) 14.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251023/202510230845.sa3eZvoK-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@...el.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202510230845.sa3eZvoK-lkp@intel.com/
All errors (new ones prefixed by >>):
drivers/net/ipvlan/ipvlan_core.c: In function 'ipvlan_snat_patch_tx_ipv6':
>> drivers/net/ipvlan/ipvlan_core.c:832:30: error: implicit declaration of function 'csum_ipv6_magic'; did you mean 'csum_tcpudp_magic'? [-Wimplicit-function-declaration]
832 | icmph->icmp6_cksum = csum_ipv6_magic(&ip6h->saddr, &ip6h->daddr,
| ^~~~~~~~~~~~~~~
| csum_tcpudp_magic
vim +832 drivers/net/ipvlan/ipvlan_core.c
788
789 static void ipvlan_snat_patch_tx_ipv6(struct ipvl_dev *ipvlan,
790 struct sk_buff *skb)
791 {
792 struct ipv6hdr *ip6h;
793 struct icmp6hdr *icmph;
794 u8 icmp_option;
795 u8 *lladdr;
796 u16 ndsize;
797
798 if (unlikely(!pskb_may_pull(skb, sizeof(*ip6h))))
799 return;
800
801 if (ipv6_hdr(skb)->nexthdr != NEXTHDR_ICMP)
802 return;
803
804 if (unlikely(!pskb_may_pull(skb, sizeof(*ip6h) + sizeof(*icmph))))
805 return;
806
807 ip6h = ipv6_hdr(skb);
808 icmph = (struct icmp6hdr *)(ip6h + 1);
809
810 /* Patch Source-LL for solicitation, Target-LL for advertisement */
811 if (icmph->icmp6_type == NDISC_NEIGHBOUR_SOLICITATION ||
812 icmph->icmp6_type == NDISC_ROUTER_SOLICITATION)
813 icmp_option = ND_OPT_SOURCE_LL_ADDR;
814 else if (icmph->icmp6_type == NDISC_NEIGHBOUR_ADVERTISEMENT)
815 icmp_option = ND_OPT_TARGET_LL_ADDR;
816 else
817 return;
818
819 ndsize = htons(ip6h->payload_len);
820 if (unlikely(!pskb_may_pull(skb, sizeof(*ip6h) + ndsize)))
821 return;
822
823 lladdr = ipvlan_search_icmp6_ll_addr(skb, icmp_option);
824 if (!lladdr)
825 return;
826
827 ether_addr_copy(lladdr, ipvlan->phy_dev->dev_addr);
828
829 ip6h = ipv6_hdr(skb);
830 icmph = (struct icmp6hdr *)(ip6h + 1);
831 icmph->icmp6_cksum = 0;
> 832 icmph->icmp6_cksum = csum_ipv6_magic(&ip6h->saddr, &ip6h->daddr,
833 ndsize,
834 IPPROTO_ICMPV6,
835 csum_partial(icmph,
836 ndsize,
837 0));
838 skb->ip_summed = CHECKSUM_COMPLETE;
839 }
840 #else
841 static void ipvlan_snat_patch_tx_ipv6(struct ipvl_dev *ipvlan,
842 struct sk_buff *skb)
843 {
844 }
845 #endif
846
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
Powered by blists - more mailing lists