Skip to content

Commit

Permalink
tools/liblockdep: remove task argument from debug_check_no_locks_held
Browse files Browse the repository at this point in the history
The tas argument was removed from the kernel code in 1b1d2fb ("lockdep:
remove task argument from debug_check_no_locks_held"). Remove it in loblockdep
too.

Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
  • Loading branch information
sashalevin committed Nov 6, 2015
1 parent 6a13feb commit 1393ba5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/lib/lockdep/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ __attribute__((constructor)) static void liblockdep_init(void)

__attribute__((destructor)) static void liblockdep_exit(void)
{
debug_check_no_locks_held(&current_obj);
debug_check_no_locks_held();
}

struct task_struct *__curr(void)
Expand Down

0 comments on commit 1393ba5

Please sign in to comment.