diff options
Diffstat (limited to 'kernel/exit.c')
| -rw-r--r-- | kernel/exit.c | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/kernel/exit.c b/kernel/exit.c index 7f7ef225855..c595db14cf2 100644 --- a/kernel/exit.c +++ b/kernel/exit.c @@ -933,10 +933,9 @@ fastcall NORET_TYPE void do_exit(long code)  	if (unlikely(current->pi_state_cache))  		kfree(current->pi_state_cache);  	/* -	 * If DEBUG_MUTEXES is on, make sure we are holding no locks: +	 * Make sure we are holding no locks:  	 */ -	mutex_debug_check_no_locks_held(tsk); -	rt_mutex_debug_check_no_locks_held(tsk); +	debug_check_no_locks_held(tsk);  	if (tsk->io_context)  		exit_io_context();  |