
tree: https://gitee.com/openeuler/kernel.git openEuler-1.0-LTS head: d96cd567c8d8d584405abe92c2576bf58202fa6e commit: 5a1704c7f3c1f3499716b7f440efa002f6724a35 [1605/1605] net: sched: extend Qdisc with rcu config: x86_64-buildonly-randconfig-2002-20250501 (https://download.01.org/0day-ci/archive/20250702/202507021947.XsyT5pAU-lkp@i...) compiler: clang version 20.1.2 (https://github.com/llvm/llvm-project 58df0ef89dd64126512e4ee27b4ac3fd8ddf6247) reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250702/202507021947.XsyT5pAU-lkp@i...) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot <lkp@intel.com> | Closes: https://lore.kernel.org/oe-kbuild-all/202507021947.XsyT5pAU-lkp@intel.com/ All warnings (new ones prefixed by >>):
net/sched/sch_generic.c:956:6: warning: no previous prototype for function 'qdisc_free_cb' [-Wmissing-prototypes] 956 | void qdisc_free_cb(struct rcu_head *head) | ^ net/sched/sch_generic.c:956:1: note: declare 'static' if the function is not intended to be used outside of this translation unit 956 | void qdisc_free_cb(struct rcu_head *head) | ^ | static 1 warning generated.
vim +/qdisc_free_cb +956 net/sched/sch_generic.c 955
956 void qdisc_free_cb(struct rcu_head *head) 957 { 958 struct Qdisc *q = container_of(head, struct Qdisc, rcu); 959 960 qdisc_free(q); 961 } 962
-- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki