vxge: remove unnecessary cast in kfree()
[ Upstream commit b6bf4776d9e2ed4b2552d1c252fff8de3786309a ] Remove unnecessary cast in the argument to kfree. Signed-off-by: Xu Wang <vulab@iscas.ac.cn> Link: https://lore.kernel.org/r/20201023085533.4792-1-vulab@iscas.ac.cn Signed-off-by: Jakub Kicinski <kuba@kernel.org> Stable-dep-of: e3f269ed0acc ("x86/pm: Work around false positive kmemleak report in msr_build_context()") Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
1cded74e96
commit
65c289f113
1 changed files with 1 additions and 1 deletions
|
@ -1121,7 +1121,7 @@ static void __vxge_hw_blockpool_destroy(struct __vxge_hw_blockpool *blockpool)
|
|||
|
||||
list_for_each_safe(p, n, &blockpool->free_entry_list) {
|
||||
list_del(&((struct __vxge_hw_blockpool_entry *)p)->item);
|
||||
kfree((void *)p);
|
||||
kfree(p);
|
||||
}
|
||||
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue