linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] lockdep: Add missing declaration of 'pr_cont()'
@ 2017-11-07  2:24 Mengting Zhang
  2017-11-07 16:10 ` Alexander Sverdlin
  0 siblings, 1 reply; 3+ messages in thread
From: Mengting Zhang @ 2017-11-07  2:24 UTC (permalink / raw)
  To: alexander.levin, ben, alexander.sverdlin
  Cc: linux-kernel, huawei.libin, zhangmengting

An annoying compile warning due to missing declaration is shown below:
In file included from lockdep.c:27:0:
../../../kernel/locking/lockdep.c: In function 'print_unlock_imbalance_bug' :
../../../kernel/locking/lockdep.c:3544:2: warning: implicit declaration of function 'pr_cont' [-Wimplicit-function-declaration]
  pr_cont(") at:\n");
  ^
Adding the declaration of 'pr_cont' fixes the problem.

Signed-off-by: Mengting Zhang <zhangmengting@huawei.com>
---
 tools/include/linux/lockdep.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/include/linux/lockdep.h b/tools/include/linux/lockdep.h
index 8da3e8e..ae716ad 100644
--- a/tools/include/linux/lockdep.h
+++ b/tools/include/linux/lockdep.h
@@ -47,6 +47,7 @@ static inline int debug_locks_off(void)
 #define printk(...) dprintf(STDOUT_FILENO, __VA_ARGS__)
 #define pr_err(format, ...) fprintf (stderr, format, ## __VA_ARGS__)
 #define pr_warn pr_err
+#define pr_cont pr_err
 
 #define list_del_rcu list_del
 
-- 
1.7.12.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] lockdep: Add missing declaration of 'pr_cont()'
  2017-11-07  2:24 [PATCH] lockdep: Add missing declaration of 'pr_cont()' Mengting Zhang
@ 2017-11-07 16:10 ` Alexander Sverdlin
  2017-11-13 15:09   ` alexander.levin
  0 siblings, 1 reply; 3+ messages in thread
From: Alexander Sverdlin @ 2017-11-07 16:10 UTC (permalink / raw)
  To: Mengting Zhang, alexander.levin, ben; +Cc: linux-kernel, huawei.libin

Hello!

On Tue Nov   7 03:24:20 2017 Mengting Zhang <zhangmengting@huawei.com> wrote:
> An annoying compile warning due to missing declaration is shown below:
> In file included from lockdep.c:27:0:
> ../../../kernel/locking/lockdep.c: In function
> 'print_unlock_imbalance_bug' : ../../../kernel/locking/lockdep.c:3544:2:
> warning: implicit declaration of function 'pr_cont'
> [-Wimplicit-function-declaration]   pr_cont(") at:\n");   ^
> Adding the declaration of 'pr_cont' fixes the problem.
> 
> Signed-off-by: Mengting Zhang <zhangmengting@huawei.com>

Your commit brought my attention to the fact that commit 681fbec881 brought a regression, rendering 20fb654ae fix ineffective.

But this is not related to your change, which I believe is correct:
Reviewed-by: Alexander Sverdlin <alexander.sverdlin@gmail.com> 

> ---
>   tools/include/linux/lockdep.h | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/tools/include/linux/lockdep.h
> b/tools/include/linux/lockdep.h index 8da3e8e..ae716ad 100644
> --- a/tools/include/linux/lockdep.h
> +++ b/tools/include/linux/lockdep.h
> @@ -47,6 +47,7 @@ static inline int debug_locks_off(void)
>   #define printk(...) dprintf(STDOUT_FILENO, __VA_ARGS__)
>   #define pr_err(format, ...) fprintf (stderr, format, ## __VA_ARGS__)
>   #define pr_warn pr_err
> +#define pr_cont pr_err
>   
>   #define list_del_rcu list_del
>   
> -- 
> 1.7.12.4
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] lockdep: Add missing declaration of 'pr_cont()'
  2017-11-07 16:10 ` Alexander Sverdlin
@ 2017-11-13 15:09   ` alexander.levin
  0 siblings, 0 replies; 3+ messages in thread
From: alexander.levin @ 2017-11-13 15:09 UTC (permalink / raw)
  To: Alexander Sverdlin; +Cc: Mengting Zhang, ben, linux-kernel, huawei.libin

On Tue, Nov 07, 2017 at 05:10:07PM +0100, Alexander Sverdlin wrote:
>Hello!
>
>On Tue Nov   7 03:24:20 2017 Mengting Zhang <zhangmengting@huawei.com> wrote:
>> An annoying compile warning due to missing declaration is shown below:
>> In file included from lockdep.c:27:0:
>> ../../../kernel/locking/lockdep.c: In function
>> 'print_unlock_imbalance_bug' : ../../../kernel/locking/lockdep.c:3544:2:
>> warning: implicit declaration of function 'pr_cont'
>> [-Wimplicit-function-declaration]   pr_cont(") at:\n");   ^
>> Adding the declaration of 'pr_cont' fixes the problem.
>>
>> Signed-off-by: Mengting Zhang <zhangmengting@huawei.com>
>
>Your commit brought my attention to the fact that commit 681fbec881 brought a regression, rendering 20fb654ae fix ineffective.
>
>But this is not related to your change, which I believe is correct:
>Reviewed-by: Alexander Sverdlin <alexander.sverdlin@gmail.com>

Thanks! Queued up.

-- 

Thanks,
Sasha

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-11-13 15:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-07  2:24 [PATCH] lockdep: Add missing declaration of 'pr_cont()' Mengting Zhang
2017-11-07 16:10 ` Alexander Sverdlin
2017-11-13 15:09   ` alexander.levin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).