From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 61A26168 for ; Fri, 28 Jan 2022 09:06:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1643360777; x=1674896777; h=date:from:to:cc:subject:message-id:references: mime-version:in-reply-to; bh=AiHV+Hg/X7fIRO65fl2bhp054IVzZkdbb+vKsLN50GA=; b=MexMfvrTm/OA7c3mxuEktw90me0hGpogfYpB5gWOeSL7CSpDFF8Vfcgc FHm4frkM4vUgayHE0Pm9j4xNm09ZYa/ldFmcet7pX+dUOB2/AhvT+CidT I23yQZ3lczW93pMoQcSTuEoVK4EEmgjheQNujoAa58GNMsF7jYDDoxMXY OPjBTDNrI+LIJVMyLJa7GutGEpTjkpk4SHE2VVgNMtSxlKVn0KVNAAaNB yrchcfWuvHyX/deqwnxciitmjTVrZLNul7/kLTRWueIS5j+rIkoHwtTbl l1Rd+NMD5q3l4GhAOyvFzbqi+0dYJxL6wsey9hUe1Mv5c0uT1aSUgbnBq Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10240"; a="247304167" X-IronPort-AV: E=Sophos;i="5.88,323,1635231600"; d="scan'208";a="247304167" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Jan 2022 01:06:09 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,323,1635231600"; d="scan'208";a="521623732" Received: from lkp-server01.sh.intel.com (HELO 276f1b88eecb) ([10.239.97.150]) by orsmga007.jf.intel.com with ESMTP; 28 Jan 2022 01:06:07 -0800 Received: from kbuild by 276f1b88eecb with local (Exim 4.92) (envelope-from ) id 1nDNCo-000NgI-H5; Fri, 28 Jan 2022 09:06:06 +0000 Date: Fri, 28 Jan 2022 17:05:54 +0800 From: kernel test robot To: tangmeng , tglx@linutronix.de, mcgrof@kernel.org, keescook@chromium.org, yzaikin@google.com, john.stultz@linaro.org, sboyd@kernel.org Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org, linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, tangmeng Subject: Re: [PATCH] kernel/time: move timer sysctls to its own file Message-ID: <202201281650.adOMvtOO-lkp@intel.com> References: <20220128065505.16685-1-tangmeng@uniontech.com> Precedence: bulk X-Mailing-List: llvm@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220128065505.16685-1-tangmeng@uniontech.com> User-Agent: Mutt/1.10.1 (2018-07-13) Hi tangmeng, Thank you for the patch! Yet something to improve: [auto build test ERROR on tip/timers/core] [also build test ERROR on linus/master kees/for-next/pstore v5.17-rc1 next-20220128] [If your patch is applied to the wrong git tree, kindly drop us a note. And when submitting patch, we suggest to use '--base' as documented in https://git-scm.com/docs/git-format-patch] url: https://github.com/0day-ci/linux/commits/tangmeng/kernel-time-move-timer-sysctls-to-its-own-file/20220128-145647 base: https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git 35e13e9da9afbce13c1d36465504ece4e65f24fe config: i386-allnoconfig (https://download.01.org/0day-ci/archive/20220128/202201281650.adOMvtOO-lkp@intel.com/config) compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project 33b45ee44b1f32ffdbc995e6fec806271b4b3ba4) 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/0day-ci/linux/commit/5b925ed59a284ee735fd46cb2afa74858509887b git remote add linux-review https://github.com/0day-ci/linux git fetch --no-tags linux-review tangmeng/kernel-time-move-timer-sysctls-to-its-own-file/20220128-145647 git checkout 5b925ed59a284ee735fd46cb2afa74858509887b # save the config file to linux build tree mkdir build_dir COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=i386 SHELL=/bin/bash If you fix the issue, kindly add following tag as appropriate Reported-by: kernel test robot All errors (new ones prefixed by >>): >> kernel/time/timer.c:2047:2: error: implicit declaration of function 'timer_sysctl_init' [-Werror,-Wimplicit-function-declaration] timer_sysctl_init(); ^ 1 error generated. vim +/timer_sysctl_init +2047 kernel/time/timer.c 2041 2042 void __init init_timers(void) 2043 { 2044 init_timer_cpus(); 2045 posix_cputimers_init_work(); 2046 open_softirq(TIMER_SOFTIRQ, run_timer_softirq); > 2047 timer_sysctl_init(); 2048 } 2049 --- 0-DAY CI Kernel Test Service, Intel Corporation https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org From mboxrd@z Thu Jan 1 00:00:00 1970 Content-Type: multipart/mixed; boundary="===============6554158229400696561==" MIME-Version: 1.0 From: kernel test robot To: kbuild-all@lists.01.org Subject: Re: [PATCH] kernel/time: move timer sysctls to its own file Date: Fri, 28 Jan 2022 17:05:54 +0800 Message-ID: <202201281650.adOMvtOO-lkp@intel.com> In-Reply-To: <20220128065505.16685-1-tangmeng@uniontech.com> List-Id: --===============6554158229400696561== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Hi tangmeng, Thank you for the patch! Yet something to improve: [auto build test ERROR on tip/timers/core] [also build test ERROR on linus/master kees/for-next/pstore v5.17-rc1 next-= 20220128] [If your patch is applied to the wrong git tree, kindly drop us a note. And when submitting patch, we suggest to use '--base' as documented in https://git-scm.com/docs/git-format-patch] url: https://github.com/0day-ci/linux/commits/tangmeng/kernel-time-move-= timer-sysctls-to-its-own-file/20220128-145647 base: https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git 35e13e9= da9afbce13c1d36465504ece4e65f24fe config: i386-allnoconfig (https://download.01.org/0day-ci/archive/20220128/= 202201281650.adOMvtOO-lkp(a)intel.com/config) compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project 33b45e= e44b1f32ffdbc995e6fec806271b4b3ba4) reproduce (this is a W=3D1 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/0day-ci/linux/commit/5b925ed59a284ee735fd46cb2= afa74858509887b git remote add linux-review https://github.com/0day-ci/linux git fetch --no-tags linux-review tangmeng/kernel-time-move-timer-sy= sctls-to-its-own-file/20220128-145647 git checkout 5b925ed59a284ee735fd46cb2afa74858509887b # save the config file to linux build tree mkdir build_dir COMPILER_INSTALL_PATH=3D$HOME/0day COMPILER=3Dclang make.cross W=3D= 1 O=3Dbuild_dir ARCH=3Di386 SHELL=3D/bin/bash If you fix the issue, kindly add following tag as appropriate Reported-by: kernel test robot All errors (new ones prefixed by >>): >> kernel/time/timer.c:2047:2: error: implicit declaration of function 'tim= er_sysctl_init' [-Werror,-Wimplicit-function-declaration] timer_sysctl_init(); ^ 1 error generated. vim +/timer_sysctl_init +2047 kernel/time/timer.c 2041 = 2042 void __init init_timers(void) 2043 { 2044 init_timer_cpus(); 2045 posix_cputimers_init_work(); 2046 open_softirq(TIMER_SOFTIRQ, run_timer_softirq); > 2047 timer_sysctl_init(); 2048 } 2049 = --- 0-DAY CI Kernel Test Service, Intel Corporation https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org --===============6554158229400696561==--