Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752220AbdHIUdL (ORCPT ); Wed, 9 Aug 2017 16:33:11 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:39088 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752181AbdHIUdK (ORCPT ); Wed, 9 Aug 2017 16:33:10 -0400 Date: Wed, 9 Aug 2017 13:33:09 -0700 From: Andrew Morton To: kbuild test robot Cc: Yury Norov , kbuild-all@01.org, Noam Camus , Rasmus Villemoes , Matthew Wilcox , Mauro Carvalho Chehab , linux-kernel@vger.kernel.org Subject: Re: [PATCH 2/2] lib: add test for bitmap_parselist() Message-Id: <20170809133309.746aafee5e22c9345debd671@linux-foundation.org> In-Reply-To: <201708091143.QqTgSaxI%fengguang.wu@intel.com> References: <20170807225438.16161-2-ynorov@caviumnetworks.com> <201708091143.QqTgSaxI%fengguang.wu@intel.com> X-Mailer: Sylpheed 3.4.1 (GTK+ 2.24.23; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1035 Lines: 23 On Wed, 9 Aug 2017 11:28:56 +0800 kbuild test robot wrote: > [auto build test WARNING on linus/master] > [also build test WARNING on v4.13-rc4 next-20170808] > [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] > > url: https://github.com/0day-ci/linux/commits/Yury-Norov/lib-make-bitmap_parselist-thread-safe-and-much-faster/20170809-105307 > config: i386-randconfig-x000-201732 (attached as .config) > compiler: gcc-6 (Debian 6.2.0-3) 6.2.0 20160901 > reproduce: > # save the attached .config to linux build tree > make ARCH=i386 > > All warnings (new ones prefixed by >>): > > >> lib/test_bitmap.c:180:17: warning: large integer implicitly truncated to unsigned type [-Woverflow] > 0xfffffffe, 0x3333333311111111, 0xffffffff77777777}; > ^~~~~~~~~~~~~~~~~~ I assume that a simple convertion to unsigned long long will fix that, but I'll await Yuri's input (and testing). btw, exp[] and exp2[] could be __initconst?