* [PATCH] sched: configure a lockdep class for rq->lock
@ 2011-11-28 11:38 Max Kellermann
0 siblings, 0 replies; only message in thread
From: Max Kellermann @ 2011-11-28 11:38 UTC (permalink / raw)
To: linux-kernel
This fixes the warning that disables lockdep at runtime:
INFO: trying to register non-static key.
the code is fine but needs lockdep annotation.
turning off the locking correctness validator.
Signed-off-by: Max Kellermann <mk@cm4all.com>
---
kernel/sched.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/kernel/sched.c b/kernel/sched.c
index b50b0f0..57f9b37 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -574,6 +574,8 @@ struct rq {
#endif
};
+static struct lock_class_key rq_lock_class;
+
static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
@@ -8077,6 +8079,7 @@ void __init sched_init(void)
rq = cpu_rq(i);
raw_spin_lock_init(&rq->lock);
+ lockdep_set_class(&rq->lock, &rq_lock_class);
rq->nr_running = 0;
rq->calc_load_active = 0;
rq->calc_load_update = jiffies + LOAD_FREQ;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2011-11-28 11:36 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-11-28 11:38 [PATCH] sched: configure a lockdep class for rq->lock Max Kellermann
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®