mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] lockdep: make class_filter() inline and remove unnecessary macros
@ 2024-06-06  8:57 Wenchao Hao
  2024-08-05 17:39 ` Boqun Feng
  0 siblings, 1 reply; 2+ messages in thread
From: Wenchao Hao @ 2024-06-06  8:57 UTC (permalink / raw)
  To: Peter Zijlstra, Ingo Molnar, Will Deacon, Waiman Long,
	Boqun Feng, linux-kernel
  Cc: Wenchao Hao

This is just a clean code which simplify the code implement and make it
easy to understand. No logic changed from origin implement.

Make class_filter() inline which just return 0, and directly called from
verbose(), very_verbose(), HARDIRQ_verbose() and SOFTIRQ_verbose() without
macro control, remove unnecessary macros VERY_VERBOSE, HARDIRQ_VERBOSE
and SOFTIRQ_VERBOSE.

Signed-off-by: Wenchao Hao <haowenchao22@gmail.com>
---
 kernel/locking/lockdep.c | 25 +------------------------
 1 file changed, 1 insertion(+), 24 deletions(-)

diff --git a/kernel/locking/lockdep.c b/kernel/locking/lockdep.c
index 151bd3de5936..cd8356106da2 100644
--- a/kernel/locking/lockdep.c
+++ b/kernel/locking/lockdep.c
@@ -478,21 +478,11 @@ void lockdep_set_selftest_task(struct task_struct *task)
  */
 
 #define VERBOSE			0
-#define VERY_VERBOSE		0
 
-#if VERBOSE
-# define HARDIRQ_VERBOSE	1
-# define SOFTIRQ_VERBOSE	1
-#else
-# define HARDIRQ_VERBOSE	0
-# define SOFTIRQ_VERBOSE	0
-#endif
-
-#if VERBOSE || HARDIRQ_VERBOSE || SOFTIRQ_VERBOSE
 /*
  * Quick filtering for interesting events:
  */
-static int class_filter(struct lock_class *class)
+static inline int class_filter(struct lock_class *class)
 {
 #if 0
 	/* Example */
@@ -506,14 +496,10 @@ static int class_filter(struct lock_class *class)
 	/* Filter everything else. 1 would be to allow everything else */
 	return 0;
 }
-#endif
 
 static int verbose(struct lock_class *class)
 {
-#if VERBOSE
 	return class_filter(class);
-#endif
-	return 0;
 }
 
 static void print_lockdep_off(const char *bug_msg)
@@ -809,10 +795,7 @@ static void print_kernel_ident(void)
 
 static int very_verbose(struct lock_class *class)
 {
-#if VERY_VERBOSE
 	return class_filter(class);
-#endif
-	return 0;
 }
 
 /*
@@ -4171,18 +4154,12 @@ void print_irqtrace_events(struct task_struct *curr)
 
 static int HARDIRQ_verbose(struct lock_class *class)
 {
-#if HARDIRQ_VERBOSE
 	return class_filter(class);
-#endif
-	return 0;
 }
 
 static int SOFTIRQ_verbose(struct lock_class *class)
 {
-#if SOFTIRQ_VERBOSE
 	return class_filter(class);
-#endif
-	return 0;
 }
 
 static int (*state_verbose_f[])(struct lock_class *class) = {
-- 
2.38.1


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

* Re: [PATCH] lockdep: make class_filter() inline and remove unnecessary macros
  2024-06-06  8:57 [PATCH] lockdep: make class_filter() inline and remove unnecessary macros Wenchao Hao
@ 2024-08-05 17:39 ` Boqun Feng
  0 siblings, 0 replies; 2+ messages in thread
From: Boqun Feng @ 2024-08-05 17:39 UTC (permalink / raw)
  To: Wenchao Hao
  Cc: Peter Zijlstra, Ingo Molnar, Will Deacon, Waiman Long, linux-kernel

On Thu, Jun 06, 2024 at 04:57:44PM +0800, Wenchao Hao wrote:
> This is just a clean code which simplify the code implement and make it
> easy to understand. No logic changed from origin implement.
> 
> Make class_filter() inline which just return 0, and directly called from
> verbose(), very_verbose(), HARDIRQ_verbose() and SOFTIRQ_verbose() without
> macro control, remove unnecessary macros VERY_VERBOSE, HARDIRQ_VERBOSE
> and SOFTIRQ_VERBOSE.
> 

Are you looking into using a Kconfig to control the behavior of
class_filter()? Otherwise, I find this change is not that necessary,
don't make me wrong, it's better than the current version, but still it
just changes one version of dead code into another, so doesn't bring
anything.

Regards,
BOqun

> Signed-off-by: Wenchao Hao <haowenchao22@gmail.com>
> ---
>  kernel/locking/lockdep.c | 25 +------------------------
>  1 file changed, 1 insertion(+), 24 deletions(-)
> 
> diff --git a/kernel/locking/lockdep.c b/kernel/locking/lockdep.c
> index 151bd3de5936..cd8356106da2 100644
> --- a/kernel/locking/lockdep.c
> +++ b/kernel/locking/lockdep.c
> @@ -478,21 +478,11 @@ void lockdep_set_selftest_task(struct task_struct *task)
>   */
>  
>  #define VERBOSE			0
> -#define VERY_VERBOSE		0
>  
> -#if VERBOSE
> -# define HARDIRQ_VERBOSE	1
> -# define SOFTIRQ_VERBOSE	1
> -#else
> -# define HARDIRQ_VERBOSE	0
> -# define SOFTIRQ_VERBOSE	0
> -#endif
> -
> -#if VERBOSE || HARDIRQ_VERBOSE || SOFTIRQ_VERBOSE
>  /*
>   * Quick filtering for interesting events:
>   */
> -static int class_filter(struct lock_class *class)
> +static inline int class_filter(struct lock_class *class)
>  {
>  #if 0
>  	/* Example */
> @@ -506,14 +496,10 @@ static int class_filter(struct lock_class *class)
>  	/* Filter everything else. 1 would be to allow everything else */
>  	return 0;
>  }
> -#endif
>  
>  static int verbose(struct lock_class *class)
>  {
> -#if VERBOSE
>  	return class_filter(class);
> -#endif
> -	return 0;
>  }
>  
>  static void print_lockdep_off(const char *bug_msg)
> @@ -809,10 +795,7 @@ static void print_kernel_ident(void)
>  
>  static int very_verbose(struct lock_class *class)
>  {
> -#if VERY_VERBOSE
>  	return class_filter(class);
> -#endif
> -	return 0;
>  }
>  
>  /*
> @@ -4171,18 +4154,12 @@ void print_irqtrace_events(struct task_struct *curr)
>  
>  static int HARDIRQ_verbose(struct lock_class *class)
>  {
> -#if HARDIRQ_VERBOSE
>  	return class_filter(class);
> -#endif
> -	return 0;
>  }
>  
>  static int SOFTIRQ_verbose(struct lock_class *class)
>  {
> -#if SOFTIRQ_VERBOSE
>  	return class_filter(class);
> -#endif
> -	return 0;
>  }
>  
>  static int (*state_verbose_f[])(struct lock_class *class) = {
> -- 
> 2.38.1
> 

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

end of thread, other threads:[~2024-08-05 17:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-06-06  8:57 [PATCH] lockdep: make class_filter() inline and remove unnecessary macros Wenchao Hao
2024-08-05 17:39 ` Boqun Feng

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®