aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kernel/lockdep.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/kernel/lockdep.c b/kernel/lockdep.c
index 01e750559034..509efd49540f 100644
--- a/kernel/lockdep.c
+++ b/kernel/lockdep.c
@@ -1318,12 +1318,16 @@ static inline int lookup_chain_cache(u64 chain_key, struct lock_class *class)
1318cache_hit: 1318cache_hit:
1319 debug_atomic_inc(&chain_lookup_hits); 1319 debug_atomic_inc(&chain_lookup_hits);
1320 if (very_verbose(class)) 1320 if (very_verbose(class))
1321 printk("\nhash chain already cached, key: %016Lx tail class: [%p] %s\n", chain_key, class->key, class->name); 1321 printk("\nhash chain already cached, key: "
1322 "%016Lx tail class: [%p] %s\n",
1323 (unsigned long long)chain_key,
1324 class->key, class->name);
1322 return 0; 1325 return 0;
1323 } 1326 }
1324 } 1327 }
1325 if (very_verbose(class)) 1328 if (very_verbose(class))
1326 printk("\nnew hash chain, key: %016Lx tail class: [%p] %s\n", chain_key, class->key, class->name); 1329 printk("\nnew hash chain, key: %016Lx tail class: [%p] %s\n",
1330 (unsigned long long)chain_key, class->key, class->name);
1327 /* 1331 /*
1328 * Allocate a new chain entry from the static array, and add 1332 * Allocate a new chain entry from the static array, and add
1329 * it to the hash: 1333 * it to the hash: