From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id E7FD1C433EF for ; Sun, 20 Feb 2022 12:29:45 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S243783AbiBTMaF (ORCPT ); Sun, 20 Feb 2022 07:30:05 -0500 Received: from mxb-00190b01.gslb.pphosted.com ([23.128.96.19]:34380 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236374AbiBTMaA (ORCPT ); Sun, 20 Feb 2022 07:30:00 -0500 Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3F7F745AF3 for ; Sun, 20 Feb 2022 04:29:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1645360180; x=1676896180; h=date:from:to:cc:subject:message-id:mime-version; bh=8Cw52zwYOWGgw0dEDKQDmkrGk2FHXT67AMIP1261qu0=; b=ceiqRV9uaTYKQTNIzlRLkSUEK1cSQVxxlKTGfmOW/1EtjSJo1t/J1sOm FgtLJXAyqe9yUW7op+I5gmtTeD77dZQKQhy6ryBuIi5B8hX48AXFy7CQ6 yxlugyw9sCoPv+fVJ+GMut4yzqzoCN1+jWe4q7Ep0J6vYH5WbvW/MIQEs dWITDRnAoZgRgu2N5rAotT8FtRvNeALBA+JdadUCzkwo9w4cUA5QxiM2v pHwPI6f6d6sc3pHzkldM8W6qz+OkdcVy/KbE1cku5DYR6LJKlsIjEsh8m Ih85uuTpLvmWCuFN52N80oHn63VtF1CVndAY9uCKfFfMsOnrrGB1ggqK0 w==; X-IronPort-AV: E=McAfee;i="6200,9189,10263"; a="238780810" X-IronPort-AV: E=Sophos;i="5.88,383,1635231600"; d="scan'208";a="238780810" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Feb 2022 04:29:39 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,383,1635231600"; d="scan'208";a="507307381" Received: from lkp-server01.sh.intel.com (HELO da3212ac2f54) ([10.239.97.150]) by orsmga006.jf.intel.com with ESMTP; 20 Feb 2022 04:29:38 -0800 Received: from kbuild by da3212ac2f54 with local (Exim 4.92) (envelope-from ) id 1nLlLO-0000Kk-1d; Sun, 20 Feb 2022 12:29:38 +0000 Date: Sun, 20 Feb 2022 20:29:21 +0800 From: kernel test robot To: Aaron Tomlin Cc: kbuild-all@lists.01.org, linux-kernel@vger.kernel.org, Luis Chamberlain Subject: [mcgrof:modules-next 1/10] kernel/module/main.c:4802:6: warning: no previous prototype for 'module_layout' Message-ID: <202202202040.gLQem5B6-lkp@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org tree: https://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next head: c55dc78176e6fe97a9e92d24a7ff3015b14ac858 commit: 87b31159f78ab89d8ccda30d3eb9966af51bca64 [1/10] module: Move all into module/ config: alpha-allyesconfig (https://download.01.org/0day-ci/archive/20220220/202202202040.gLQem5B6-lkp@intel.com/config) compiler: alpha-linux-gcc (GCC) 11.2.0 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 # https://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git/commit/?id=87b31159f78ab89d8ccda30d3eb9966af51bca64 git remote add mcgrof https://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git git fetch --no-tags mcgrof modules-next git checkout 87b31159f78ab89d8ccda30d3eb9966af51bca64 # save the config file to linux build tree mkdir build_dir COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross O=build_dir ARCH=alpha SHELL=/bin/bash kernel/module/ If you fix the issue, kindly add following tag as appropriate Reported-by: kernel test robot All warnings (new ones prefixed by >>): >> kernel/module/main.c:4802:6: warning: no previous prototype for 'module_layout' [-Wmissing-prototypes] 4802 | void module_layout(struct module *mod, | ^~~~~~~~~~~~~ vim +/module_layout +4802 kernel/module/main.c ^1da177e4c3f41 kernel/module.c Linus Torvalds 2005-04-16 4796 ^1da177e4c3f41 kernel/module.c Linus Torvalds 2005-04-16 4797 #ifdef CONFIG_MODVERSIONS 24b9f0d2208145 kernel/module.c Sergey Shtylyov 2020-11-07 4798 /* 24b9f0d2208145 kernel/module.c Sergey Shtylyov 2020-11-07 4799 * Generate the signature for all relevant module structures here. 24b9f0d2208145 kernel/module.c Sergey Shtylyov 2020-11-07 4800 * If these change, we don't want to try to parse the module. 24b9f0d2208145 kernel/module.c Sergey Shtylyov 2020-11-07 4801 */ 8c8ef42aee8fcf kernel/module.c Rusty Russell 2009-03-31 @4802 void module_layout(struct module *mod, :::::: The code at line 4802 was first introduced by commit :::::: 8c8ef42aee8fcfb4128bb94c50d55c9f80ade525 module: include other structures in module version check :::::: TO: Rusty Russell :::::: CC: Rusty Russell --- 0-DAY CI Kernel Test Service, Intel Corporation https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org