diff options
Diffstat (limited to 'kernel')
-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 67a2be71f517..0c90d500ab68 100644 --- a/kernel/async.c +++ b/kernel/async.c | |||
@@ -133,7 +133,7 @@ static void run_one_entry(void) | |||
133 | 133 | ||
134 | /* 2) move it to the running queue */ | 134 | /* 2) move it to the running queue */ |
135 | list_del(&entry->list); | 135 | list_del(&entry->list); |
136 | list_add_tail(&entry->list, &async_running); | 136 | list_add_tail(&entry->list, entry->running); |
137 | spin_unlock_irqrestore(&async_lock, flags); | 137 | spin_unlock_irqrestore(&async_lock, flags); |
138 | 138 | ||
139 | /* 3) run it (and print duration)*/ | 139 | /* 3) run it (and print duration)*/ |
@@ -210,7 +210,7 @@ static async_cookie_t __async_schedule(async_func_ptr *ptr, void *data, struct l | |||
210 | 210 | ||
211 | async_cookie_t async_schedule(async_func_ptr *ptr, void *data) | 211 | async_cookie_t async_schedule(async_func_ptr *ptr, void *data) |
212 | { | 212 | { |
213 | return __async_schedule(ptr, data, &async_pending); | 213 | return __async_schedule(ptr, data, &async_running); |
214 | } | 214 | } |
215 | EXPORT_SYMBOL_GPL(async_schedule); | 215 | EXPORT_SYMBOL_GPL(async_schedule); |
216 | 216 | ||