2005-11-16 04:53:52 +08:00
|
|
|
/* sched.c - SPU scheduler.
|
|
|
|
*
|
|
|
|
* Copyright (C) IBM 2005
|
|
|
|
* Author: Mark Nutter <mnutter@us.ibm.com>
|
|
|
|
*
|
2006-10-04 23:26:12 +08:00
|
|
|
* 2006-03-31 NUMA domains added.
|
2005-11-16 04:53:52 +08:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
2005-12-06 11:52:24 +08:00
|
|
|
#undef DEBUG
|
|
|
|
|
2005-11-16 04:53:52 +08:00
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/completion.h>
|
|
|
|
#include <linux/vmalloc.h>
|
|
|
|
#include <linux/smp.h>
|
|
|
|
#include <linux/smp_lock.h>
|
|
|
|
#include <linux/stddef.h>
|
|
|
|
#include <linux/unistd.h>
|
2006-10-04 23:26:12 +08:00
|
|
|
#include <linux/numa.h>
|
|
|
|
#include <linux/mutex.h>
|
2006-10-04 23:26:21 +08:00
|
|
|
#include <linux/notifier.h>
|
2005-11-16 04:53:52 +08:00
|
|
|
|
|
|
|
#include <asm/io.h>
|
|
|
|
#include <asm/mmu_context.h>
|
|
|
|
#include <asm/spu.h>
|
|
|
|
#include <asm/spu_csa.h>
|
2006-06-20 02:33:30 +08:00
|
|
|
#include <asm/spu_priv1.h>
|
2005-11-16 04:53:52 +08:00
|
|
|
#include "spufs.h"
|
|
|
|
|
2005-12-10 02:04:16 +08:00
|
|
|
#define SPU_MIN_TIMESLICE (100 * HZ / 1000)
|
2005-12-06 11:52:26 +08:00
|
|
|
|
2005-11-16 04:53:52 +08:00
|
|
|
#define SPU_BITMAP_SIZE (((MAX_PRIO+BITS_PER_LONG)/BITS_PER_LONG)+1)
|
|
|
|
struct spu_prio_array {
|
|
|
|
unsigned long bitmap[SPU_BITMAP_SIZE];
|
2007-02-14 04:54:23 +08:00
|
|
|
struct list_head runq[MAX_PRIO];
|
|
|
|
spinlock_t runq_lock;
|
2006-10-04 23:26:12 +08:00
|
|
|
struct list_head active_list[MAX_NUMNODES];
|
|
|
|
struct mutex active_mutex[MAX_NUMNODES];
|
2005-11-16 04:53:52 +08:00
|
|
|
};
|
|
|
|
|
2006-10-04 23:26:12 +08:00
|
|
|
static struct spu_prio_array *spu_prio;
|
2005-11-16 04:53:52 +08:00
|
|
|
|
2006-10-04 23:26:12 +08:00
|
|
|
static inline int node_allowed(int node)
|
2005-11-16 04:53:52 +08:00
|
|
|
{
|
2006-10-04 23:26:12 +08:00
|
|
|
cpumask_t mask;
|
2005-11-16 04:53:52 +08:00
|
|
|
|
2006-10-04 23:26:12 +08:00
|
|
|
if (!nr_cpus_node(node))
|
|
|
|
return 0;
|
|
|
|
mask = node_to_cpumask(node);
|
|
|
|
if (!cpus_intersects(mask, current->cpus_allowed))
|
|
|
|
return 0;
|
|
|
|
return 1;
|
2005-11-16 04:53:52 +08:00
|
|
|
}
|
|
|
|
|
2007-02-14 04:36:49 +08:00
|
|
|
/**
|
|
|
|
* spu_add_to_active_list - add spu to active list
|
|
|
|
* @spu: spu to add to the active list
|
|
|
|
*/
|
|
|
|
static void spu_add_to_active_list(struct spu *spu)
|
|
|
|
{
|
|
|
|
mutex_lock(&spu_prio->active_mutex[spu->node]);
|
|
|
|
list_add_tail(&spu->list, &spu_prio->active_list[spu->node]);
|
|
|
|
mutex_unlock(&spu_prio->active_mutex[spu->node]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* spu_remove_from_active_list - remove spu from active list
|
|
|
|
* @spu: spu to remove from the active list
|
|
|
|
*/
|
2007-02-14 04:54:25 +08:00
|
|
|
static void spu_remove_from_active_list(struct spu *spu)
|
2007-02-14 04:36:49 +08:00
|
|
|
{
|
|
|
|
int node = spu->node;
|
|
|
|
|
|
|
|
mutex_lock(&spu_prio->active_mutex[node]);
|
2007-02-14 04:54:25 +08:00
|
|
|
list_del_init(&spu->list);
|
2007-02-14 04:36:49 +08:00
|
|
|
mutex_unlock(&spu_prio->active_mutex[node]);
|
|
|
|
}
|
|
|
|
|
2005-11-16 04:53:52 +08:00
|
|
|
static inline void mm_needs_global_tlbie(struct mm_struct *mm)
|
|
|
|
{
|
2006-10-04 23:26:12 +08:00
|
|
|
int nr = (NR_CPUS > 1) ? NR_CPUS : NR_CPUS + 1;
|
|
|
|
|
2005-11-16 04:53:52 +08:00
|
|
|
/* Global TLBIE broadcast required with SPEs. */
|
2006-10-04 23:26:12 +08:00
|
|
|
__cpus_setall(&mm->cpu_vm_mask, nr);
|
2005-11-16 04:53:52 +08:00
|
|
|
}
|
|
|
|
|
2006-10-04 23:26:21 +08:00
|
|
|
static BLOCKING_NOTIFIER_HEAD(spu_switch_notifier);
|
|
|
|
|
|
|
|
static void spu_switch_notify(struct spu *spu, struct spu_context *ctx)
|
|
|
|
{
|
|
|
|
blocking_notifier_call_chain(&spu_switch_notifier,
|
|
|
|
ctx ? ctx->object_id : 0, spu);
|
|
|
|
}
|
|
|
|
|
|
|
|
int spu_switch_event_register(struct notifier_block * n)
|
|
|
|
{
|
|
|
|
return blocking_notifier_chain_register(&spu_switch_notifier, n);
|
|
|
|
}
|
|
|
|
|
|
|
|
int spu_switch_event_unregister(struct notifier_block * n)
|
|
|
|
{
|
|
|
|
return blocking_notifier_chain_unregister(&spu_switch_notifier, n);
|
|
|
|
}
|
|
|
|
|
2007-02-14 04:36:49 +08:00
|
|
|
/**
|
|
|
|
* spu_bind_context - bind spu context to physical spu
|
|
|
|
* @spu: physical spu to bind to
|
|
|
|
* @ctx: context to bind
|
|
|
|
*/
|
|
|
|
static void spu_bind_context(struct spu *spu, struct spu_context *ctx)
|
2005-11-16 04:53:52 +08:00
|
|
|
{
|
2006-10-04 23:26:12 +08:00
|
|
|
pr_debug("%s: pid=%d SPU=%d NODE=%d\n", __FUNCTION__, current->pid,
|
|
|
|
spu->number, spu->node);
|
2005-11-16 04:53:52 +08:00
|
|
|
spu->ctx = ctx;
|
|
|
|
spu->flags = 0;
|
|
|
|
ctx->spu = spu;
|
|
|
|
ctx->ops = &spu_hw_ops;
|
|
|
|
spu->pid = current->pid;
|
|
|
|
spu->mm = ctx->owner;
|
|
|
|
mm_needs_global_tlbie(spu->mm);
|
|
|
|
spu->ibox_callback = spufs_ibox_callback;
|
|
|
|
spu->wbox_callback = spufs_wbox_callback;
|
2005-12-06 11:52:25 +08:00
|
|
|
spu->stop_callback = spufs_stop_callback;
|
2006-03-23 07:00:11 +08:00
|
|
|
spu->mfc_callback = spufs_mfc_callback;
|
2006-10-04 23:26:14 +08:00
|
|
|
spu->dma_callback = spufs_dma_callback;
|
2005-11-16 04:53:52 +08:00
|
|
|
mb();
|
2005-12-06 11:52:25 +08:00
|
|
|
spu_unmap_mappings(ctx);
|
2005-11-16 04:53:52 +08:00
|
|
|
spu_restore(&ctx->csa, spu);
|
2005-12-06 11:52:26 +08:00
|
|
|
spu->timestamp = jiffies;
|
2006-10-04 23:26:12 +08:00
|
|
|
spu_cpu_affinity_set(spu, raw_smp_processor_id());
|
2006-10-04 23:26:21 +08:00
|
|
|
spu_switch_notify(spu, ctx);
|
2007-02-14 04:36:49 +08:00
|
|
|
spu_add_to_active_list(spu);
|
2007-02-14 04:36:48 +08:00
|
|
|
ctx->state = SPU_STATE_RUNNABLE;
|
2005-11-16 04:53:52 +08:00
|
|
|
}
|
|
|
|
|
2007-02-14 04:36:49 +08:00
|
|
|
/**
|
|
|
|
* spu_unbind_context - unbind spu context from physical spu
|
|
|
|
* @spu: physical spu to unbind from
|
|
|
|
* @ctx: context to unbind
|
|
|
|
*/
|
2007-02-14 04:54:25 +08:00
|
|
|
static void spu_unbind_context(struct spu *spu, struct spu_context *ctx)
|
2005-11-16 04:53:52 +08:00
|
|
|
{
|
2006-10-04 23:26:12 +08:00
|
|
|
pr_debug("%s: unbind pid=%d SPU=%d NODE=%d\n", __FUNCTION__,
|
|
|
|
spu->pid, spu->number, spu->node);
|
2007-02-14 04:36:49 +08:00
|
|
|
|
2007-02-14 04:54:25 +08:00
|
|
|
spu_remove_from_active_list(spu);
|
2006-10-04 23:26:21 +08:00
|
|
|
spu_switch_notify(spu, NULL);
|
2005-12-06 11:52:25 +08:00
|
|
|
spu_unmap_mappings(ctx);
|
2005-11-16 04:53:52 +08:00
|
|
|
spu_save(&ctx->csa, spu);
|
2005-12-06 11:52:26 +08:00
|
|
|
spu->timestamp = jiffies;
|
2005-11-16 04:53:52 +08:00
|
|
|
ctx->state = SPU_STATE_SAVED;
|
|
|
|
spu->ibox_callback = NULL;
|
|
|
|
spu->wbox_callback = NULL;
|
2005-12-06 11:52:25 +08:00
|
|
|
spu->stop_callback = NULL;
|
2006-03-23 07:00:11 +08:00
|
|
|
spu->mfc_callback = NULL;
|
2006-10-04 23:26:14 +08:00
|
|
|
spu->dma_callback = NULL;
|
2005-11-16 04:53:52 +08:00
|
|
|
spu->mm = NULL;
|
|
|
|
spu->pid = 0;
|
|
|
|
ctx->ops = &spu_backing_ops;
|
|
|
|
ctx->spu = NULL;
|
2005-12-06 11:52:26 +08:00
|
|
|
spu->flags = 0;
|
2005-11-16 04:53:52 +08:00
|
|
|
spu->ctx = NULL;
|
|
|
|
}
|
|
|
|
|
2007-02-14 04:54:23 +08:00
|
|
|
/**
|
|
|
|
* spu_add_to_rq - add a context to the runqueue
|
|
|
|
* @ctx: context to add
|
|
|
|
*/
|
|
|
|
static void spu_add_to_rq(struct spu_context *ctx)
|
2005-11-16 04:53:52 +08:00
|
|
|
{
|
2007-02-14 04:54:23 +08:00
|
|
|
spin_lock(&spu_prio->runq_lock);
|
|
|
|
list_add_tail(&ctx->rq, &spu_prio->runq[ctx->prio]);
|
|
|
|
set_bit(ctx->prio, spu_prio->bitmap);
|
|
|
|
spin_unlock(&spu_prio->runq_lock);
|
2005-12-06 11:52:26 +08:00
|
|
|
}
|
2005-12-06 11:52:25 +08:00
|
|
|
|
2007-02-14 04:54:23 +08:00
|
|
|
/**
|
|
|
|
* spu_del_from_rq - remove a context from the runqueue
|
|
|
|
* @ctx: context to remove
|
|
|
|
*/
|
|
|
|
static void spu_del_from_rq(struct spu_context *ctx)
|
2005-12-06 11:52:26 +08:00
|
|
|
{
|
2007-02-14 04:54:23 +08:00
|
|
|
spin_lock(&spu_prio->runq_lock);
|
|
|
|
list_del_init(&ctx->rq);
|
|
|
|
if (list_empty(&spu_prio->runq[ctx->prio]))
|
|
|
|
clear_bit(ctx->prio, spu_prio->bitmap);
|
|
|
|
spin_unlock(&spu_prio->runq_lock);
|
|
|
|
}
|
2006-10-04 23:26:12 +08:00
|
|
|
|
2007-02-14 04:54:23 +08:00
|
|
|
/**
|
|
|
|
* spu_grab_context - remove one context from the runqueue
|
|
|
|
* @prio: priority of the context to be removed
|
|
|
|
*
|
|
|
|
* This function removes one context from the runqueue for priority @prio.
|
|
|
|
* If there is more than one context with the given priority the first
|
|
|
|
* task on the runqueue will be taken.
|
|
|
|
*
|
|
|
|
* Returns the spu_context it just removed.
|
|
|
|
*
|
|
|
|
* Must be called with spu_prio->runq_lock held.
|
|
|
|
*/
|
|
|
|
static struct spu_context *spu_grab_context(int prio)
|
|
|
|
{
|
|
|
|
struct list_head *rq = &spu_prio->runq[prio];
|
2006-10-04 23:26:12 +08:00
|
|
|
|
2007-02-14 04:54:23 +08:00
|
|
|
if (list_empty(rq))
|
|
|
|
return NULL;
|
|
|
|
return list_entry(rq->next, struct spu_context, rq);
|
2005-11-16 04:53:52 +08:00
|
|
|
}
|
|
|
|
|
2007-02-14 04:54:23 +08:00
|
|
|
static void spu_prio_wait(struct spu_context *ctx)
|
2005-11-16 04:53:52 +08:00
|
|
|
{
|
2006-10-04 23:26:12 +08:00
|
|
|
DEFINE_WAIT(wait);
|
2005-11-16 04:53:52 +08:00
|
|
|
|
2007-02-14 04:54:24 +08:00
|
|
|
set_bit(SPU_SCHED_WAKE, &ctx->sched_flags);
|
2007-02-14 04:54:23 +08:00
|
|
|
prepare_to_wait_exclusive(&ctx->stop_wq, &wait, TASK_INTERRUPTIBLE);
|
2006-10-04 23:26:12 +08:00
|
|
|
if (!signal_pending(current)) {
|
2007-02-14 04:36:50 +08:00
|
|
|
mutex_unlock(&ctx->state_mutex);
|
2006-10-04 23:26:12 +08:00
|
|
|
schedule();
|
2007-02-14 04:36:50 +08:00
|
|
|
mutex_lock(&ctx->state_mutex);
|
2005-11-16 04:53:52 +08:00
|
|
|
}
|
2007-02-14 04:54:23 +08:00
|
|
|
__set_current_state(TASK_RUNNING);
|
|
|
|
remove_wait_queue(&ctx->stop_wq, &wait);
|
2007-02-14 04:54:24 +08:00
|
|
|
clear_bit(SPU_SCHED_WAKE, &ctx->sched_flags);
|
2005-11-16 04:53:52 +08:00
|
|
|
}
|
|
|
|
|
2007-02-14 04:54:23 +08:00
|
|
|
/**
|
|
|
|
* spu_reschedule - try to find a runnable context for a spu
|
|
|
|
* @spu: spu available
|
|
|
|
*
|
|
|
|
* This function is called whenever a spu becomes idle. It looks for the
|
|
|
|
* most suitable runnable spu context and schedules it for execution.
|
|
|
|
*/
|
|
|
|
static void spu_reschedule(struct spu *spu)
|
2005-11-16 04:53:52 +08:00
|
|
|
{
|
2007-02-14 04:54:23 +08:00
|
|
|
int best;
|
|
|
|
|
|
|
|
spu_free(spu);
|
|
|
|
|
|
|
|
spin_lock(&spu_prio->runq_lock);
|
|
|
|
best = sched_find_first_bit(spu_prio->bitmap);
|
2006-10-04 23:26:12 +08:00
|
|
|
if (best < MAX_PRIO) {
|
2007-02-14 04:54:23 +08:00
|
|
|
struct spu_context *ctx = spu_grab_context(best);
|
2007-02-14 04:54:24 +08:00
|
|
|
if (ctx && test_bit(SPU_SCHED_WAKE, &ctx->sched_flags))
|
2007-02-14 04:54:23 +08:00
|
|
|
wake_up(&ctx->stop_wq);
|
2006-10-04 23:26:12 +08:00
|
|
|
}
|
2007-02-14 04:54:23 +08:00
|
|
|
spin_unlock(&spu_prio->runq_lock);
|
2005-11-16 04:53:52 +08:00
|
|
|
}
|
|
|
|
|
2007-02-14 04:54:23 +08:00
|
|
|
static struct spu *spu_get_idle(struct spu_context *ctx)
|
2006-10-04 23:26:12 +08:00
|
|
|
{
|
|
|
|
struct spu *spu = NULL;
|
|
|
|
int node = cpu_to_node(raw_smp_processor_id());
|
|
|
|
int n;
|
|
|
|
|
|
|
|
for (n = 0; n < MAX_NUMNODES; n++, node++) {
|
|
|
|
node = (node < MAX_NUMNODES) ? node : 0;
|
|
|
|
if (!node_allowed(node))
|
|
|
|
continue;
|
|
|
|
spu = spu_alloc_node(node);
|
|
|
|
if (spu)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return spu;
|
|
|
|
}
|
2005-11-16 04:53:52 +08:00
|
|
|
|
2006-10-04 23:26:12 +08:00
|
|
|
/* The three externally callable interfaces
|
|
|
|
* for the scheduler begin here.
|
2005-11-16 04:53:52 +08:00
|
|
|
*
|
2006-10-04 23:26:12 +08:00
|
|
|
* spu_activate - bind a context to SPU, waiting as needed.
|
|
|
|
* spu_deactivate - unbind a context from its SPU.
|
|
|
|
* spu_yield - yield an SPU if others are waiting.
|
2005-11-16 04:53:52 +08:00
|
|
|
*/
|
|
|
|
|
2007-02-14 04:54:23 +08:00
|
|
|
/**
|
|
|
|
* spu_activate - find a free spu for a context and execute it
|
|
|
|
* @ctx: spu context to schedule
|
|
|
|
* @flags: flags (currently ignored)
|
|
|
|
*
|
|
|
|
* Tries to find a free spu to run @ctx. If no free spu is availble
|
|
|
|
* add the context to the runqueue so it gets woken up once an spu
|
|
|
|
* is available.
|
|
|
|
*/
|
2007-02-14 04:54:24 +08:00
|
|
|
int spu_activate(struct spu_context *ctx, unsigned long flags)
|
2005-11-16 04:53:52 +08:00
|
|
|
{
|
|
|
|
|
2007-02-14 04:54:23 +08:00
|
|
|
if (ctx->spu)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
do {
|
|
|
|
struct spu *spu;
|
|
|
|
|
|
|
|
spu = spu_get_idle(ctx);
|
|
|
|
if (spu) {
|
2007-02-14 04:36:49 +08:00
|
|
|
spu_bind_context(spu, ctx);
|
2007-02-14 04:54:23 +08:00
|
|
|
return 0;
|
2006-10-04 23:26:12 +08:00
|
|
|
}
|
2007-02-14 04:54:23 +08:00
|
|
|
|
|
|
|
spu_add_to_rq(ctx);
|
2007-02-14 04:54:24 +08:00
|
|
|
if (!(flags & SPU_ACTIVATE_NOWAKE))
|
|
|
|
spu_prio_wait(ctx);
|
2007-02-14 04:54:23 +08:00
|
|
|
spu_del_from_rq(ctx);
|
|
|
|
} while (!signal_pending(current));
|
|
|
|
|
|
|
|
return -ERESTARTSYS;
|
2005-11-16 04:53:52 +08:00
|
|
|
}
|
|
|
|
|
2007-02-14 04:54:25 +08:00
|
|
|
/**
|
|
|
|
* spu_deactivate - unbind a context from it's physical spu
|
|
|
|
* @ctx: spu context to unbind
|
|
|
|
*
|
|
|
|
* Unbind @ctx from the physical spu it is running on and schedule
|
|
|
|
* the highest priority context to run on the freed physical spu.
|
|
|
|
*/
|
2005-11-16 04:53:52 +08:00
|
|
|
void spu_deactivate(struct spu_context *ctx)
|
|
|
|
{
|
2007-02-14 04:54:25 +08:00
|
|
|
struct spu *spu = ctx->spu;
|
2005-11-16 04:53:52 +08:00
|
|
|
|
2007-02-14 04:54:25 +08:00
|
|
|
if (spu) {
|
|
|
|
spu_unbind_context(spu, ctx);
|
2007-02-14 04:54:23 +08:00
|
|
|
spu_reschedule(spu);
|
2007-02-14 04:54:25 +08:00
|
|
|
}
|
2005-11-16 04:53:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void spu_yield(struct spu_context *ctx)
|
|
|
|
{
|
|
|
|
struct spu *spu;
|
2005-12-06 11:52:25 +08:00
|
|
|
int need_yield = 0;
|
2005-11-16 04:53:52 +08:00
|
|
|
|
2007-02-14 04:36:50 +08:00
|
|
|
if (mutex_trylock(&ctx->state_mutex)) {
|
2006-10-04 23:26:12 +08:00
|
|
|
if ((spu = ctx->spu) != NULL) {
|
|
|
|
int best = sched_find_first_bit(spu_prio->bitmap);
|
|
|
|
if (best < MAX_PRIO) {
|
|
|
|
pr_debug("%s: yielding SPU %d NODE %d\n",
|
|
|
|
__FUNCTION__, spu->number, spu->node);
|
|
|
|
spu_deactivate(ctx);
|
|
|
|
need_yield = 1;
|
|
|
|
}
|
|
|
|
}
|
2007-02-14 04:36:50 +08:00
|
|
|
mutex_unlock(&ctx->state_mutex);
|
2005-11-16 04:53:52 +08:00
|
|
|
}
|
2005-12-06 11:52:25 +08:00
|
|
|
if (unlikely(need_yield))
|
|
|
|
yield();
|
2005-11-16 04:53:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int __init spu_sched_init(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2006-10-04 23:26:12 +08:00
|
|
|
spu_prio = kzalloc(sizeof(struct spu_prio_array), GFP_KERNEL);
|
|
|
|
if (!spu_prio) {
|
|
|
|
printk(KERN_WARNING "%s: Unable to allocate priority queue.\n",
|
2005-11-16 04:53:52 +08:00
|
|
|
__FUNCTION__);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
for (i = 0; i < MAX_PRIO; i++) {
|
2007-02-14 04:54:23 +08:00
|
|
|
INIT_LIST_HEAD(&spu_prio->runq[i]);
|
2006-10-04 23:26:12 +08:00
|
|
|
__clear_bit(i, spu_prio->bitmap);
|
2005-11-16 04:53:52 +08:00
|
|
|
}
|
2006-10-04 23:26:12 +08:00
|
|
|
__set_bit(MAX_PRIO, spu_prio->bitmap);
|
|
|
|
for (i = 0; i < MAX_NUMNODES; i++) {
|
|
|
|
mutex_init(&spu_prio->active_mutex[i]);
|
|
|
|
INIT_LIST_HEAD(&spu_prio->active_list[i]);
|
2005-11-16 04:53:52 +08:00
|
|
|
}
|
2007-02-14 04:54:23 +08:00
|
|
|
spin_lock_init(&spu_prio->runq_lock);
|
2005-11-16 04:53:52 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void __exit spu_sched_exit(void)
|
|
|
|
{
|
2006-10-04 23:26:12 +08:00
|
|
|
struct spu *spu, *tmp;
|
|
|
|
int node;
|
|
|
|
|
|
|
|
for (node = 0; node < MAX_NUMNODES; node++) {
|
|
|
|
mutex_lock(&spu_prio->active_mutex[node]);
|
|
|
|
list_for_each_entry_safe(spu, tmp, &spu_prio->active_list[node],
|
|
|
|
list) {
|
|
|
|
list_del_init(&spu->list);
|
|
|
|
spu_free(spu);
|
|
|
|
}
|
|
|
|
mutex_unlock(&spu_prio->active_mutex[node]);
|
2005-11-16 04:53:52 +08:00
|
|
|
}
|
2006-10-04 23:26:12 +08:00
|
|
|
kfree(spu_prio);
|
2005-11-16 04:53:52 +08:00
|
|
|
}
|