* Re: [PATCH 1/2] sysfs: add sysfs_add_bin_file_to_group()
[not found] <20211220064730.28806-1-zajec5@gmail.com>
@ 2021-12-20 14:18 ` kernel test robot
0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2021-12-20 14:18 UTC (permalink / raw)
To: Rafał Miłecki, Srinivas Kandagatla, Greg Kroah-Hartman,
Rafael J . Wysocki, Jonathan Corbet
Cc: llvm, kbuild-all, Daniel Vetter, Dan Williams, Bjorn Helgaas,
Krzysztof Wilczyński, Heiner Kallweit, linux-doc
Hi "Rafał,
I love your patch! Perhaps something to improve:
[auto build test WARNING on driver-core/driver-core-testing]
[also build test WARNING on char-misc/char-misc-testing linux/master linus/master v5.16-rc6 next-20211217]
[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/Rafa-Mi-ecki/sysfs-add-sysfs_add_bin_file_to_group/20211220-144856
base: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git aa483f3ce655ed9ee4f32d050d1822eec2d20ada
config: x86_64-randconfig-r024-20211220 (https://download.01.org/0day-ci/archive/20211220/202112202254.l5IadaDs-lkp@intel.com/config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project 555eacf75f21cd1dfc6363d73ad187b730349543)
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/a9802080b6d35af5dfd7ae847a0978e47caafd59
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Rafa-Mi-ecki/sysfs-add-sysfs_add_bin_file_to_group/20211220-144856
git checkout a9802080b6d35af5dfd7ae847a0978e47caafd59
# 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=x86_64 SHELL=/bin/bash fs/sysfs/
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
>> fs/sysfs/file.c:379:5: warning: no previous prototype for function '__sysfs_add_file_to_group' [-Wmissing-prototypes]
int __sysfs_add_file_to_group(struct kobject *kobj,
^
fs/sysfs/file.c:379:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
int __sysfs_add_file_to_group(struct kobject *kobj,
^
static
1 warning generated.
vim +/__sysfs_add_file_to_group +379 fs/sysfs/file.c
372
373 /**
374 * sysfs_add_file_to_group - add an attribute file to a pre-existing group.
375 * @kobj: object we're acting for.
376 * @attr: attribute descriptor.
377 * @group: group name.
378 */
> 379 int __sysfs_add_file_to_group(struct kobject *kobj,
380 const struct attribute *attr,
381 const struct bin_attribute *battr,
382 const char *group)
383 {
384 struct kernfs_node *parent;
385 kuid_t uid;
386 kgid_t gid;
387 int error;
388
389 if (WARN_ON((attr && battr) || (!attr && !battr)))
390 return -EINVAL;
391
392 if (group) {
393 parent = kernfs_find_and_get(kobj->sd, group);
394 } else {
395 parent = kobj->sd;
396 kernfs_get(parent);
397 }
398
399 if (!parent)
400 return -ENOENT;
401
402 kobject_get_ownership(kobj, &uid, &gid);
403 if (attr)
404 error = sysfs_add_file_mode_ns(parent, attr, attr->mode, uid,
405 gid, NULL);
406 else
407 error = sysfs_add_bin_file_mode_ns(parent, battr, battr->attr.mode,
408 uid, gid, NULL);
409 kernfs_put(parent);
410
411 return error;
412 }
413
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2021-12-20 14:19 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20211220064730.28806-1-zajec5@gmail.com>
2021-12-20 14:18 ` [PATCH 1/2] sysfs: add sysfs_add_bin_file_to_group() kernel test robot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).