[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20111128113852.23015.88535.stgit@rabbit.intern.cm-ag>
Date: Mon, 28 Nov 2011 12:38:52 +0100
From: Max Kellermann <mk@...all.com>
To: linux-kernel@...r.kernel.org
Subject: [PATCH] sched: configure a lockdep class for rq->lock
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@...all.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;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists