Use WARN() in fs/sysfs
Use WARN() instead of a printk+WARN_ON() pair; this way the message becomes part of the warning section for better reporting/collection. Also, with this, one fo the if() sections collapses entirely into the WARN(). Signed-off-by: Arjan van de Ven <arjan@linux.intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
5c752ad9f3
commit
99fcd77d15
@@ -337,9 +337,8 @@ static int sysfs_open_file(struct inode *inode, struct file *file)
|
||||
if (kobj->ktype && kobj->ktype->sysfs_ops)
|
||||
ops = kobj->ktype->sysfs_ops;
|
||||
else {
|
||||
printk(KERN_ERR "missing sysfs attribute operations for "
|
||||
WARN(1, KERN_ERR "missing sysfs attribute operations for "
|
||||
"kobject: %s\n", kobject_name(kobj));
|
||||
WARN_ON(1);
|
||||
goto err_out;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user