linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [linux-next:master 6725/7405] drivers/net/ethernet/freescale/enetc/enetc.c:452:30: error: implicit declaration of function 'csum_ipv6_magic'; did you mean 'csum_tcpudp_magic'?
@ 2021-10-11 20:15 kernel test robot
  0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2021-10-11 20:15 UTC (permalink / raw)
  To: Ioana Ciornei
  Cc: kbuild-all, Linux Memory Management List, Claudiu Manoil,
	Vladimir Oltean

[-- Attachment #1: Type: text/plain, Size: 2856 bytes --]

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
head:   d3134eb5de8546a214c028fb7195e764b89da7d4
commit: fb8629e2cbfce2b695521d6d33d029117ceda007 [6725/7405] net: enetc: add support for software TSO
config: arc-allyesconfig (attached as .config)
compiler: arceb-elf-gcc (GCC) 11.2.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?id=fb8629e2cbfce2b695521d6d33d029117ceda007
        git remote add linux-next https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
        git fetch --no-tags linux-next master
        git checkout fb8629e2cbfce2b695521d6d33d029117ceda007
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross ARCH=arc 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   drivers/net/ethernet/freescale/enetc/enetc.c: In function 'enetc_tso_complete_csum':
>> drivers/net/ethernet/freescale/enetc/enetc.c:452:30: error: implicit declaration of function 'csum_ipv6_magic'; did you mean 'csum_tcpudp_magic'? [-Werror=implicit-function-declaration]
     452 |                 csum_final = csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
         |                              ^~~~~~~~~~~~~~~
         |                              csum_tcpudp_magic
   cc1: all warnings being treated as errors


vim +452 drivers/net/ethernet/freescale/enetc/enetc.c

   436	
   437	static void enetc_tso_complete_csum(struct enetc_bdr *tx_ring, struct tso_t *tso,
   438					    struct sk_buff *skb, char *hdr, int len,
   439					    __wsum sum)
   440	{
   441		char *l4_hdr = hdr + skb_transport_offset(skb);
   442		__sum16 csum_final;
   443	
   444		/* Complete the L4 checksum by appending the pseudo-header to the
   445		 * already computed checksum.
   446		 */
   447		if (!tso->ipv6)
   448			csum_final = csum_tcpudp_magic(ip_hdr(skb)->saddr,
   449						       ip_hdr(skb)->daddr,
   450						       len, ip_hdr(skb)->protocol, sum);
   451		else
 > 452			csum_final = csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
   453						     &ipv6_hdr(skb)->daddr,
   454						     len, ipv6_hdr(skb)->nexthdr, sum);
   455	
   456		if (tso->tlen != sizeof(struct udphdr)) {
   457			struct tcphdr *tcph = (struct tcphdr *)(l4_hdr);
   458	
   459			tcph->check = csum_final;
   460		} else {
   461			struct udphdr *udph = (struct udphdr *)(l4_hdr);
   462	
   463			udph->check = csum_final;
   464		}
   465	}
   466	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 69187 bytes --]

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-10-11 20:16 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-11 20:15 [linux-next:master 6725/7405] drivers/net/ethernet/freescale/enetc/enetc.c:452:30: error: implicit declaration of function 'csum_ipv6_magic'; did you mean 'csum_tcpudp_magic'? kernel test robot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox