The patch titled
     sched: align rq to cacheline boundary
has been removed from the -mm tree.  Its filename was
     sched-align-rq-to-cacheline-boundary.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
Subject: sched: align rq to cacheline boundary
From: "Siddha, Suresh B" <[EMAIL PROTECTED]>

Align the per cpu runqueue to the cacheline boundary.  This will minimize
the number of cachelines touched during remote wakeup.

Signed-off-by: Suresh Siddha <[EMAIL PROTECTED]>
Acked-by: Ingo Molnar <[EMAIL PROTECTED]>
Cc: Ravikiran G Thirumalai <[EMAIL PROTECTED]>
Cc: Nick Piggin <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 kernel/sched.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -puN kernel/sched.c~sched-align-rq-to-cacheline-boundary kernel/sched.c
--- a/kernel/sched.c~sched-align-rq-to-cacheline-boundary
+++ a/kernel/sched.c
@@ -304,7 +304,7 @@ struct rq {
        struct lock_class_key rq_lock_key;
 };
 
-static DEFINE_PER_CPU(struct rq, runqueues);
+static DEFINE_PER_CPU(struct rq, runqueues) ____cacheline_aligned_in_smp;
 
 static inline int cpu_of(struct rq *rq)
 {
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

origin.patch
git-ia64.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to