Przeglądaj źródła

[PATCH] lockdep: use BUILD_BUG_ON

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Acked-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Alexey Dobriyan 18 lat temu
rodzic
commit
3dc3099a9b
1 zmienionych plików z 1 dodań i 4 usunięć
  1. 1 4
      kernel/lockdep.c

+ 1 - 4
kernel/lockdep.c

@@ -1114,8 +1114,6 @@ static int count_matching_names(struct lock_class *new_class)
 	return count + 1;
 	return count + 1;
 }
 }
 
 
-extern void __error_too_big_MAX_LOCKDEP_SUBCLASSES(void);
-
 /*
 /*
  * Register a lock's class in the hash-table, if the class is not present
  * Register a lock's class in the hash-table, if the class is not present
  * yet. Otherwise we look it up. We cache the result in the lock object
  * yet. Otherwise we look it up. We cache the result in the lock object
@@ -1153,8 +1151,7 @@ look_up_lock_class(struct lockdep_map *lock, unsigned int subclass)
 	 * (or spin_lock_init()) call - which acts as the key. For static
 	 * (or spin_lock_init()) call - which acts as the key. For static
 	 * locks we use the lock object itself as the key.
 	 * locks we use the lock object itself as the key.
 	 */
 	 */
-	if (sizeof(struct lock_class_key) > sizeof(struct lock_class))
-		__error_too_big_MAX_LOCKDEP_SUBCLASSES();
+	BUILD_BUG_ON(sizeof(struct lock_class_key) > sizeof(struct lock_class));
 
 
 	key = lock->key->subkeys + subclass;
 	key = lock->key->subkeys + subclass;