Re: [PATCH -tip/master] x86: io-apic - interrupt remapping fix

From: Suresh Siddha
Date: Tue Sep 23 2008 - 15:17:54 EST


On Tue, Sep 23, 2008 at 12:00:02PM -0700, Cyrill Gorcunov wrote:
> ---
> From: Cyrill Gorcunov <gorcunov@xxxxxxxxx>
>
> Clean up obscure for() cycle with straight while() form
>
> Signed-off-by: Cyrill Gorcunov <gorcunov@xxxxxxxxx>
> CC: Suresh Siddha <suresh.b.siddha@xxxxxxxxx>
> ---
>
> Index: linux-2.6.git/arch/x86/kernel/io_apic.c
> ===================================================================
> --- linux-2.6.git.orig/arch/x86/kernel/io_apic.c 2008-09-22 17:42:33.000000000 +0400
> +++ linux-2.6.git/arch/x86/kernel/io_apic.c 2008-09-23 22:45:58.000000000 +0400
> @@ -830,9 +830,8 @@ int save_mask_IO_APIC_setup(void)
> return 0;
>
> nomem:
> - for (; apic > 0; apic--)
> - kfree(early_ioapic_entries[apic]);
> - kfree(early_ioapic_entries[apic]);
> + while (apic >= 0)
> + kfree(early_ioapic_entries[apic--]);
> memset(early_ioapic_entries, 0,
> ARRAY_SIZE(early_ioapic_entries));
>

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