Hi Wei,
[FYI, it's a private test report for your RFC patch.]
[auto build test WARNING on net-next/master]
url:
https://github.com/0day-ci/linux/commits/Wei-Wang/implement-kthread-based...
base:
https://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
e059c6f340f6fccadd3db9993f06d4cc51305804
config: i386-randconfig-r035-20200913 (attached as .config)
compiler: gcc-9 (Debian 9.3.0-15) 9.3.0
reproduce (this is a W=1 build):
# save the attached .config to linux build tree
make W=1 ARCH=i386
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
All warnings (new ones prefixed by >>):
> net/core/net-sysfs.c:541:16: warning: no previous prototype for
'__alloc_thread_bitmap' [-Wmissing-prototypes]
541 | unsigned long
*__alloc_thread_bitmap(struct net_device *netdev, int *bits)
| ^~~~~~~~~~~~~~~~~~~~~
#
https://github.com/0day-ci/linux/commit/ba7d63f1040aedba86f70713af085d863...
git remote add linux-review
https://github.com/0day-ci/linux
git fetch --no-tags linux-review
Wei-Wang/implement-kthread-based-napi-poll/20200915-013651
git checkout ba7d63f1040aedba86f70713af085d86322fee62
vim +/__alloc_thread_bitmap +541 net/core/net-sysfs.c
540
541 unsigned long *__alloc_thread_bitmap(struct net_device *netdev,
int *bits)
542 {
543 struct napi_struct *n;
544
545 *bits = 0;
546 list_for_each_entry(n, &netdev->napi_list, dev_list)
547 (*bits)++;
548
549 return kmalloc_array(BITS_TO_LONGS(*bits), sizeof(unsigned long),
550 GFP_ATOMIC | __GFP_ZERO);
551 }
552
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org