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:	Sun, 21 Sep 2008 18:12:28 -0700
From:	Benjamin Herrenschmidt <benh@...nel.crashing.org>
To:	Julia Lawall <julia@...u.dk>
Cc:	paulus@...ba.org, linuxppc-dev@...abs.org,
	linux-kernel@...r.kernel.org, kernel-janitors@...r.kernel.org
Subject: Re: [PATCH] arch/powerpc/platforms/powermac/pic.c: move of_node_put

On Sun, 2008-09-21 at 13:01 +0200, Julia Lawall wrote:
> From: Julia Lawall <julia@...u.dk>
> 
> It seems better to dereference master before decrementing the reference
> count rather than afterwards.
> 
> The problem was found using the following semantic match:
> (http://www.emn.fr/x-info/coccinelle/)
> 
> // <smpl>
> @r exists@
> expression n,E;
> identifier fld;
> iterator I;
> statement S;
> @@
> 
> * of_node_put(n)
> ... when != n = E
>     when != I(n,...) S
> * n->fld
> // </smpl>
> 
> Signed-off-by: Julia Lawall <julia@...u.dk>

Ack.

No big deal, tho, those nodes are never going to go away :-)

Cheers,
Ben.

> ---
> 
>  arch/powerpc/platforms/powermac/pic.c          |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/arch/powerpc/platforms/powermac/pic.c b/arch/powerpc/platforms/powermac/pic.c
> index 6d149ae..d17aa2b 100644
> --- a/arch/powerpc/platforms/powermac/pic.c
> +++ b/arch/powerpc/platforms/powermac/pic.c
> @@ -395,10 +395,10 @@ static void __init pmac_pic_probe_oldstyle(void)
>  	if (max_real_irqs > 32)
>  		pmac_irq_hw[i++] = (volatile struct pmac_irq_hw __iomem *)
>  			(addr + 0x10);
> -	of_node_put(master);
>  
>  	printk(KERN_INFO "irq: Found primary Apple PIC %s for %d irqs\n",
>  	       master->full_name, max_real_irqs);
> +	of_node_put(master);
>  
>  	/* Map interrupts of cascaded controller */
>  	if (slave && !of_address_to_resource(slave, 0, &r)) {

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ