lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Tue, 22 Nov 2022 07:59:32 +0100
From:   Peter Korsgaard <peter@...sgaard.com>
To:     Liu Shixin <liushixin2@...wei.com>
Cc:     Vinod Koul <vkoul@...nel.org>,
        Michal Simek <michal.simek@...inx.com>,
        <dmaengine@...r.kernel.org>,
        <linux-arm-kernel@...ts.infradead.org>,
        <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] dmaengine: xilinx_dma: call of_node_put() when breaking
 out of for_each_child_of_node()

>>>>> "Liu" == Liu Shixin <liushixin2@...wei.com> writes:

 > Since for_each_child_of_node() will increase the refcount of node, we need
 > to call of_node_put() manually when breaking out of the iteration.

 > Fixes: 9cd4360de609 ("dma: Add Xilinx AXI Video Direct Memory Access Engine driver support")
 > Signed-off-by: Liu Shixin <liushixin2@...wei.com>

Acked-by: Peter Korsgaard <peter@...sgaard.com>

> ---
 >  drivers/dma/xilinx/xilinx_dma.c | 4 +++-
 >  1 file changed, 3 insertions(+), 1 deletion(-)

 > diff --git a/drivers/dma/xilinx/xilinx_dma.c b/drivers/dma/xilinx/xilinx_dma.c
 > index 8cd4e69dc7b4..766017570488 100644
 > --- a/drivers/dma/xilinx/xilinx_dma.c
 > +++ b/drivers/dma/xilinx/xilinx_dma.c
 > @@ -3141,8 +3141,10 @@ static int xilinx_dma_probe(struct platform_device *pdev)
 >  	/* Initialize the channels */
 >  	for_each_child_of_node(node, child) {
 >  		err = xilinx_dma_child_probe(xdev, child);
 > -		if (err < 0)
 > +		if (err < 0) {
 > +			of_node_put(child);
 >  			goto error;
 > +		}
 >  	}
 
 >  	if (xdev->dma_config->dmatype == XDMA_TYPE_VDMA) {
 > -- 

 > 2.25.1


-- 
Bye, Peter Korsgaard

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ