.dep_map = {                                    \
                .name = #lockname,                      \
                .wait_type_inner = LD_WAIT_CONFIG,      \
+               .lock_type = LD_LOCK_PERCPU,                    \
        }
 #else
 # define LL_DEP_MAP_INIT(lockname)
        static struct lock_class_key __key;                     \
                                                                \
        debug_check_no_locks_freed((void *)lock, sizeof(*lock));\
-       lockdep_init_map_wait(&(lock)->dep_map, #lock, &__key, 0, LD_WAIT_CONFIG);\
+       lockdep_init_map_type(&(lock)->dep_map, #lock, &__key, 0, \
+                             LD_WAIT_CONFIG, LD_WAIT_INV,      \
+                             LD_LOCK_PERCPU);                  \
 } while (0)
 
 #ifdef CONFIG_DEBUG_LOCK_ALLOC
 
  * to lockdep:
  */
 
-extern void lockdep_init_map_waits(struct lockdep_map *lock, const char *name,
-       struct lock_class_key *key, int subclass, short inner, short outer);
+extern void lockdep_init_map_type(struct lockdep_map *lock, const char *name,
+       struct lock_class_key *key, int subclass, u8 inner, u8 outer, u8 lock_type);
+
+static inline void
+lockdep_init_map_waits(struct lockdep_map *lock, const char *name,
+                      struct lock_class_key *key, int subclass, u8 inner, u8 outer)
+{
+       lockdep_init_map_type(lock, name, key, subclass, inner, LD_WAIT_INV, LD_LOCK_NORMAL);
+}
 
 static inline void
 lockdep_init_map_wait(struct lockdep_map *lock, const char *name,
-                     struct lock_class_key *key, int subclass, short inner)
+                     struct lock_class_key *key, int subclass, u8 inner)
 {
        lockdep_init_map_waits(lock, name, key, subclass, inner, LD_WAIT_INV);
 }
 # define lock_set_class(l, n, k, s, i)         do { } while (0)
 # define lock_set_subclass(l, s, i)            do { } while (0)
 # define lockdep_init()                                do { } while (0)
+# define lockdep_init_map_type(lock, name, key, sub, inner, outer, type) \
+               do { (void)(name); (void)(key); } while (0)
 # define lockdep_init_map_waits(lock, name, key, sub, inner, outer) \
                do { (void)(name); (void)(key); } while (0)
 # define lockdep_init_map_wait(lock, name, key, sub, inner) \
 
        LD_WAIT_MAX,            /* must be last */
 };
 
+enum lockdep_lock_type {
+       LD_LOCK_NORMAL = 0,     /* normal, catch all */
+       LD_LOCK_PERCPU,         /* percpu */
+       LD_LOCK_MAX,
+};
+
 #ifdef CONFIG_LOCKDEP
 
 /*
        int                             name_version;
        const char                      *name;
 
-       short                           wait_type_inner;
-       short                           wait_type_outer;
+       u8                              wait_type_inner;
+       u8                              wait_type_outer;
+       u8                              lock_type;
+       /* u8                           hole; */
 
 #ifdef CONFIG_LOCK_STAT
        unsigned long                   contention_point[LOCKSTAT_POINTS];
        struct lock_class_key           *key;
        struct lock_class               *class_cache[NR_LOCKDEP_CACHING_CLASSES];
        const char                      *name;
-       short                           wait_type_outer; /* can be taken in this context */
-       short                           wait_type_inner; /* presents this context */
+       u8                              wait_type_outer; /* can be taken in this context */
+       u8                              wait_type_inner; /* presents this context */
+       u8                              lock_type;
+       /* u8                           hole; */
 #ifdef CONFIG_LOCK_STAT
        int                             cpu;
        unsigned long                   ip;
 
        class->name_version = count_matching_names(class);
        class->wait_type_inner = lock->wait_type_inner;
        class->wait_type_outer = lock->wait_type_outer;
+       class->lock_type = lock->lock_type;
        /*
         * We use RCU's safe list-add method to make
         * parallel walking of the hash-list safe:
  */
 static int check_wait_context(struct task_struct *curr, struct held_lock *next)
 {
-       short next_inner = hlock_class(next)->wait_type_inner;
-       short next_outer = hlock_class(next)->wait_type_outer;
-       short curr_inner;
+       u8 next_inner = hlock_class(next)->wait_type_inner;
+       u8 next_outer = hlock_class(next)->wait_type_outer;
+       u8 curr_inner;
        int depth;
 
        if (!curr->lockdep_depth || !next_inner || next->trylock)
 
        for (; depth < curr->lockdep_depth; depth++) {
                struct held_lock *prev = curr->held_locks + depth;
-               short prev_inner = hlock_class(prev)->wait_type_inner;
+               u8 prev_inner = hlock_class(prev)->wait_type_inner;
 
                if (prev_inner) {
                        /*
 /*
  * Initialize a lock instance's lock-class mapping info:
  */
-void lockdep_init_map_waits(struct lockdep_map *lock, const char *name,
+void lockdep_init_map_type(struct lockdep_map *lock, const char *name,
                            struct lock_class_key *key, int subclass,
-                           short inner, short outer)
+                           u8 inner, u8 outer, u8 lock_type)
 {
        int i;
 
 
        lock->wait_type_outer = outer;
        lock->wait_type_inner = inner;
+       lock->lock_type = lock_type;
 
        /*
         * No key, no joy, we need to hash something.
                raw_local_irq_restore(flags);
        }
 }
-EXPORT_SYMBOL_GPL(lockdep_init_map_waits);
+EXPORT_SYMBOL_GPL(lockdep_init_map_type);
 
 struct lock_class_key __lockdep_no_validate__;
 EXPORT_SYMBOL_GPL(__lockdep_no_validate__);