From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-3.5 required=5.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_MED,SPF_HELO_NONE, SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 Received: from mga06.intel.com (mga06b.intel.com [134.134.136.31]) by gnuweeb.org (Postfix) with ESMTPS id DDF54804FD for ; Fri, 9 Sep 2022 06:29:17 +0000 (UTC) Authentication-Results: gnuweeb.org; dkim=pass (2048-bit key; unprotected) header.d=intel.com header.i=@intel.com header.a=rsa-sha256 header.s=Intel header.b=KUc0CWDA; dkim-atps=neutral DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1662704957; x=1694240957; h=date:from:to:cc:subject:message-id:mime-version; bh=och9uNBK6Wby+sDrmXQ9P+rvIjoqoETFEGKB8nhiTv8=; b=KUc0CWDAJdzleU2UiV/eFRVcBwUlfsnAtyOLP3kP6ADp/z8UlKb3+stg ydEVlMCpAZsu0dLp5YNvvH5cxaVt+2z71m+TXhOU1C1NtFejcCT6ysvkU jWHL7Lmg4+e9GhoouCZzCxivJ7QfXAbhiuzACylwgnwdD/8/pzejb6+lE aoW5Al9dBPVptYWRMxtLpaQL6gfurSX8Ril5MIkG1r54PPaUeCj7dYXVn GHh2wRgNlWRrqD2A98K0aQW6YPuycmcNhnaEFVo8uD+fIAXIPk6IEkcd0 1sF0iLTjYuuqhayyNroptbWRc857US5c//xbBGz71keE0GGJs8Erqyh10 g==; X-IronPort-AV: E=McAfee;i="6500,9779,10464"; a="359134485" X-IronPort-AV: E=Sophos;i="5.93,302,1654585200"; d="scan'208";a="359134485" Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Sep 2022 23:27:55 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.93,302,1654585200"; d="scan'208";a="943662001" Received: from lkp-server02.sh.intel.com (HELO b2938d2e5c5a) ([10.239.97.151]) by fmsmga005.fm.intel.com with ESMTP; 08 Sep 2022 23:27:53 -0700 Received: from kbuild by b2938d2e5c5a with local (Exim 4.96) (envelope-from ) id 1oWXUW-0000mn-3C; Fri, 09 Sep 2022 06:27:52 +0000 Date: Fri, 9 Sep 2022 14:27:00 +0800 From: kernel test robot To: Qi Zheng Cc: kbuild-all@lists.01.org, Ammar Faizi , GNU/Weeb Mailing List , linux-kernel@vger.kernel.org, Catalin Marinas , Arnd Bergmann Subject: [ammarfaizi2-block:arm64/linux/for-next/misc 2/2] arch/arm64/kernel/irq.c:81:6: warning: no previous prototype for 'do_softirq_own_stack' Message-ID: <202209091406.f6EClPti-lkp@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline List-Id: tree: https://github.com/ammarfaizi2/linux-block arm64/linux/for-next/misc head: 2d2f3bb897a3de4190b1b6b296c3429d01327554 commit: 2d2f3bb897a3de4190b1b6b296c3429d01327554 [2/2] arm64: run softirqs on the per-CPU IRQ stack config: arm64-randconfig-r005-20220907 (https://download.01.org/0day-ci/archive/20220909/202209091406.f6EClPti-lkp@intel.com/config) compiler: aarch64-linux-gcc (GCC) 12.1.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://github.com/ammarfaizi2/linux-block/commit/2d2f3bb897a3de4190b1b6b296c3429d01327554 git remote add ammarfaizi2-block https://github.com/ammarfaizi2/linux-block git fetch --no-tags ammarfaizi2-block arm64/linux/for-next/misc git checkout 2d2f3bb897a3de4190b1b6b296c3429d01327554 # save the config file mkdir build_dir && cp config build_dir/.config COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=arm64 SHELL=/bin/bash arch/arm64/kernel/ If you fix the issue, kindly add following tag where applicable Reported-by: kernel test robot All warnings (new ones prefixed by >>): >> arch/arm64/kernel/irq.c:81:6: warning: no previous prototype for 'do_softirq_own_stack' [-Wmissing-prototypes] 81 | void do_softirq_own_stack(void) | ^~~~~~~~~~~~~~~~~~~~ arch/arm64/kernel/irq.c:120:13: warning: no previous prototype for 'init_IRQ' [-Wmissing-prototypes] 120 | void __init init_IRQ(void) | ^~~~~~~~ vim +/do_softirq_own_stack +81 arch/arm64/kernel/irq.c 80 > 81 void do_softirq_own_stack(void) 82 { 83 call_on_irq_stack(NULL, ____do_softirq); 84 } 85 #endif 86 -- 0-DAY CI Kernel Test Service https://01.org/lkp