io-wq: fix double put of 'wq' in error path

We are already freeing the wq struct in both spots, so don't put it and
get it freed twice.

Reported-by: syzbot+7bf785eedca35ca05501@syzkaller.appspotmail.com
Fixes: 4fb6ac3262 ("io-wq: improve manager/worker handling over exec")
Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
Jens Axboe 2021-02-26 10:20:34 -07:00
Родитель d364d9e5db
Коммит 470ec4ed8c
1 изменённых файлов: 0 добавлений и 2 удалений

Просмотреть файл

@ -826,7 +826,6 @@ static int io_wq_fork_manager(struct io_wq *wq)
return 0; return 0;
} }
io_wq_put(wq);
return ret; return ret;
} }
@ -1078,7 +1077,6 @@ struct io_wq *io_wq_create(unsigned bounded, struct io_wq_data *data)
if (!ret) if (!ret)
return wq; return wq;
io_wq_put(wq);
io_wq_put_hash(data->hash); io_wq_put_hash(data->hash);
err: err:
cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node); cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node);