From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 3B47B7F465; Mon, 8 Apr 2024 13:23:11 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1712582591; cv=none; b=JcM8RTacPUulxl2qG0Xctyh9fJ1weLF8cqmG2+jYd7otkQulRM9VJIOe/HIsaRi768btXz6ytv9ybYmvC1GtDkKx36l67HSbXpS6ecjEI7CDTRrOp8YTG4PnTs9sJ+0fkT/UHxOkkWjNcowQNCm4MUvwFfJZisVCo/NafoDYDb0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1712582591; c=relaxed/simple; bh=lBhHqPbPI77Z4MoQfo4bOS3nV9EnWGJPKnq/E3RDZJ4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=RbhQym75+qYmjwlc+zLcj04w/oxEgfjAi/BrK+IRmwEJRbIDat6B5atsC9EXlHkrZ64H7YIjJz4h+cGglpy3+sZ6DokmMGuKDTNh6AJd730MJu8fTPEXJztlbZRf6nMFG1qShBHdT+/kEydGnZm53t0leRQsddxjV5Tp4Yz1wTc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=DFVERz/A; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="DFVERz/A" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B1A5BC43394; Mon, 8 Apr 2024 13:23:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1712582591; bh=lBhHqPbPI77Z4MoQfo4bOS3nV9EnWGJPKnq/E3RDZJ4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=DFVERz/A1EnVZpwG3BgxTilg2IN+mtQ/WDfHO32QPWvVKwwiWGrl2ZjxsnGZcWphi NVG2q2TGoPrgGi4kLq20Nx4p8OBOuptKYUIqZEq/GQZvyWMcr4AS9cg/vjsv/sX2Au 9J5WNXOlx1e6BFxn04G7UA14e6wCe8Plp1g2fSBs= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Herve Codina , Saravana Kannan , Luca Ceresoli , Nuno Sa , Rob Herring Subject: [PATCH 6.1 118/138] of: dynamic: Synchronize of_changeset_destroy() with the devlink removals Date: Mon, 8 Apr 2024 14:58:52 +0200 Message-ID: <20240408125259.903771119@linuxfoundation.org> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240408125256.218368873@linuxfoundation.org> References: <20240408125256.218368873@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Herve Codina commit 8917e7385346bd6584890ed362985c219fe6ae84 upstream. In the following sequence: 1) of_platform_depopulate() 2) of_overlay_remove() During the step 1, devices are destroyed and devlinks are removed. During the step 2, OF nodes are destroyed but __of_changeset_entry_destroy() can raise warnings related to missing of_node_put(): ERROR: memory leak, expected refcount 1 instead of 2 ... Indeed, during the devlink removals performed at step 1, the removal itself releasing the device (and the attached of_node) is done by a job queued in a workqueue and so, it is done asynchronously with respect to function calls. When the warning is present, of_node_put() will be called but wrongly too late from the workqueue job. In order to be sure that any ongoing devlink removals are done before the of_node destruction, synchronize the of_changeset_destroy() with the devlink removals. Fixes: 80dd33cf72d1 ("drivers: base: Fix device link removal") Cc: stable@vger.kernel.org Signed-off-by: Herve Codina Reviewed-by: Saravana Kannan Tested-by: Luca Ceresoli Reviewed-by: Nuno Sa Link: https://lore.kernel.org/r/20240325152140.198219-3-herve.codina@bootlin.com Signed-off-by: Rob Herring Signed-off-by: Greg Kroah-Hartman --- drivers/of/dynamic.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) --- a/drivers/of/dynamic.c +++ b/drivers/of/dynamic.c @@ -9,6 +9,7 @@ #define pr_fmt(fmt) "OF: " fmt +#include #include #include #include @@ -679,6 +680,17 @@ void of_changeset_destroy(struct of_chan { struct of_changeset_entry *ce, *cen; + /* + * When a device is deleted, the device links to/from it are also queued + * for deletion. Until these device links are freed, the devices + * themselves aren't freed. If the device being deleted is due to an + * overlay change, this device might be holding a reference to a device + * node that will be freed. So, wait until all already pending device + * links are deleted before freeing a device node. This ensures we don't + * free any device node that has a non-zero reference count. + */ + device_link_wait_removal(); + list_for_each_entry_safe_reverse(ce, cen, &ocs->entries, node) __of_changeset_entry_destroy(ce); }