aboutsummaryrefslogtreecommitdiffstats
path: root/lib/idr.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/idr.c')
-rw-r--r--lib/idr.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/idr.c b/lib/idr.c
index 8170ace154fb..9d905b131ecb 100644
--- a/lib/idr.c
+++ b/lib/idr.c
@@ -326,7 +326,8 @@ EXPORT_SYMBOL(idr_get_new);
326 326
327static void idr_remove_warning(int id) 327static void idr_remove_warning(int id)
328{ 328{
329 printk("idr_remove called for id=%d which is not allocated.\n", id); 329 printk(KERN_WARNING
330 "idr_remove called for id=%d which is not allocated.\n", id);
330 dump_stack(); 331 dump_stack();
331} 332}
332 333