* [PATCH] lockdep: Rename print_unlock_inbalance_bug() to print_unlock_imbalance_bug()
@ 2013-01-08 13:05 Srivatsa S. Bhat
2013-01-24 20:14 ` [tip:core/locking] " tip-bot for Srivatsa S. Bhat
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Srivatsa S. Bhat @ 2013-01-08 13:05 UTC (permalink / raw)
To: mingo, peterz, akpm; +Cc: tglx, rostedt, linux-kernel, Srivatsa S. Bhat
Fix the typo in the function name (s/inbalance/imbalance)
Signed-off-by: Srivatsa S. Bhat <srivatsa.bhat@linux.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)
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [tip:core/locking] lockdep: Rename print_unlock_inbalance_bug() to print_unlock_imbalance_bug()
2013-01-08 13:05 [PATCH] lockdep: Rename print_unlock_inbalance_bug() to print_unlock_imbalance_bug() Srivatsa S. Bhat
@ 2013-01-24 20:14 ` tip-bot for Srivatsa S. Bhat
2013-01-31 16:26 ` [PATCH] " Steven Rostedt
2013-02-22 12:21 ` [tip:core/locking] " tip-bot for Srivatsa S. Bhat
2 siblings, 0 replies; 4+ messages in thread
From: tip-bot for Srivatsa S. Bhat @ 2013-01-24 20:14 UTC (permalink / raw)
To: linux-tip-commits; +Cc: linux-kernel, hpa, mingo, srivatsa.bhat, tglx
Commit-ID: 5e45a7c83c6c8bd53c718caaf0fdff0ffabf8d8f
Gitweb: http://git.kernel.org/tip/5e45a7c83c6c8bd53c718caaf0fdff0ffabf8d8f
Author: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
AuthorDate: Tue, 8 Jan 2013 18:35:58 +0530
Committer: Ingo Molnar <mingo@kernel.org>
CommitDate: Thu, 24 Jan 2013 14:34:41 +0100
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>
---
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)
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] lockdep: Rename print_unlock_inbalance_bug() to print_unlock_imbalance_bug()
2013-01-08 13:05 [PATCH] lockdep: Rename print_unlock_inbalance_bug() to print_unlock_imbalance_bug() Srivatsa S. Bhat
2013-01-24 20:14 ` [tip:core/locking] " tip-bot for Srivatsa S. Bhat
@ 2013-01-31 16:26 ` Steven Rostedt
2013-02-22 12:21 ` [tip:core/locking] " tip-bot for Srivatsa S. Bhat
2 siblings, 0 replies; 4+ messages in thread
From: Steven Rostedt @ 2013-01-31 16:26 UTC (permalink / raw)
To: Srivatsa S. Bhat; +Cc: mingo, peterz, akpm, tglx, linux-kernel
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@goodmis.org>
-- Steve
> Signed-off-by: Srivatsa S. Bhat <srivatsa.bhat@linux.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)
^ permalink raw reply [flat|nested] 4+ messages in thread
* [tip:core/locking] lockdep: Rename print_unlock_inbalance_bug() to print_unlock_imbalance_bug()
2013-01-08 13:05 [PATCH] lockdep: Rename print_unlock_inbalance_bug() to print_unlock_imbalance_bug() Srivatsa S. Bhat
2013-01-24 20:14 ` [tip:core/locking] " tip-bot for Srivatsa S. Bhat
2013-01-31 16:26 ` [PATCH] " Steven Rostedt
@ 2013-02-22 12:21 ` tip-bot for Srivatsa S. Bhat
2 siblings, 0 replies; 4+ messages in thread
From: tip-bot for Srivatsa S. Bhat @ 2013-02-22 12:21 UTC (permalink / raw)
To: linux-tip-commits; +Cc: linux-kernel, hpa, mingo, srivatsa.bhat, tglx
Commit-ID: f86f75548233a2be7379ac446e91729710d4a5f7
Gitweb: http://git.kernel.org/tip/f86f75548233a2be7379ac446e91729710d4a5f7
Author: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
AuthorDate: Tue, 8 Jan 2013 18:35:58 +0530
Committer: Ingo Molnar <mingo@kernel.org>
CommitDate: Tue, 19 Feb 2013 08:42:39 +0100
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>
---
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)
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-02-22 12:23 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-08 13:05 [PATCH] lockdep: Rename print_unlock_inbalance_bug() to print_unlock_imbalance_bug() Srivatsa S. Bhat
2013-01-24 20:14 ` [tip:core/locking] " tip-bot for Srivatsa S. Bhat
2013-01-31 16:26 ` [PATCH] " Steven Rostedt
2013-02-22 12:21 ` [tip:core/locking] " tip-bot for Srivatsa S. Bhat
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.