From mboxrd@z Thu Jan 1 00:00:00 1970 Content-Type: multipart/mixed; boundary="===============5632272102920193984==" MIME-Version: 1.0 From: kernel test robot To: kbuild-all@lists.01.org Subject: Re: [RFC PATCH v3 04/13] module: Move latched RB-tree support to a separate file Date: Sat, 29 Jan 2022 05:55:03 +0800 Message-ID: <202201290517.OgZ0MwIs-lkp@intel.com> In-Reply-To: <20220128203934.600247-5-atomlin@redhat.com> List-Id: --===============5632272102920193984== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Hi Aaron, [FYI, it's a private test report for your RFC patch.] [auto build test WARNING on a97ac8cb24a3c3ad74794adb83717ef1605d1b47] url: https://github.com/0day-ci/linux/commits/Aaron-Tomlin/module-core-c= ode-clean-up/20220129-044218 base: a97ac8cb24a3c3ad74794adb83717ef1605d1b47 config: mips-allyesconfig (https://download.01.org/0day-ci/archive/20220129= /202201290517.OgZ0MwIs-lkp(a)intel.com/config) compiler: mips-linux-gcc (GCC) 11.2.0 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/3d841e1ce526183860c90d801= 29f849cf5234b1d git remote add linux-review https://github.com/0day-ci/linux git fetch --no-tags linux-review Aaron-Tomlin/module-core-code-clea= n-up/20220129-044218 git checkout 3d841e1ce526183860c90d80129f849cf5234b1d # save the config file to linux build tree mkdir build_dir COMPILER_INSTALL_PATH=3D$HOME/0day COMPILER=3Dgcc-11.2.0 make.cross= O=3Dbuild_dir ARCH=3Dmips SHELL=3D/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/tree_lookup.c:63:15: warning: no previous prototype for '_= _mod_tree_insert' [-Wmissing-prototypes] 63 | noinline void __mod_tree_insert(struct mod_tree_node *node) | ^~~~~~~~~~~~~~~~~ >> kernel/module/tree_lookup.c:68:6: warning: no previous prototype for '__= mod_tree_remove' [-Wmissing-prototypes] 68 | void __mod_tree_remove(struct mod_tree_node *node) | ^~~~~~~~~~~~~~~~~ vim +/__mod_tree_insert +63 kernel/module/tree_lookup.c 62 = > 63 noinline void __mod_tree_insert(struct mod_tree_node *node) 64 { 65 latch_tree_insert(&node->node, &mod_tree.root, &mod_tree_ops); 66 } 67 = > 68 void __mod_tree_remove(struct mod_tree_node *node) 69 { 70 latch_tree_erase(&node->node, &mod_tree.root, &mod_tree_ops); 71 } 72 = --- 0-DAY CI Kernel Test Service, Intel Corporation https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org --===============5632272102920193984==--