From: Frederic Weisbecker Date: Thu, 8 Apr 2021 22:38:58 +0000 (+0200) Subject: srcu: Unconditionally embed struct lockdep_map X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7bf0a6141ab9c1d113bd85d6d13d43903a4278ba;p=linux.git srcu: Unconditionally embed struct lockdep_map Since struct lockdep_map has zero size when CONFIG_DEBUG_LOCK_ALLOC=n, this commit removes the #ifdef from the srcu_struct structure's ->dep_map. This change will simplify further manipulations of this field. Signed-off-by: Frederic Weisbecker Cc: Uladzislau Rezki Cc: Boqun Feng Cc: Lai Jiangshan Cc: Neeraj Upadhyay Cc: Josh Triplett Cc: Joel Fernandes Signed-off-by: Paul E. McKenney --- diff --git a/include/linux/srcutree.h b/include/linux/srcutree.h index 9cfcc8a756ae3..cb1f4351e8baa 100644 --- a/include/linux/srcutree.h +++ b/include/linux/srcutree.h @@ -82,9 +82,7 @@ struct srcu_struct { /* callback for the barrier */ /* operation. */ struct delayed_work work; -#ifdef CONFIG_DEBUG_LOCK_ALLOC struct lockdep_map dep_map; -#endif /* #ifdef CONFIG_DEBUG_LOCK_ALLOC */ }; /* Values for state variable (bottom bits of ->srcu_gp_seq). */