diff options
author | Cornelia Huck <cornelia.huck@de.ibm.com> | 2009-01-19 13:45:28 +0100 |
---|---|---|
committer | Arjan van de Ven <arjan@linux.intel.com> | 2009-02-08 09:56:10 -0800 |
commit | 7a89bbc74937cd74a6bcf109cfc7c032109639be (patch) | |
tree | 2b542e7f48c53cf1ef462524ecdf93b4d8a03f58 /kernel/async.c | |
parent | e83102cab0fd95d4508361b061146c978b3abd60 (diff) | |
download | kernel_goldelico_gta04-7a89bbc74937cd74a6bcf109cfc7c032109639be.zip kernel_goldelico_gta04-7a89bbc74937cd74a6bcf109cfc7c032109639be.tar.gz kernel_goldelico_gta04-7a89bbc74937cd74a6bcf109cfc7c032109639be.tar.bz2 |
async: Fix running list handling.
async_schedule() should pass in async_running as the running
list, and run_one_entry() should put the entry to be run on
the provided running list instead of always on the generic one.
Reported-by: Jonathan Corbet <corbet@lwn.net>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Diffstat (limited to 'kernel/async.c')
-rw-r--r-- | kernel/async.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/async.c b/kernel/async.c index 67a2be7..0c90d50 100644 --- a/kernel/async.c +++ b/kernel/async.c @@ -133,7 +133,7 @@ static void run_one_entry(void) /* 2) move it to the running queue */ list_del(&entry->list); - list_add_tail(&entry->list, &async_running); + list_add_tail(&entry->list, entry->running); spin_unlock_irqrestore(&async_lock, flags); /* 3) run it (and print duration)*/ @@ -210,7 +210,7 @@ static async_cookie_t __async_schedule(async_func_ptr *ptr, void *data, struct l async_cookie_t async_schedule(async_func_ptr *ptr, void *data) { - return __async_schedule(ptr, data, &async_pending); + return __async_schedule(ptr, data, &async_running); } EXPORT_SYMBOL_GPL(async_schedule); |