mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-04 01:24:12 +08:00
net: marvell: prestera: Fix return value check in prestera_kern_fib_cache_find()
rhashtable_lookup_fast() returns NULL pointer not ERR_PTR(), so it can return fib_node directly in prestera_kern_fib_cache_find(). Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Yang Yingliang <yangyingliang@huawei.com> Link: https://lore.kernel.org/r/20220223084954.1771075-2-yangyingliang@huawei.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
d434ee9dee
commit
37f40f81e5
@ -68,7 +68,7 @@ prestera_kern_fib_cache_find(struct prestera_switch *sw,
|
||||
fib_cache =
|
||||
rhashtable_lookup_fast(&sw->router->kern_fib_cache_ht, key,
|
||||
__prestera_kern_fib_cache_ht_params);
|
||||
return IS_ERR(fib_cache) ? NULL : fib_cache;
|
||||
return fib_cache;
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user