]> git.baikalelectronics.ru Git - kernel.git/commit
of: fix "/cpus" reference leak in of_numa_parse_cpu_nodes()
authorTyrel Datwyler <tyreld@linux.vnet.ibm.com>
Tue, 18 Apr 2017 00:29:17 +0000 (20:29 -0400)
committerRob Herring <robh@kernel.org>
Tue, 18 Apr 2017 16:04:12 +0000 (11:04 -0500)
commit16df06e813ca8ca885296ee89d39fdd6196b792c
treeebfce07a5c838a42fb11af8fb24d706e4656b8b0
parentbf223b848d768a349405c7d7c2a77226f16d0b9b
of: fix "/cpus" reference leak in of_numa_parse_cpu_nodes()

The call to of_find_node_by_path("/cpus") returns the cpus device_node
with its reference count incremented. There is no matching of_node_put()
call in of_numa_parse_cpu_nodes() which results in a leaked reference
to the "/cpus" node.

This patch adds an of_node_put() to release the reference.

fixes: b0f2e211b493 ("of, numa: Add NUMA of binding implementation.")
Signed-off-by: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
Acked-by: David Daney <david.daney@cavium.com>
Cc: stable@vger.kernel.org # v4.7+
Signed-off-by: Rob Herring <robh@kernel.org>
drivers/of/of_numa.c