hc
2024-05-10 cde9070d9970eef1f7ec2360586c802a16230ad8
kernel/fs/sysfs/dir.c
....@@ -6,7 +6,7 @@
66 * Copyright (c) 2007 SUSE Linux Products GmbH
77 * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
88 *
9
- * Please see Documentation/filesystems/sysfs.txt for more information.
9
+ * Please see Documentation/filesystems/sysfs.rst for more information.
1010 */
1111
1212 #define pr_fmt(fmt) "sysfs: " fmt
....@@ -43,7 +43,8 @@
4343 kuid_t uid;
4444 kgid_t gid;
4545
46
- BUG_ON(!kobj);
46
+ if (WARN_ON(!kobj))
47
+ return -EINVAL;
4748
4849 if (kobj->parent)
4950 parent = kobj->parent->sd;