|
@@ -44,6 +44,7 @@
|
|
|
#include <linux/stringify.h>
|
|
|
#include <linux/bitops.h>
|
|
|
#include <linux/gfp.h>
|
|
|
+#include <linux/kmemcheck.h>
|
|
|
|
|
|
#include <asm/sections.h>
|
|
|
|
|
@@ -2950,7 +2951,12 @@ static int mark_lock(struct task_struct *curr, struct held_lock *this,
|
|
|
void lockdep_init_map(struct lockdep_map *lock, const char *name,
|
|
|
struct lock_class_key *key, int subclass)
|
|
|
{
|
|
|
- memset(lock, 0, sizeof(*lock));
|
|
|
+ int i;
|
|
|
+
|
|
|
+ kmemcheck_mark_initialized(lock, sizeof(*lock));
|
|
|
+
|
|
|
+ for (i = 0; i < NR_LOCKDEP_CACHING_CLASSES; i++)
|
|
|
+ lock->class_cache[i] = NULL;
|
|
|
|
|
|
#ifdef CONFIG_LOCK_STAT
|
|
|
lock->cpu = raw_smp_processor_id();
|