mirror of
https://github.com/adulau/aha.git
synced 2025-01-02 14:13:18 +00:00
RDMA/nes: Fix slab corruption
Referencing cm_node after it is freed via rem_ref_cm_node() causes a slab corruption. There is no need to set cm_node->cm_id to NULL in mini_cm_close(). Signed-off-by: Chien Tung <ctung@neteffect.com> Signed-off-by: Roland Dreier <rolandd@cisco.com>
This commit is contained in:
parent
e2f5e7333a
commit
fbcffcc6a0
1 changed files with 0 additions and 1 deletions
|
@ -2029,7 +2029,6 @@ static int mini_cm_close(struct nes_cm_core *cm_core, struct nes_cm_node *cm_nod
|
||||||
ret = rem_ref_cm_node(cm_core, cm_node);
|
ret = rem_ref_cm_node(cm_core, cm_node);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
cm_node->cm_id = NULL;
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue