From: kernel test robot <lkp@intel.com>
To: oe-kbuild@lists.linux.dev
Cc: lkp@intel.com, Dan Carpenter <error27@gmail.com>
Subject: Re: [PATCH] cgroup: cgroup: Remove unnecessary ‘0’ values from ret
Date: Sat, 12 Aug 2023 12:41:53 +0800 [thread overview]
Message-ID: <202308121210.gvdDqjhF-lkp@intel.com> (raw)
BCC: lkp@intel.com
CC: oe-kbuild-all@lists.linux.dev
In-Reply-To: <20230813014734.2916-1-kunyu@nfschina.com>
References: <20230813014734.2916-1-kunyu@nfschina.com>
TO: Li kunyu <kunyu@nfschina.com>
TO: tj@kernel.org
TO: lizefan.x@bytedance.com
TO: hannes@cmpxchg.org
CC: cgroups@vger.kernel.org
CC: linux-kernel@vger.kernel.org
CC: Li kunyu <kunyu@nfschina.com>
Hi Li,
kernel test robot noticed the following build warnings:
[auto build test WARNING on v6.5-rc5]
[also build test WARNING on linus/master next-20230809]
[cannot apply to tj-cgroup/for-next]
[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#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Li-kunyu/cgroup-cgroup-Remove-unnecessary-0-values-from-ret/20230811-171814
base: v6.5-rc5
patch link: https://lore.kernel.org/r/20230813014734.2916-1-kunyu%40nfschina.com
patch subject: [PATCH] cgroup: cgroup: Remove unnecessary ‘0’ values from ret
:::::: branch date: 19 hours ago
:::::: commit date: 19 hours ago
config: i386-randconfig-m021-20230812 (https://download.01.org/0day-ci/archive/20230812/202308121210.gvdDqjhF-lkp@intel.com/config)
compiler: gcc-12 (Debian 12.2.0-14) 12.2.0
reproduce: (https://download.01.org/0day-ci/archive/20230812/202308121210.gvdDqjhF-lkp@intel.com/reproduce)
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>
| Reported-by: Dan Carpenter <error27@gmail.com>
| Closes: https://lore.kernel.org/r/202308121210.gvdDqjhF-lkp@intel.com/
smatch warnings:
kernel/cgroup/cgroup.c:7000 delegate_show() error: uninitialized symbol 'ret'.
vim +/ret +7000 kernel/cgroup/cgroup.c
01ee6cfb1483fe Roman Gushchin 2017-11-06 6992
01ee6cfb1483fe Roman Gushchin 2017-11-06 6993 static ssize_t delegate_show(struct kobject *kobj, struct kobj_attribute *attr,
01ee6cfb1483fe Roman Gushchin 2017-11-06 6994 char *buf)
01ee6cfb1483fe Roman Gushchin 2017-11-06 6995 {
01ee6cfb1483fe Roman Gushchin 2017-11-06 6996 struct cgroup_subsys *ss;
01ee6cfb1483fe Roman Gushchin 2017-11-06 6997 int ssid;
3d7f13682faf54 Li kunyu 2023-08-13 6998 ssize_t ret;
01ee6cfb1483fe Roman Gushchin 2017-11-06 6999
8a693f7766f9e2 Tejun Heo 2022-09-06 @7000 ret = show_delegatable_files(cgroup_base_files, buf + ret,
8a693f7766f9e2 Tejun Heo 2022-09-06 7001 PAGE_SIZE - ret, NULL);
8a693f7766f9e2 Tejun Heo 2022-09-06 7002 if (cgroup_psi_enabled())
8a693f7766f9e2 Tejun Heo 2022-09-06 7003 ret += show_delegatable_files(cgroup_psi_files, buf + ret,
8a693f7766f9e2 Tejun Heo 2022-09-06 7004 PAGE_SIZE - ret, NULL);
01ee6cfb1483fe Roman Gushchin 2017-11-06 7005
01ee6cfb1483fe Roman Gushchin 2017-11-06 7006 for_each_subsys(ss, ssid)
01ee6cfb1483fe Roman Gushchin 2017-11-06 7007 ret += show_delegatable_files(ss->dfl_cftypes, buf + ret,
01ee6cfb1483fe Roman Gushchin 2017-11-06 7008 PAGE_SIZE - ret,
01ee6cfb1483fe Roman Gushchin 2017-11-06 7009 cgroup_subsys_name[ssid]);
01ee6cfb1483fe Roman Gushchin 2017-11-06 7010
01ee6cfb1483fe Roman Gushchin 2017-11-06 7011 return ret;
01ee6cfb1483fe Roman Gushchin 2017-11-06 7012 }
01ee6cfb1483fe Roman Gushchin 2017-11-06 7013 static struct kobj_attribute cgroup_delegate_attr = __ATTR_RO(delegate);
01ee6cfb1483fe Roman Gushchin 2017-11-06 7014
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next reply other threads:[~2023-08-12 4:42 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-12 4:41 kernel test robot [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-08-11 9:16 [PATCH] cgroup: cgroup: Remove unnecessary ‘0’ values from ret Li kunyu
2023-08-11 9:16 Li kunyu
2023-08-13 1:47 ` Li kunyu
[not found] ` <20230813014734.2916-1-kunyu-5L972MDCkn1Wk0Htik3J/w@public.gmane.org>
2023-08-11 13:17 ` kernel test robot
2023-08-11 13:17 ` kernel test robot
2023-08-11 13:28 ` kernel test robot
2023-08-11 13:28 ` kernel test robot
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=202308121210.gvdDqjhF-lkp@intel.com \
--to=lkp@intel.com \
--cc=error27@gmail.com \
--cc=oe-kbuild@lists.linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.