MINOR: tasks: Don't consider we can wake task with tasklet_wakeup().

In tasklet_wakeup(), don't bother checking if the tasklet is really a task,
calling tasklet_wakeup() with a task is invalid.
This commit is contained in:
Olivier Houchard 2019-04-17 19:11:58 +02:00 committed by Olivier Houchard
parent de82aeaa26
commit 5c964f7b42
1 changed files with 0 additions and 4 deletions

View File

@ -238,10 +238,6 @@ static inline struct task *task_unlink_rq(struct task *t)
static inline void tasklet_wakeup(struct tasklet *tl) static inline void tasklet_wakeup(struct tasklet *tl)
{ {
if (!TASK_IS_TASKLET(tl)) {
task_insert_into_tasklet_list((struct task *)tl);
return;
}
if (!LIST_ISEMPTY(&tl->list)) if (!LIST_ISEMPTY(&tl->list))
return; return;
LIST_ADDQ(&task_per_thread[tid].task_list, &tl->list); LIST_ADDQ(&task_per_thread[tid].task_list, &tl->list);