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] [thread-next>] [day] [month] [year] [list]
Date:	Wed, 11 Mar 2009 13:19:22 +1100
From:	Benjamin Herrenschmidt <benh@...nel.crashing.org>
To:	Thomas Gleixner <tglx@...utronix.de>
Cc:	LKML <linux-kernel@...r.kernel.org>,
	Andrew Morton <akpm@...ux-foundation.org>,
	Ingo Molnar <mingo@...e.hu>, linuxppc-dev@...abs.org
Subject: Re: [patch 08/18] powerpc: convert obsolete irq_desc_t to struct
 irq_desc

On Wed, 2009-03-11 at 00:45 +0000, Thomas Gleixner wrote:
> plain text document attachment
> (powerpc-convert-obsolete-irq-desc-t-typedef.patch)
> Impact: cleanup
> 
> Convert the last remaining users.

Ack. This would be more easily carried in my -next tree if that's ok
with you.

> Signed-off-by: Thomas Gleixner <tglx@...utronix.de>
> CC: Benjamin Herrenschmidt <benh@...nel.crashing.org>
> CC: linuxppc-dev@...abs.org
> ---
>  arch/powerpc/kernel/irq.c            |    4 ++--
>  arch/powerpc/platforms/iseries/irq.c |    2 +-
>  2 files changed, 3 insertions(+), 3 deletions(-)
> 
> Index: linux-2.6/arch/powerpc/kernel/irq.c
> ===================================================================
> --- linux-2.6.orig/arch/powerpc/kernel/irq.c
> +++ linux-2.6/arch/powerpc/kernel/irq.c
> @@ -171,7 +171,7 @@ int show_interrupts(struct seq_file *p, 
>  {
>  	int i = *(loff_t *)v, j;
>  	struct irqaction *action;
> -	irq_desc_t *desc;
> +	struct irq_desc *desc;
>  	unsigned long flags;
>  
>  	if (i == 0) {
> @@ -1038,7 +1038,7 @@ arch_initcall(irq_late_init);
>  static int virq_debug_show(struct seq_file *m, void *private)
>  {
>  	unsigned long flags;
> -	irq_desc_t *desc;
> +	struct irq_desc *desc;
>  	const char *p;
>  	char none[] = "none";
>  	int i;
> Index: linux-2.6/arch/powerpc/platforms/iseries/irq.c
> ===================================================================
> --- linux-2.6.orig/arch/powerpc/platforms/iseries/irq.c
> +++ linux-2.6/arch/powerpc/platforms/iseries/irq.c
> @@ -214,7 +214,7 @@ void __init iSeries_activate_IRQs()
>  	unsigned long flags;
>  
>  	for_each_irq (irq) {
> -		irq_desc_t *desc = get_irq_desc(irq);
> +		struct irq_desc *desc = get_irq_desc(irq);
>  
>  		if (desc && desc->chip && desc->chip->startup) {
>  			spin_lock_irqsave(&desc->lock, flags);
> 

--
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