lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Thu, 31 Jan 2013 11:26:13 -0500
From:	Steven Rostedt <rostedt@...dmis.org>
To:	"Srivatsa S. Bhat" <srivatsa.bhat@...ux.vnet.ibm.com>
Cc:	mingo@...nel.org, peterz@...radead.org, akpm@...ux-foundation.org,
	tglx@...utronix.de, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] lockdep: Rename print_unlock_inbalance_bug() to
 print_unlock_imbalance_bug()

On Tue, 2013-01-08 at 18:35 +0530, Srivatsa S. Bhat wrote:
> Fix the typo in the function name (s/inbalance/imbalance)
> 

Acked-by: Steven Rostedt <rostedt@...dmis.org>

-- Steve

> Signed-off-by: Srivatsa S. Bhat <srivatsa.bhat@...ux.vnet.ibm.com>
> ---
> 
>  kernel/lockdep.c |    8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/kernel/lockdep.c b/kernel/lockdep.c
> index 7981e5b..5cf12e7 100644
> --- a/kernel/lockdep.c
> +++ b/kernel/lockdep.c
> @@ -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())
> @@ -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;
>  }
> @@ -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);
> @@ -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)


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ