summaryrefslogtreecommitdiffstats
path: root/lib/kobject.c
diff options
context:
space:
mode:
authorArjan van de Ven2008-07-25 10:45:55 +0200
committerLinus Torvalds2008-07-25 19:53:29 +0200
commitd955c78ac4699ac9c3fe07be62982cda13d13267 (patch)
treec2288e46ad681c2bc391a0bb2b40426b813c8a51 /lib/kobject.c
parentkernel/irq/manage.c: replace a printk + WARN_ON() to a WARN() (diff)
downloadkernel-qcow2-linux-d955c78ac4699ac9c3fe07be62982cda13d13267.tar.gz
kernel-qcow2-linux-d955c78ac4699ac9c3fe07be62982cda13d13267.tar.xz
kernel-qcow2-linux-d955c78ac4699ac9c3fe07be62982cda13d13267.zip
Example use of WARN()
Now that WARN() exists, we can fold some of the printk's into it. Signed-off-by: Arjan van de Ven <arjan@linux.intel.com> Cc: Greg KH <greg@kroah.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'lib/kobject.c')
-rw-r--r--lib/kobject.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/kobject.c b/lib/kobject.c
index 744401571ed7..bd732ffebc85 100644
--- a/lib/kobject.c
+++ b/lib/kobject.c
@@ -164,9 +164,8 @@ static int kobject_add_internal(struct kobject *kobj)
return -ENOENT;
if (!kobj->name || !kobj->name[0]) {
- pr_debug("kobject: (%p): attempted to be registered with empty "
+ WARN(1, "kobject: (%p): attempted to be registered with empty "
"name!\n", kobj);
- WARN_ON(1);
return -EINVAL;
}
@@ -583,12 +582,10 @@ static void kobject_release(struct kref *kref)
void kobject_put(struct kobject *kobj)
{
if (kobj) {
- if (!kobj->state_initialized) {
- printk(KERN_WARNING "kobject: '%s' (%p): is not "
+ if (!kobj->state_initialized)
+ WARN(1, KERN_WARNING "kobject: '%s' (%p): is not "
"initialized, yet kobject_put() is being "
"called.\n", kobject_name(kobj), kobj);
- WARN_ON(1);
- }
kref_put(&kobj->kref, kobject_release);
}
}