All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: "Toke Høiland-Jørgensen" <toke@redhat.com>
Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org,
	linux-kernel@vger.kernel.org
Subject: [toke:xdp-queueing-01 4/9] net/core/filter.c:4153:24: error: implicit declaration of function 'pifo_map_dequeue'
Date: Thu, 11 Nov 2021 20:49:28 +0800	[thread overview]
Message-ID: <202111112019.Rln4yjwp-lkp@intel.com> (raw)

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

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/toke/linux.git xdp-queueing-01
head:   7cdc645073a59261514e56e1a4c6d0dac1b24b32
commit: de44bbfd9cf981baab181c006dc363c5f412d94c [4/9] bpf: Add helpers to dequeue from a PIFO map
config: riscv-buildonly-randconfig-r002-20211111 (attached as .config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project 63ef0e17e28827eae53133b3467bdac7d9729318)
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
        # install riscv cross compiling tool for clang build
        # apt-get install binutils-riscv64-linux-gnu
        # https://git.kernel.org/pub/scm/linux/kernel/git/toke/linux.git/commit/?id=de44bbfd9cf981baab181c006dc363c5f412d94c
        git remote add toke https://git.kernel.org/pub/scm/linux/kernel/git/toke/linux.git
        git fetch --no-tags toke xdp-queueing-01
        git checkout de44bbfd9cf981baab181c006dc363c5f412d94c
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 ARCH=riscv 

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 >>):

   net/core/filter.c:3992:10: error: implicit declaration of function 'pifo_map_enqueue' [-Werror,-Wimplicit-function-declaration]
                           err = pifo_map_enqueue(map, xdp, ri->tgt_index);
                                 ^
>> net/core/filter.c:4153:24: error: implicit declaration of function 'pifo_map_dequeue' [-Werror,-Wimplicit-function-declaration]
           return (unsigned long)pifo_map_dequeue(map, flags);
                                 ^
   net/core/filter.c:10088:15: error: use of undeclared identifier 'bpf_prog_test_run_dequeue'
           .test_run               = bpf_prog_test_run_dequeue,
                                     ^
   3 errors generated.


vim +/pifo_map_dequeue +4153 net/core/filter.c

  4149	
  4150	BPF_CALL_3(bpf_packet_dequeue, struct dequeue_data *, ctx, struct bpf_map *, map,
  4151		   u64, flags)
  4152	{
> 4153		return (unsigned long)pifo_map_dequeue(map, flags);
  4154	}
  4155	

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

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: [toke:xdp-queueing-01 4/9] net/core/filter.c:4153:24: error: implicit declaration of function 'pifo_map_dequeue'
Date: Thu, 11 Nov 2021 20:49:28 +0800	[thread overview]
Message-ID: <202111112019.Rln4yjwp-lkp@intel.com> (raw)

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

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/toke/linux.git xdp-queueing-01
head:   7cdc645073a59261514e56e1a4c6d0dac1b24b32
commit: de44bbfd9cf981baab181c006dc363c5f412d94c [4/9] bpf: Add helpers to dequeue from a PIFO map
config: riscv-buildonly-randconfig-r002-20211111 (attached as .config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project 63ef0e17e28827eae53133b3467bdac7d9729318)
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
        # install riscv cross compiling tool for clang build
        # apt-get install binutils-riscv64-linux-gnu
        # https://git.kernel.org/pub/scm/linux/kernel/git/toke/linux.git/commit/?id=de44bbfd9cf981baab181c006dc363c5f412d94c
        git remote add toke https://git.kernel.org/pub/scm/linux/kernel/git/toke/linux.git
        git fetch --no-tags toke xdp-queueing-01
        git checkout de44bbfd9cf981baab181c006dc363c5f412d94c
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 ARCH=riscv 

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 >>):

   net/core/filter.c:3992:10: error: implicit declaration of function 'pifo_map_enqueue' [-Werror,-Wimplicit-function-declaration]
                           err = pifo_map_enqueue(map, xdp, ri->tgt_index);
                                 ^
>> net/core/filter.c:4153:24: error: implicit declaration of function 'pifo_map_dequeue' [-Werror,-Wimplicit-function-declaration]
           return (unsigned long)pifo_map_dequeue(map, flags);
                                 ^
   net/core/filter.c:10088:15: error: use of undeclared identifier 'bpf_prog_test_run_dequeue'
           .test_run               = bpf_prog_test_run_dequeue,
                                     ^
   3 errors generated.


vim +/pifo_map_dequeue +4153 net/core/filter.c

  4149	
  4150	BPF_CALL_3(bpf_packet_dequeue, struct dequeue_data *, ctx, struct bpf_map *, map,
  4151		   u64, flags)
  4152	{
> 4153		return (unsigned long)pifo_map_dequeue(map, flags);
  4154	}
  4155	

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

             reply	other threads:[~2021-11-11 12:50 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-11 12:49 kernel test robot [this message]
2021-11-11 12:49 ` [toke:xdp-queueing-01 4/9] net/core/filter.c:4153:24: error: implicit declaration of function 'pifo_map_dequeue' kernel test robot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=202111112019.Rln4yjwp-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=llvm@lists.linux.dev \
    --cc=toke@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.