All of lore.kernel.org
 help / color / mirror / Atom feed
* [ipsec-next:testing 1/2] net/ipv6/esp6.c:144:15: error: implicit declaration of function 'csum_ipv6_magic'; did you mean 'csum_tcpudp_magic'?
@ 2020-04-23 12:02 ` kbuild test robot
  0 siblings, 0 replies; 12+ messages in thread
From: kbuild test robot @ 2020-04-23 12:02 UTC (permalink / raw)
  To: Sabrina Dubroca; +Cc: kbuild-all, netdev, Steffen Klassert

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

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git testing
head:   ce37981d9045220810dabcb9cf20a1d86202c76a
commit: 3fd2d6fdcbb7bcd1fd7110d997fb6ed6eb71dca3 [1/2] xfrm: add support for UDPv6 encapsulation of ESP
config: c6x-allyesconfig (attached as .config)
compiler: c6x-elf-gcc (GCC) 9.3.0
reproduce:
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        git checkout 3fd2d6fdcbb7bcd1fd7110d997fb6ed6eb71dca3
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day GCC_VERSION=9.3.0 make.cross ARCH=c6x 

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

All errors (new ones prefixed by >>):

   net/ipv6/esp6.c: In function 'esp_output_encap_csum':
>> net/ipv6/esp6.c:144:15: error: implicit declaration of function 'csum_ipv6_magic'; did you mean 'csum_tcpudp_magic'? [-Werror=implicit-function-declaration]
     144 |   uh->check = csum_ipv6_magic(&ip6h->saddr, &ip6h->daddr,
         |               ^~~~~~~~~~~~~~~
         |               csum_tcpudp_magic
   cc1: some warnings being treated as errors

vim +144 net/ipv6/esp6.c

   133	
   134	static void esp_output_encap_csum(struct sk_buff *skb)
   135	{
   136		/* UDP encap with IPv6 requires a valid checksum */
   137		if (*skb_mac_header(skb) == IPPROTO_UDP) {
   138			struct udphdr *uh = udp_hdr(skb);
   139			struct ipv6hdr *ip6h = ipv6_hdr(skb);
   140			int len = ntohs(uh->len);
   141			unsigned int offset = skb_transport_offset(skb);
   142			__wsum csum = skb_checksum(skb, offset, skb->len - offset, 0);
   143	
 > 144			uh->check = csum_ipv6_magic(&ip6h->saddr, &ip6h->daddr,
   145						    len, IPPROTO_UDP, csum);
   146			if (uh->check == 0)
   147				uh->check = CSUM_MANGLED_0;
   148		}
   149	}
   150	

---
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: 52562 bytes --]

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [ipsec-next:testing 1/2] net/ipv6/esp6.c:144:15: error: implicit declaration of function 'csum_ipv6_magic'; did you mean 'csum_tcpudp_magic'?
@ 2020-04-23 12:02 ` kbuild test robot
  0 siblings, 0 replies; 12+ messages in thread
From: kbuild test robot @ 2020-04-23 12:02 UTC (permalink / raw)
  To: kbuild-all

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

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git testing
head:   ce37981d9045220810dabcb9cf20a1d86202c76a
commit: 3fd2d6fdcbb7bcd1fd7110d997fb6ed6eb71dca3 [1/2] xfrm: add support for UDPv6 encapsulation of ESP
config: c6x-allyesconfig (attached as .config)
compiler: c6x-elf-gcc (GCC) 9.3.0
reproduce:
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        git checkout 3fd2d6fdcbb7bcd1fd7110d997fb6ed6eb71dca3
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day GCC_VERSION=9.3.0 make.cross ARCH=c6x 

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

All errors (new ones prefixed by >>):

   net/ipv6/esp6.c: In function 'esp_output_encap_csum':
>> net/ipv6/esp6.c:144:15: error: implicit declaration of function 'csum_ipv6_magic'; did you mean 'csum_tcpudp_magic'? [-Werror=implicit-function-declaration]
     144 |   uh->check = csum_ipv6_magic(&ip6h->saddr, &ip6h->daddr,
         |               ^~~~~~~~~~~~~~~
         |               csum_tcpudp_magic
   cc1: some warnings being treated as errors

vim +144 net/ipv6/esp6.c

   133	
   134	static void esp_output_encap_csum(struct sk_buff *skb)
   135	{
   136		/* UDP encap with IPv6 requires a valid checksum */
   137		if (*skb_mac_header(skb) == IPPROTO_UDP) {
   138			struct udphdr *uh = udp_hdr(skb);
   139			struct ipv6hdr *ip6h = ipv6_hdr(skb);
   140			int len = ntohs(uh->len);
   141			unsigned int offset = skb_transport_offset(skb);
   142			__wsum csum = skb_checksum(skb, offset, skb->len - offset, 0);
   143	
 > 144			uh->check = csum_ipv6_magic(&ip6h->saddr, &ip6h->daddr,
   145						    len, IPPROTO_UDP, csum);
   146			if (uh->check == 0)
   147				uh->check = CSUM_MANGLED_0;
   148		}
   149	}
   150	

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

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

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [ipsec-next:testing 1/2] net/ipv6/esp6.c:144:15: error: implicit declaration of function 'csum_ipv6_magic'; did you mean 'csum_tcpudp_magic'?
  2020-04-23 12:02 ` kbuild test robot
@ 2020-04-27  6:47   ` Steffen Klassert
  -1 siblings, 0 replies; 12+ messages in thread
From: Steffen Klassert @ 2020-04-27  6:47 UTC (permalink / raw)
  To: kbuild test robot; +Cc: Sabrina Dubroca, kbuild-all, netdev

On Thu, Apr 23, 2020 at 08:02:30PM +0800, kbuild test robot wrote:
> tree:   https://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git testing
> head:   ce37981d9045220810dabcb9cf20a1d86202c76a
> commit: 3fd2d6fdcbb7bcd1fd7110d997fb6ed6eb71dca3 [1/2] xfrm: add support for UDPv6 encapsulation of ESP
> config: c6x-allyesconfig (attached as .config)
> compiler: c6x-elf-gcc (GCC) 9.3.0
> reproduce:
>         wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
>         chmod +x ~/bin/make.cross
>         git checkout 3fd2d6fdcbb7bcd1fd7110d997fb6ed6eb71dca3
>         # save the attached .config to linux build tree
>         COMPILER_INSTALL_PATH=$HOME/0day GCC_VERSION=9.3.0 make.cross ARCH=c6x 
> 
> If you fix the issue, kindly add following tag as appropriate
> Reported-by: kbuild test robot <lkp@intel.com>
> 
> All errors (new ones prefixed by >>):
> 
>    net/ipv6/esp6.c: In function 'esp_output_encap_csum':
> >> net/ipv6/esp6.c:144:15: error: implicit declaration of function 'csum_ipv6_magic'; did you mean 'csum_tcpudp_magic'? [-Werror=implicit-function-declaration]
>      144 |   uh->check = csum_ipv6_magic(&ip6h->saddr, &ip6h->daddr,
>          |               ^~~~~~~~~~~~~~~
>          |               csum_tcpudp_magic
>    cc1: some warnings being treated as errors

Sabrina, can you please fix this and resend the pachset?

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [ipsec-next:testing 1/2] net/ipv6/esp6.c:144:15: error: implicit declaration of function 'csum_ipv6_magic'; did you mean 'csum_tcpudp_magic'?
@ 2020-04-27  6:47   ` Steffen Klassert
  0 siblings, 0 replies; 12+ messages in thread
From: Steffen Klassert @ 2020-04-27  6:47 UTC (permalink / raw)
  To: kbuild-all

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

On Thu, Apr 23, 2020 at 08:02:30PM +0800, kbuild test robot wrote:
> tree:   https://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git testing
> head:   ce37981d9045220810dabcb9cf20a1d86202c76a
> commit: 3fd2d6fdcbb7bcd1fd7110d997fb6ed6eb71dca3 [1/2] xfrm: add support for UDPv6 encapsulation of ESP
> config: c6x-allyesconfig (attached as .config)
> compiler: c6x-elf-gcc (GCC) 9.3.0
> reproduce:
>         wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
>         chmod +x ~/bin/make.cross
>         git checkout 3fd2d6fdcbb7bcd1fd7110d997fb6ed6eb71dca3
>         # save the attached .config to linux build tree
>         COMPILER_INSTALL_PATH=$HOME/0day GCC_VERSION=9.3.0 make.cross ARCH=c6x 
> 
> If you fix the issue, kindly add following tag as appropriate
> Reported-by: kbuild test robot <lkp@intel.com>
> 
> All errors (new ones prefixed by >>):
> 
>    net/ipv6/esp6.c: In function 'esp_output_encap_csum':
> >> net/ipv6/esp6.c:144:15: error: implicit declaration of function 'csum_ipv6_magic'; did you mean 'csum_tcpudp_magic'? [-Werror=implicit-function-declaration]
>      144 |   uh->check = csum_ipv6_magic(&ip6h->saddr, &ip6h->daddr,
>          |               ^~~~~~~~~~~~~~~
>          |               csum_tcpudp_magic
>    cc1: some warnings being treated as errors

Sabrina, can you please fix this and resend the pachset?

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [ipsec-next:testing 1/2] net/ipv6/esp6.c:144:15: error: implicit declaration of function 'csum_ipv6_magic'; did you mean 'csum_tcpudp_magic'?
  2020-04-23 12:02 ` kbuild test robot
@ 2020-04-27 14:32   ` Sabrina Dubroca
  -1 siblings, 0 replies; 12+ messages in thread
From: Sabrina Dubroca @ 2020-04-27 14:32 UTC (permalink / raw)
  To: kbuild test robot; +Cc: kbuild-all, netdev, Steffen Klassert

2020-04-23, 20:02:30 +0800, kbuild test robot wrote:
> tree:   https://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git testing
> head:   ce37981d9045220810dabcb9cf20a1d86202c76a
> commit: 3fd2d6fdcbb7bcd1fd7110d997fb6ed6eb71dca3 [1/2] xfrm: add support for UDPv6 encapsulation of ESP
> config: c6x-allyesconfig (attached as .config)
> compiler: c6x-elf-gcc (GCC) 9.3.0
> reproduce:
>         wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
>         chmod +x ~/bin/make.cross
>         git checkout 3fd2d6fdcbb7bcd1fd7110d997fb6ed6eb71dca3
>         # save the attached .config to linux build tree
>         COMPILER_INSTALL_PATH=$HOME/0day GCC_VERSION=9.3.0 make.cross ARCH=c6x 

This doesn't work for me :(

$HOME/0day/gcc-9.3.0-nolibc/c6x-elf/bin/../libexec/gcc/c6x-elf/9.3.0/cc1: error while loading shared libraries: libisl.so.19: cannot open shared object file: No such file or directory


-- 
Sabrina


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [ipsec-next:testing 1/2] net/ipv6/esp6.c:144:15: error: implicit declaration of function 'csum_ipv6_magic'; did you mean 'csum_tcpudp_magic'?
@ 2020-04-27 14:32   ` Sabrina Dubroca
  0 siblings, 0 replies; 12+ messages in thread
From: Sabrina Dubroca @ 2020-04-27 14:32 UTC (permalink / raw)
  To: kbuild-all

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

2020-04-23, 20:02:30 +0800, kbuild test robot wrote:
> tree:   https://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git testing
> head:   ce37981d9045220810dabcb9cf20a1d86202c76a
> commit: 3fd2d6fdcbb7bcd1fd7110d997fb6ed6eb71dca3 [1/2] xfrm: add support for UDPv6 encapsulation of ESP
> config: c6x-allyesconfig (attached as .config)
> compiler: c6x-elf-gcc (GCC) 9.3.0
> reproduce:
>         wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
>         chmod +x ~/bin/make.cross
>         git checkout 3fd2d6fdcbb7bcd1fd7110d997fb6ed6eb71dca3
>         # save the attached .config to linux build tree
>         COMPILER_INSTALL_PATH=$HOME/0day GCC_VERSION=9.3.0 make.cross ARCH=c6x 

This doesn't work for me :(

$HOME/0day/gcc-9.3.0-nolibc/c6x-elf/bin/../libexec/gcc/c6x-elf/9.3.0/cc1: error while loading shared libraries: libisl.so.19: cannot open shared object file: No such file or directory


-- 
Sabrina

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [kbuild-all] Re: [ipsec-next:testing 1/2] net/ipv6/esp6.c:144:15: error: implicit declaration of function 'csum_ipv6_magic'; did you mean 'csum_tcpudp_magic'?
  2020-04-27 14:32   ` Sabrina Dubroca
@ 2020-04-28  0:21     ` Rong Chen
  -1 siblings, 0 replies; 12+ messages in thread
From: Rong Chen @ 2020-04-28  0:21 UTC (permalink / raw)
  To: Sabrina Dubroca, kbuild test robot; +Cc: kbuild-all, netdev, Steffen Klassert



On 4/27/20 10:32 PM, Sabrina Dubroca wrote:
> 2020-04-23, 20:02:30 +0800, kbuild test robot wrote:
>> tree:   https://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git testing
>> head:   ce37981d9045220810dabcb9cf20a1d86202c76a
>> commit: 3fd2d6fdcbb7bcd1fd7110d997fb6ed6eb71dca3 [1/2] xfrm: add support for UDPv6 encapsulation of ESP
>> config: c6x-allyesconfig (attached as .config)
>> compiler: c6x-elf-gcc (GCC) 9.3.0
>> reproduce:
>>          wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
>>          chmod +x ~/bin/make.cross
>>          git checkout 3fd2d6fdcbb7bcd1fd7110d997fb6ed6eb71dca3
>>          # save the attached .config to linux build tree
>>          COMPILER_INSTALL_PATH=$HOME/0day GCC_VERSION=9.3.0 make.cross ARCH=c6x
> This doesn't work for me :(
>
> $HOME/0day/gcc-9.3.0-nolibc/c6x-elf/bin/../libexec/gcc/c6x-elf/9.3.0/cc1: error while loading shared libraries: libisl.so.19: cannot open shared object file: No such file or directory
>
>

Hi Sabrina,

You may need to install libisl19.

Best Regards,
Rong Chen

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [ipsec-next:testing 1/2] net/ipv6/esp6.c:144:15: error: implicit declaration of function 'csum_ipv6_magic'; did you mean 'csum_tcpudp_magic'?
@ 2020-04-28  0:21     ` Rong Chen
  0 siblings, 0 replies; 12+ messages in thread
From: Rong Chen @ 2020-04-28  0:21 UTC (permalink / raw)
  To: kbuild-all

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



On 4/27/20 10:32 PM, Sabrina Dubroca wrote:
> 2020-04-23, 20:02:30 +0800, kbuild test robot wrote:
>> tree:   https://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git testing
>> head:   ce37981d9045220810dabcb9cf20a1d86202c76a
>> commit: 3fd2d6fdcbb7bcd1fd7110d997fb6ed6eb71dca3 [1/2] xfrm: add support for UDPv6 encapsulation of ESP
>> config: c6x-allyesconfig (attached as .config)
>> compiler: c6x-elf-gcc (GCC) 9.3.0
>> reproduce:
>>          wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
>>          chmod +x ~/bin/make.cross
>>          git checkout 3fd2d6fdcbb7bcd1fd7110d997fb6ed6eb71dca3
>>          # save the attached .config to linux build tree
>>          COMPILER_INSTALL_PATH=$HOME/0day GCC_VERSION=9.3.0 make.cross ARCH=c6x
> This doesn't work for me :(
>
> $HOME/0day/gcc-9.3.0-nolibc/c6x-elf/bin/../libexec/gcc/c6x-elf/9.3.0/cc1: error while loading shared libraries: libisl.so.19: cannot open shared object file: No such file or directory
>
>

Hi Sabrina,

You may need to install libisl19.

Best Regards,
Rong Chen

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [kbuild-all] Re: [ipsec-next:testing 1/2] net/ipv6/esp6.c:144:15: error: implicit declaration of function 'csum_ipv6_magic'; did you mean 'csum_tcpudp_magic'?
  2020-04-28  0:21     ` Rong Chen
@ 2020-04-29 13:29       ` Sabrina Dubroca
  -1 siblings, 0 replies; 12+ messages in thread
From: Sabrina Dubroca @ 2020-04-29 13:29 UTC (permalink / raw)
  To: Rong Chen; +Cc: kbuild test robot, kbuild-all, netdev, Steffen Klassert

2020-04-28, 08:21:13 +0800, Rong Chen wrote:
> 
> 
> On 4/27/20 10:32 PM, Sabrina Dubroca wrote:
> > 2020-04-23, 20:02:30 +0800, kbuild test robot wrote:
> > > tree:   https://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git testing
> > > head:   ce37981d9045220810dabcb9cf20a1d86202c76a
> > > commit: 3fd2d6fdcbb7bcd1fd7110d997fb6ed6eb71dca3 [1/2] xfrm: add support for UDPv6 encapsulation of ESP
> > > config: c6x-allyesconfig (attached as .config)
> > > compiler: c6x-elf-gcc (GCC) 9.3.0
> > > reproduce:
> > >          wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
> > >          chmod +x ~/bin/make.cross
> > >          git checkout 3fd2d6fdcbb7bcd1fd7110d997fb6ed6eb71dca3
> > >          # save the attached .config to linux build tree
> > >          COMPILER_INSTALL_PATH=$HOME/0day GCC_VERSION=9.3.0 make.cross ARCH=c6x
> > This doesn't work for me :(
> > 
> > $HOME/0day/gcc-9.3.0-nolibc/c6x-elf/bin/../libexec/gcc/c6x-elf/9.3.0/cc1: error while loading shared libraries: libisl.so.19: cannot open shared object file: No such file or directory
> > 
> > 
> 
> Hi Sabrina,
> 
> You may need to install libisl19.

Yes, I could probably do that, but I expected those tools to work on
any system, without having to install additional packages. If I have
to install some extra stuff on my system (and none of the systems I
have come with libisl19, so I'd have to mess around quite a bit), it
makes those tools you provide a lot less convenient to use.

It would be great if you could rebuild them with libisl integrated, so
that it doesn't depend on the system anymore.

Thanks,

-- 
Sabrina


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [ipsec-next:testing 1/2] net/ipv6/esp6.c:144:15: error: implicit declaration of function 'csum_ipv6_magic'; did you mean 'csum_tcpudp_magic'?
@ 2020-04-29 13:29       ` Sabrina Dubroca
  0 siblings, 0 replies; 12+ messages in thread
From: Sabrina Dubroca @ 2020-04-29 13:29 UTC (permalink / raw)
  To: kbuild-all

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

2020-04-28, 08:21:13 +0800, Rong Chen wrote:
> 
> 
> On 4/27/20 10:32 PM, Sabrina Dubroca wrote:
> > 2020-04-23, 20:02:30 +0800, kbuild test robot wrote:
> > > tree:   https://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git testing
> > > head:   ce37981d9045220810dabcb9cf20a1d86202c76a
> > > commit: 3fd2d6fdcbb7bcd1fd7110d997fb6ed6eb71dca3 [1/2] xfrm: add support for UDPv6 encapsulation of ESP
> > > config: c6x-allyesconfig (attached as .config)
> > > compiler: c6x-elf-gcc (GCC) 9.3.0
> > > reproduce:
> > >          wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
> > >          chmod +x ~/bin/make.cross
> > >          git checkout 3fd2d6fdcbb7bcd1fd7110d997fb6ed6eb71dca3
> > >          # save the attached .config to linux build tree
> > >          COMPILER_INSTALL_PATH=$HOME/0day GCC_VERSION=9.3.0 make.cross ARCH=c6x
> > This doesn't work for me :(
> > 
> > $HOME/0day/gcc-9.3.0-nolibc/c6x-elf/bin/../libexec/gcc/c6x-elf/9.3.0/cc1: error while loading shared libraries: libisl.so.19: cannot open shared object file: No such file or directory
> > 
> > 
> 
> Hi Sabrina,
> 
> You may need to install libisl19.

Yes, I could probably do that, but I expected those tools to work on
any system, without having to install additional packages. If I have
to install some extra stuff on my system (and none of the systems I
have come with libisl19, so I'd have to mess around quite a bit), it
makes those tools you provide a lot less convenient to use.

It would be great if you could rebuild them with libisl integrated, so
that it doesn't depend on the system anymore.

Thanks,

-- 
Sabrina

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [kbuild-all] Re: [ipsec-next:testing 1/2] net/ipv6/esp6.c:144:15: error: implicit declaration of function 'csum_ipv6_magic'; did you mean 'csum_tcpudp_magic'?
  2020-04-29 13:29       ` Sabrina Dubroca
@ 2020-04-29 14:09         ` Philip Li
  -1 siblings, 0 replies; 12+ messages in thread
From: Philip Li @ 2020-04-29 14:09 UTC (permalink / raw)
  To: Sabrina Dubroca
  Cc: hui.xia, Rong Chen, kbuild test robot, kbuild-all, netdev,
	Steffen Klassert

On Wed, Apr 29, 2020 at 03:29:34PM +0200, Sabrina Dubroca wrote:
> 2020-04-28, 08:21:13 +0800, Rong Chen wrote:
> > 
> > 
> > On 4/27/20 10:32 PM, Sabrina Dubroca wrote:
> > > 2020-04-23, 20:02:30 +0800, kbuild test robot wrote:
> > > > tree:   https://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git testing
> > > > head:   ce37981d9045220810dabcb9cf20a1d86202c76a
> > > > commit: 3fd2d6fdcbb7bcd1fd7110d997fb6ed6eb71dca3 [1/2] xfrm: add support for UDPv6 encapsulation of ESP
> > > > config: c6x-allyesconfig (attached as .config)
> > > > compiler: c6x-elf-gcc (GCC) 9.3.0
> > > > reproduce:
> > > >          wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
> > > >          chmod +x ~/bin/make.cross
> > > >          git checkout 3fd2d6fdcbb7bcd1fd7110d997fb6ed6eb71dca3
> > > >          # save the attached .config to linux build tree
> > > >          COMPILER_INSTALL_PATH=$HOME/0day GCC_VERSION=9.3.0 make.cross ARCH=c6x
> > > This doesn't work for me :(
> > > 
> > > $HOME/0day/gcc-9.3.0-nolibc/c6x-elf/bin/../libexec/gcc/c6x-elf/9.3.0/cc1: error while loading shared libraries: libisl.so.19: cannot open shared object file: No such file or directory
> > > 
> > > 
> > 
> > Hi Sabrina,
> > 
> > You may need to install libisl19.
> 
> Yes, I could probably do that, but I expected those tools to work on
> any system, without having to install additional packages. If I have
> to install some extra stuff on my system (and none of the systems I
> have come with libisl19, so I'd have to mess around quite a bit), it
> makes those tools you provide a lot less convenient to use.
sorry for this, yes, we also notice this is not easy to use, and can't
simply make it work for different user environment. Thus we actually
work on to put libisl.so as part of package (same as you suggested below).

> 
> It would be great if you could rebuild them with libisl integrated, so
> that it doesn't depend on the system anymore.
Thanks for suggestion, we will provide new package tomorrow after member
had verified it.

> 
> Thanks,
> 
> -- 
> Sabrina
> _______________________________________________
> kbuild-all mailing list -- kbuild-all@lists.01.org
> To unsubscribe send an email to kbuild-all-leave@lists.01.org

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [ipsec-next:testing 1/2] net/ipv6/esp6.c:144:15: error: implicit declaration of function 'csum_ipv6_magic'; did you mean 'csum_tcpudp_magic'?
@ 2020-04-29 14:09         ` Philip Li
  0 siblings, 0 replies; 12+ messages in thread
From: Philip Li @ 2020-04-29 14:09 UTC (permalink / raw)
  To: kbuild-all

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

On Wed, Apr 29, 2020 at 03:29:34PM +0200, Sabrina Dubroca wrote:
> 2020-04-28, 08:21:13 +0800, Rong Chen wrote:
> > 
> > 
> > On 4/27/20 10:32 PM, Sabrina Dubroca wrote:
> > > 2020-04-23, 20:02:30 +0800, kbuild test robot wrote:
> > > > tree:   https://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git testing
> > > > head:   ce37981d9045220810dabcb9cf20a1d86202c76a
> > > > commit: 3fd2d6fdcbb7bcd1fd7110d997fb6ed6eb71dca3 [1/2] xfrm: add support for UDPv6 encapsulation of ESP
> > > > config: c6x-allyesconfig (attached as .config)
> > > > compiler: c6x-elf-gcc (GCC) 9.3.0
> > > > reproduce:
> > > >          wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
> > > >          chmod +x ~/bin/make.cross
> > > >          git checkout 3fd2d6fdcbb7bcd1fd7110d997fb6ed6eb71dca3
> > > >          # save the attached .config to linux build tree
> > > >          COMPILER_INSTALL_PATH=$HOME/0day GCC_VERSION=9.3.0 make.cross ARCH=c6x
> > > This doesn't work for me :(
> > > 
> > > $HOME/0day/gcc-9.3.0-nolibc/c6x-elf/bin/../libexec/gcc/c6x-elf/9.3.0/cc1: error while loading shared libraries: libisl.so.19: cannot open shared object file: No such file or directory
> > > 
> > > 
> > 
> > Hi Sabrina,
> > 
> > You may need to install libisl19.
> 
> Yes, I could probably do that, but I expected those tools to work on
> any system, without having to install additional packages. If I have
> to install some extra stuff on my system (and none of the systems I
> have come with libisl19, so I'd have to mess around quite a bit), it
> makes those tools you provide a lot less convenient to use.
sorry for this, yes, we also notice this is not easy to use, and can't
simply make it work for different user environment. Thus we actually
work on to put libisl.so as part of package (same as you suggested below).

> 
> It would be great if you could rebuild them with libisl integrated, so
> that it doesn't depend on the system anymore.
Thanks for suggestion, we will provide new package tomorrow after member
had verified it.

> 
> Thanks,
> 
> -- 
> Sabrina
> _______________________________________________
> kbuild-all mailing list -- kbuild-all(a)lists.01.org
> To unsubscribe send an email to kbuild-all-leave(a)lists.01.org

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2020-04-29 14:11 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-23 12:02 [ipsec-next:testing 1/2] net/ipv6/esp6.c:144:15: error: implicit declaration of function 'csum_ipv6_magic'; did you mean 'csum_tcpudp_magic'? kbuild test robot
2020-04-23 12:02 ` kbuild test robot
2020-04-27  6:47 ` Steffen Klassert
2020-04-27  6:47   ` Steffen Klassert
2020-04-27 14:32 ` Sabrina Dubroca
2020-04-27 14:32   ` Sabrina Dubroca
2020-04-28  0:21   ` [kbuild-all] " Rong Chen
2020-04-28  0:21     ` Rong Chen
2020-04-29 13:29     ` [kbuild-all] " Sabrina Dubroca
2020-04-29 13:29       ` Sabrina Dubroca
2020-04-29 14:09       ` [kbuild-all] " Philip Li
2020-04-29 14:09         ` Philip Li

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.