powerpc/pseries: Fix node leak in update_lmb_associativity_index()

[ Upstream commit 47918bc68b ]

In update_lmb_associativity_index() we lookup dr_node using
of_find_node_by_path() which takes a reference for us. In the
non-error case we forget to drop the reference. Note that
find_aa_index() does modify properties of the node, but doesn't need
an extra reference held once it's returned.

Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
Michael Ellerman
2018-11-27 19:16:44 +11:00
committed by Chris
parent c22944cf9a
commit 168c7e6e10

View File

@@ -294,6 +294,7 @@ static u32 lookup_lmb_associativity_index(struct of_drconf_cell *lmb)
aa_index = find_aa_index(dr_node, ala_prop, lmb_assoc);
of_node_put(dr_node);
dlpar_free_cc_nodes(lmb_node);
return aa_index;
}