From: hejianet <hejianet@gmail.com>
To: kbuild test robot <lkp@intel.com>
Cc: kbuild-all@01.org, linux-kernel@vger.kernel.org,
linux-arch@vger.kernel.org,
Andrew Morton <akpm@linux-foundation.org>,
Rasmus Villemoes <linux@rasmusvillemoes.dk>,
Denys Vlasenko <dvlasenk@redhat.com>,
Kyungmin Park <kyungmin.park@samsung.com>,
Michal Nazarewicz <mina86@mina86.com>,
Yury Norov <yury.norov@gmail.com>, Tejun Heo <tj@kernel.org>,
Martin Kepplinger <martink@posteo.de>,
George Spelvin <linux@horizon.com>,
Ingo Molnar <mingo@kernel.org>, Arnd Bergmann <arnd@arndb.de>
Subject: Re: [PATCH 3/3] linux/bitmap: Replace find_fisrt_{zero_}bit with the new lightweight api
Date: Thu, 19 Nov 2015 11:24:20 +0800 [thread overview]
Message-ID: <564D40E4.5070900@gmail.com> (raw)
In-Reply-To: <201511191057.JOoDSHXo%fengguang.wu@intel.com>
Thanks, I only compiled and tested in x86_64, will check what's wrong in
m68k
B.R.
Justin
在 11/19/15 10:53 AM, kbuild test robot 写道:
> Hi Jia,
>
> [auto build test ERROR on: v4.4-rc1]
> [also build test ERROR on: next-20151118]
>
> url: https://github.com/0day-ci/linux/commits/Jia-He/Improve-bitmap_empty-and-bitmap_full/20151119-103554
> config: m68k-allyesconfig (attached as .config)
> reproduce:
> wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross
> chmod +x ~/bin/make.cross
> # save the attached .config to linux build tree
> make.cross ARCH=m68k
>
> All errors (new ones prefixed by >>):
>
> kernel/time/Kconfig:155:warning: range is invalid
> warning: (USB_OTG_FSM && FSL_USB2_OTG && USB_MV_OTG) selects USB_OTG which has unmet direct dependencies (USB_SUPPORT && USB && PM)
> warning: (SINGLE_MEMORY_CHUNK) selects NEED_MULTIPLE_NODES which has unmet direct dependencies (DISCONTIGMEM || NUMA)
> warning: (PREEMPT && DEBUG_ATOMIC_SLEEP) selects PREEMPT_COUNT which has unmet direct dependencies (COLDFIRE)
> warning: (USB_OTG_FSM && FSL_USB2_OTG && USB_MV_OTG) selects USB_OTG which has unmet direct dependencies (USB_SUPPORT && USB && PM)
> warning: (SINGLE_MEMORY_CHUNK) selects NEED_MULTIPLE_NODES which has unmet direct dependencies (DISCONTIGMEM || NUMA)
> warning: (PREEMPT && DEBUG_ATOMIC_SLEEP) selects PREEMPT_COUNT which has unmet direct dependencies (COLDFIRE)
> In file included from include/linux/cpumask.h:11:0,
> from include/linux/rcupdate.h:40,
> from include/linux/rbtree.h:34,
> from include/linux/sched.h:22,
> from arch/m68k/kernel/asm-offsets.c:14:
> include/linux/bitmap.h: In function 'bitmap_empty':
>>> include/linux/bitmap.h:284:2: error: implicit declaration of function 'all_bit_is_zero' [-Werror=implicit-function-declaration]
> return all_bit_is_zero(src, nbits);
> ^
> include/linux/bitmap.h: In function 'bitmap_full':
>>> include/linux/bitmap.h:292:2: error: implicit declaration of function 'all_bit_is_one' [-Werror=implicit-function-declaration]
> return all_bit_is_one(src, nbits);
> ^
> cc1: some warnings being treated as errors
> make[2]: *** [arch/m68k/kernel/asm-offsets.s] Error 1
> make[2]: Target '__build' not remade because of errors.
> make[1]: *** [prepare0] Error 2
> make[1]: Target 'prepare' not remade because of errors.
> make: *** [sub-make] Error 2
>
> vim +/all_bit_is_zero +284 include/linux/bitmap.h
>
> 278
> 279 static inline int bitmap_empty(const unsigned long *src, unsigned nbits)
> 280 {
> 281 if (small_const_nbits(nbits))
> 282 return ! (*src & BITMAP_LAST_WORD_MASK(nbits));
> 283
> > 284 return all_bit_is_zero(src, nbits);
> 285 }
> 286
> 287 static inline int bitmap_full(const unsigned long *src, unsigned int nbits)
> 288 {
> 289 if (small_const_nbits(nbits))
> 290 return ! (~(*src) & BITMAP_LAST_WORD_MASK(nbits));
> 291
> > 292 return all_bit_is_one(src, nbits);
> 293 }
> 294
> 295 static __always_inline int bitmap_weight(const unsigned long *src, unsigned int nbits)
>
> ---
> 0-DAY kernel test infrastructure Open Source Technology Center
> https://lists.01.org/pipermail/kbuild-all Intel Corporation
prev parent reply other threads:[~2015-11-19 3:24 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-19 2:31 [PATCH 0/3] Improve bitmap_empty and bitmap_full Jia He
2015-11-19 2:31 ` [PATCH 1/3] linux/bitmap: Move 2 mask macro to bitops.h Jia He
2015-11-22 19:17 ` Andy Shevchenko
2015-11-19 2:31 ` [PATCH 2/3] lib: Introduce 2 find bit api: all_is_bit_{one,zero} Jia He
2015-11-20 8:52 ` Geert Uytterhoeven
2015-11-20 13:57 ` Michal Nazarewicz
2015-11-19 2:31 ` [PATCH 3/3] linux/bitmap: Replace find_fisrt_{zero_}bit with the new lightweight api Jia He
2015-11-19 2:53 ` kbuild test robot
2015-11-19 3:24 ` hejianet [this message]
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=564D40E4.5070900@gmail.com \
--to=hejianet@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=arnd@arndb.de \
--cc=dvlasenk@redhat.com \
--cc=kbuild-all@01.org \
--cc=kyungmin.park@samsung.com \
--cc=linux-arch@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@horizon.com \
--cc=linux@rasmusvillemoes.dk \
--cc=lkp@intel.com \
--cc=martink@posteo.de \
--cc=mina86@mina86.com \
--cc=mingo@kernel.org \
--cc=tj@kernel.org \
--cc=yury.norov@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox