mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-30 08:04:13 +08:00
net/mlx5: Fix cleaning unmanaged flow tables
Unmanaged flow tables doesn't have a parent and tree_put_node()
assume there is always a parent if cleaning is needed. fix that.
Fixes: 5281a0c909
("net/mlx5: fs_core: Introduce unmanaged flow tables")
Signed-off-by: Roi Dayan <roid@mellanox.com>
Reviewed-by: Mark Bloch <markb@mellanox.com>
Reviewed-by: Paul Blakey <paulb@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
This commit is contained in:
parent
df14ad1ecc
commit
aee37f3d94
@ -344,14 +344,13 @@ static void tree_put_node(struct fs_node *node, bool locked)
|
||||
if (node->del_hw_func)
|
||||
node->del_hw_func(node);
|
||||
if (parent_node) {
|
||||
/* Only root namespace doesn't have parent and we just
|
||||
* need to free its node.
|
||||
*/
|
||||
down_write_ref_node(parent_node, locked);
|
||||
list_del_init(&node->list);
|
||||
if (node->del_sw_func)
|
||||
node->del_sw_func(node);
|
||||
up_write_ref_node(parent_node, locked);
|
||||
} else if (node->del_sw_func) {
|
||||
node->del_sw_func(node);
|
||||
} else {
|
||||
kfree(node);
|
||||
}
|
||||
@ -468,8 +467,10 @@ static void del_sw_flow_table(struct fs_node *node)
|
||||
fs_get_obj(ft, node);
|
||||
|
||||
rhltable_destroy(&ft->fgs_hash);
|
||||
fs_get_obj(prio, ft->node.parent);
|
||||
prio->num_ft--;
|
||||
if (ft->node.parent) {
|
||||
fs_get_obj(prio, ft->node.parent);
|
||||
prio->num_ft--;
|
||||
}
|
||||
kfree(ft);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user