Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 356280
b: refs/heads/master
c: f86f755
h: refs/heads/master
v: v3
  • Loading branch information
Srivatsa S. Bhat authored and Ingo Molnar committed Feb 19, 2013
1 parent 09adb67 commit 73ba8bc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0be5c8ff58cf7a66019af2f1236daff731ed318c
refs/heads/master: f86f75548233a2be7379ac446e91729710d4a5f7
8 changes: 4 additions & 4 deletions trunk/kernel/lockdep.c
Original file line number Diff line number Diff line change
Expand Up @@ -3203,7 +3203,7 @@ static int __lock_acquire(struct lockdep_map *lock, unsigned int subclass,
}

static int
print_unlock_inbalance_bug(struct task_struct *curr, struct lockdep_map *lock,
print_unlock_imbalance_bug(struct task_struct *curr, struct lockdep_map *lock,
unsigned long ip)
{
if (!debug_locks_off())
Expand Down Expand Up @@ -3246,7 +3246,7 @@ static int check_unlock(struct task_struct *curr, struct lockdep_map *lock,
return 0;

if (curr->lockdep_depth <= 0)
return print_unlock_inbalance_bug(curr, lock, ip);
return print_unlock_imbalance_bug(curr, lock, ip);

return 1;
}
Expand Down Expand Up @@ -3317,7 +3317,7 @@ __lock_set_class(struct lockdep_map *lock, const char *name,
goto found_it;
prev_hlock = hlock;
}
return print_unlock_inbalance_bug(curr, lock, ip);
return print_unlock_imbalance_bug(curr, lock, ip);

found_it:
lockdep_init_map(lock, name, key, 0);
Expand Down Expand Up @@ -3384,7 +3384,7 @@ lock_release_non_nested(struct task_struct *curr,
goto found_it;
prev_hlock = hlock;
}
return print_unlock_inbalance_bug(curr, lock, ip);
return print_unlock_imbalance_bug(curr, lock, ip);

found_it:
if (hlock->instance == lock)
Expand Down

0 comments on commit 73ba8bc

Please sign in to comment.