mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
block: drop needless assignment in set_task_ioprio()
Commit5fc11eebb4
("block: open code create_task_io_context in set_task_ioprio") introduces a needless assignment 'ioc = task->io_context', as the local variable ioc is not further used before returning. Even after the further fix, commita957b61254
("block: fix error in handling dead task for ioprio setting"), the assignment still remains needless. Drop this needless assignment in set_task_ioprio(). This code smell was identified with 'make clang-analyzer'. Fixes:5fc11eebb4
("block: open code create_task_io_context in set_task_ioprio") Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Link: https://lore.kernel.org/r/20211223125300.20691-1-lukas.bulwahn@gmail.com Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
a16c724636
commit
669a064625
@ -284,12 +284,10 @@ int set_task_ioprio(struct task_struct *task, int ioprio)
|
||||
kmem_cache_free(iocontext_cachep, ioc);
|
||||
goto out;
|
||||
}
|
||||
if (task->io_context) {
|
||||
if (task->io_context)
|
||||
kmem_cache_free(iocontext_cachep, ioc);
|
||||
ioc = task->io_context;
|
||||
} else {
|
||||
else
|
||||
task->io_context = ioc;
|
||||
}
|
||||
}
|
||||
task->io_context->ioprio = ioprio;
|
||||
out:
|
||||
|
Loading…
Reference in New Issue
Block a user