aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/lockdep.c
diff options
context:
space:
mode:
authorSrivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>2013-01-08 08:05:58 -0500
committerIngo Molnar <mingo@kernel.org>2013-02-19 02:42:39 -0500
commitf86f75548233a2be7379ac446e91729710d4a5f7 (patch)
treefacc6828693bd882fa4bbf1094b250b09743050d /kernel/lockdep.c
parent0be5c8ff58cf7a66019af2f1236daff731ed318c (diff)
lockdep: Rename print_unlock_inbalance_bug() to print_unlock_imbalance_bug()
Fix the typo in the function name (s/inbalance/imbalance) Signed-off-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com> Cc: rostedt@goodmis.org Cc: peterz@infradead.org Link: http://lkml.kernel.org/r/20130108130547.32733.79507.stgit@srivatsabhat.in.ibm.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'kernel/lockdep.c')
-rw-r--r--kernel/lockdep.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/lockdep.c b/kernel/lockdep.c
index 7981e5b2350d..5cf12e791603 100644
--- a/kernel/lockdep.c
+++ b/kernel/lockdep.c
@@ -3203,7 +3203,7 @@ static int __lock_acquire(struct lockdep_map *lock, unsigned int subclass,
3203} 3203}
3204 3204
3205static int 3205static int
3206print_unlock_inbalance_bug(struct task_struct *curr, struct lockdep_map *lock, 3206print_unlock_imbalance_bug(struct task_struct *curr, struct lockdep_map *lock,
3207 unsigned long ip) 3207 unsigned long ip)
3208{ 3208{
3209 if (!debug_locks_off()) 3209 if (!debug_locks_off())
@@ -3246,7 +3246,7 @@ static int check_unlock(struct task_struct *curr, struct lockdep_map *lock,
3246 return 0; 3246 return 0;
3247 3247
3248 if (curr->lockdep_depth <= 0) 3248 if (curr->lockdep_depth <= 0)
3249 return print_unlock_inbalance_bug(curr, lock, ip); 3249 return print_unlock_imbalance_bug(curr, lock, ip);
3250 3250
3251 return 1; 3251 return 1;
3252} 3252}
@@ -3317,7 +3317,7 @@ __lock_set_class(struct lockdep_map *lock, const char *name,
3317 goto found_it; 3317 goto found_it;
3318 prev_hlock = hlock; 3318 prev_hlock = hlock;
3319 } 3319 }
3320 return print_unlock_inbalance_bug(curr, lock, ip); 3320 return print_unlock_imbalance_bug(curr, lock, ip);
3321 3321
3322found_it: 3322found_it:
3323 lockdep_init_map(lock, name, key, 0); 3323 lockdep_init_map(lock, name, key, 0);
@@ -3384,7 +3384,7 @@ lock_release_non_nested(struct task_struct *curr,
3384 goto found_it; 3384 goto found_it;
3385 prev_hlock = hlock; 3385 prev_hlock = hlock;
3386 } 3386 }
3387 return print_unlock_inbalance_bug(curr, lock, ip); 3387 return print_unlock_imbalance_bug(curr, lock, ip);
3388 3388
3389found_it: 3389found_it:
3390 if (hlock->instance == lock) 3390 if (hlock->instance == lock)