Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1378384 > unrolled thread

[PATCH] lockdep: Include print_collision and helper functions in DEBUG_LOCKDEP

Started byYang Shi <yang.shi@linaro.org>
First post2016-04-14 03:30 +0200
Last post2016-04-15 19:10 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] lockdep: Include print_collision and helper functions in DEBUG_LOCKDEP Yang Shi <yang.shi@linaro.org> - 2016-04-14 03:30 +0200
    Re: [PATCH] lockdep: Include print_collision and helper functions in DEBUG_LOCKDEP Kees Cook <keescook@chromium.org> - 2016-04-15 19:10 +0200

#1378384 — [PATCH] lockdep: Include print_collision and helper functions in DEBUG_LOCKDEP

FromYang Shi <yang.shi@linaro.org>
Date2016-04-14 03:30 +0200
Subject[PATCH] lockdep: Include print_collision and helper functions in DEBUG_LOCKDEP
Message-ID<rnEgy-22Q-1@gated-at.bofh.it>
pint_collosion and helper functions are just used when DEBUG_LOCKDEP is
selected, so include them in #ifdef CONFIG_DEBUG_LOCKDEP to avoid the below
"defined but not used" warning when DEBUG_LOCKDEP is off:

kernel/locking/lockdep.c:2051:13: warning: 'print_collision' defined but not used [-Wunused-function]
 static void print_collision(struct task_struct *curr,

Signed-off-by: Yang Shi <yang.shi@linaro.org>
---
 kernel/locking/lockdep.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/kernel/locking/lockdep.c b/kernel/locking/lockdep.c
index 2324ba5..ed94109 100644
--- a/kernel/locking/lockdep.c
+++ b/kernel/locking/lockdep.c
@@ -1999,6 +1999,7 @@ static inline int get_first_held_lock(struct task_struct *curr,
 	return ++i;
 }
 
+#ifdef CONFIG_DEBUG_LOCKDEP
 /*
  * Returns the next chain_key iteration
  */
@@ -2069,6 +2070,7 @@ static void print_collision(struct task_struct *curr,
 	printk("\nstack backtrace:\n");
 	dump_stack();
 }
+#endif
 
 /*
  * Checks whether the chain and the current held locks are consistent
-- 
2.0.2

[toc] | [next] | [standalone]


#1380037

FromKees Cook <keescook@chromium.org>
Date2016-04-15 19:10 +0200
Message-ID<rofpN-6tr-59@gated-at.bofh.it>
In reply to#1378384
On Wed, Apr 13, 2016 at 5:57 PM, Yang Shi <yang.shi@linaro.org> wrote:
> pint_collosion and helper functions are just used when DEBUG_LOCKDEP is
> selected, so include them in #ifdef CONFIG_DEBUG_LOCKDEP to avoid the below
> "defined but not used" warning when DEBUG_LOCKDEP is off:
>
> kernel/locking/lockdep.c:2051:13: warning: 'print_collision' defined but not used [-Wunused-function]
>  static void print_collision(struct task_struct *curr,
>
> Signed-off-by: Yang Shi <yang.shi@linaro.org>

Thanks, I had noticed this warning too.

Reviewed-by: Kees Cook <keescook@chromium.org>

-Kees

> ---
>  kernel/locking/lockdep.c | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/kernel/locking/lockdep.c b/kernel/locking/lockdep.c
> index 2324ba5..ed94109 100644
> --- a/kernel/locking/lockdep.c
> +++ b/kernel/locking/lockdep.c
> @@ -1999,6 +1999,7 @@ static inline int get_first_held_lock(struct task_struct *curr,
>         return ++i;
>  }
>
> +#ifdef CONFIG_DEBUG_LOCKDEP
>  /*
>   * Returns the next chain_key iteration
>   */
> @@ -2069,6 +2070,7 @@ static void print_collision(struct task_struct *curr,
>         printk("\nstack backtrace:\n");
>         dump_stack();
>  }
> +#endif
>
>  /*
>   * Checks whether the chain and the current held locks are consistent
> --
> 2.0.2
>



-- 
Kees Cook
Chrome OS & Brillo Security

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web