The patch titled
     OProfile: enable SPU switch notification to detect  currently active SPU 
tasks (update)
has been added to the -mm tree.  Its filename is
     
oprofile-enable-spu-switch-notification-to-detect-currently-active-spu-tasks-update.patch

*** Remember to use Documentation/SubmitChecklist when testing your code ***

See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this

------------------------------------------------------
Subject: OProfile: enable SPU switch notification to detect  currently active 
SPU tasks (update)
From: Maynard Johnson <[EMAIL PROTECTED]>

Changed "for (node = 0; node < MAX_NUMNODES; node++)" loop to
for_each_online_node(node).
Added comment to memory barrier.
Better info in changelog.

Cc: Carl Love <[EMAIL PROTECTED]>
Cc: Bob Nelson <[EMAIL PROTECTED]>
Cc: Arnd Bergmann <[EMAIL PROTECTED]>
Cc: Paul Mackerras <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 arch/powerpc/platforms/cell/spufs/sched.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff -puN 
arch/powerpc/platforms/cell/spufs/sched.c~oprofile-enable-spu-switch-notification-to-detect-currently-active-spu-tasks-update
 arch/powerpc/platforms/cell/spufs/sched.c
--- 
a/arch/powerpc/platforms/cell/spufs/sched.c~oprofile-enable-spu-switch-notification-to-detect-currently-active-spu-tasks-update
+++ a/arch/powerpc/platforms/cell/spufs/sched.c
@@ -220,13 +220,14 @@ static void notify_spus_active(void)
         * When the awakened processes see their "notify_active" flag is set,
         * they will call spu_switch_notify();
         */
-       for (node = 0; node < MAX_NUMNODES; node++) {
+       for_each_online_node(node) {
                struct spu *spu;
                mutex_lock(&spu_prio->active_mutex[node]);
                list_for_each_entry(spu, &spu_prio->active_list[node], list) {
                        struct spu_context *ctx = spu->ctx;
                        set_bit(SPU_SCHED_NOTIFY_ACTIVE, &ctx->sched_flags);
-                       mb();
+                       mb();   /* make sure any tasks woken up below */
+                               /* can see the bit(s) set above */
                        wake_up_all(&ctx->stop_wq);
                }
                mutex_unlock(&spu_prio->active_mutex[node]);
_

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

oprofile-enable-spu-switch-notification-to-detect-currently-active-spu-tasks.patch
oprofile-enable-spu-switch-notification-to-detect-currently-active-spu-tasks-update.patch
oprofile-add-support-to-oprofile-for-profiling-cell-be-spus.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