Skip to content

Commit

Permalink
async: Fix running list handling.
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
Signed-off-by: Arjan van de Ven <[email protected]>
  • Loading branch information
cohuck authored and fenrus75 committed Feb 8, 2009
1 parent e83102c commit 7a89bbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kernel/async.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)*/
Expand Down Expand Up @@ -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);

Expand Down

0 comments on commit 7a89bbc

Please sign in to comment.