From: Kenji Kaneshige <kaneshige.kenji-+CUm20s59erQFUHtdCDX3A@public.gmane.org>
To: MAEDA Naoaki <maeda.naoaki-+CUm20s59erQFUHtdCDX3A@public.gmane.org>
Cc: len.brown-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org,
acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org,
akpm-3NddpPZAyC0@public.gmane.org
Subject: Re: latest ACPI patch based on 2.6.13
Date: Mon, 08 Aug 2005 15:19:03 +0900 [thread overview]
Message-ID: <42F6F957.7020508@jp.fujitsu.com> (raw)
In-Reply-To: <20050808.134133.41727261.maeda.naoaki-+CUm20s59erQFUHtdCDX3A@public.gmane.org>
Hi,
> In addition, assign_irq_vector_nopanic() called by iosapic_register_intr()
> is missing. Shouldn't be assign_irq_vector()?
As you pointed out, it should be assign_irq_vector()
because assign_irq_vector_nopanic() has been already
removed at 2.6.13-rc3.
Thanks,
Kenji Kaneshige
MAEDA Naoaki wrote:
> Hi Len and Kenji,
>
> From: Len Brown <len.brown-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
> Subject: [ACPI] latest ACPI patch based on 2.6.13
> Date: Fri, 05 Aug 2005 01:35:25 -0400
>
>
>>The Latest ACPI patch based on 2.6.13 is available here:
>>
>>http://ftp.kernel.org/pub/linux/kernel/people/lenb/acpi/patches/release/2.6.12/acpi-20050729-2.6.13-rc6.patch
>>
>>These patches are exported to-akpm for inclusion in -mm
>>with the intent to integrate into 2.6.14.
>>
>>http://ftp.kernel.org/pub/scm/linux/kernel/git/lenb/to-akpm.git/
>>
>>Please give it a go and speak up and file bugs if you run into
>>any issues.
>
>
> It cannot be compiled on ia64, due to some typos in ia64 specific files.
> The following patch fixes the typos.
>
> In addition, assign_irq_vector_nopanic() called by iosapic_register_intr()
> is missing. Shouldn't be assign_irq_vector()?
>
> Thanks,
> MAEDA Naoaki
>
> Index: linux-2.6.13-rc5-mm1/arch/ia64/kernel/acpi.c
> ===================================================================
> --- linux-2.6.13-rc5-mm1.orig/arch/ia64/kernel/acpi.c
> +++ linux-2.6.13-rc5-mm1/arch/ia64/kernel/acpi.c
> @@ -74,7 +74,7 @@ unsigned int acpi_cpei_override;
> unsigned int acpi_cpei_phys_cpuid;
>
> #define MAX_SAPICS 256
> -u16 ia64_acpiid_to_sapicid[MAX_SAPICS] = {[0...MAX_SAPICS - 1] = -1 };
> +u16 ia64_acpiid_to_sapicid[MAX_SAPICS] = {[0 ... MAX_SAPICS - 1] = -1 };
>
> EXPORT_SYMBOL(ia64_acpiid_to_sapicid);
>
> @@ -138,7 +138,7 @@ const char *acpi_get_sysname(void)
>
> /* Array to record platform interrupt vectors for generic interrupt routing. */
> int platform_intr_list[ACPI_MAX_PLATFORM_INTERRUPTS] = {
> - [0...ACPI_MAX_PLATFORM_INTERRUPTS - 1] = -1
> + [0 ... ACPI_MAX_PLATFORM_INTERRUPTS - 1] = -1
> };
>
> enum acpi_irq_model_id acpi_irq_model = ACPI_IRQ_MODEL_IOSAPIC;
> Index: linux-2.6.13-rc5-mm1/arch/ia64/kernel/iosapic.c
> ===================================================================
> --- linux-2.6.13-rc5-mm1.orig/arch/ia64/kernel/iosapic.c
> +++ linux-2.6.13-rc5-mm1/arch/ia64/kernel/iosapic.c
> @@ -739,7 +739,7 @@ again:
> if (vector < 0) {
> vector = iosapic_find_sharable_vector(trigger, polarity);
> if (vector < 0)
> - Return -ENOSPC;
> + return -ENOSPC;
> }
>
> spin_lock_irqsave(&irq_descp(vector)->lock, flags);
>
>
>
-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
next prev parent reply other threads:[~2005-08-08 6:19 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-08-05 4:09 latest ACPI patch vs 2.6.12 Len Brown
2005-08-05 5:35 ` latest ACPI patch based on 2.6.13 Len Brown
2005-08-05 5:41 ` Andrew Morton
2005-08-05 9:58 ` Avuton Olrich
2005-08-08 4:41 ` MAEDA Naoaki
[not found] ` <20050808.134133.41727261.maeda.naoaki-+CUm20s59erQFUHtdCDX3A@public.gmane.org>
2005-08-08 6:19 ` Kenji Kaneshige [this message]
2005-08-11 22:28 ` latest ACPI patch vs 2.6.12 Len Brown
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=42F6F957.7020508@jp.fujitsu.com \
--to=kaneshige.kenji-+cum20s59erqfuhtdcdx3a@public.gmane.org \
--cc=acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org \
--cc=akpm-3NddpPZAyC0@public.gmane.org \
--cc=len.brown-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
--cc=maeda.naoaki-+CUm20s59erQFUHtdCDX3A@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.