[tip:x86/urgent] x86/acpi: Reduce code duplication in mp_override_legacy_irq()

2017-11-17 Thread tip-bot for Vikas C Sajjan
Commit-ID: 4ee2ec1b122599f7b10c849fa7915cebb37b7edb Gitweb: https://git.kernel.org/tip/4ee2ec1b122599f7b10c849fa7915cebb37b7edb Author: Vikas C Sajjan <vikas.cha.saj...@hpe.com> AuthorDate: Thu, 16 Nov 2017 21:43:45 +0530 Committer: Thomas Gleixner <t...@linutronix.de> Com

[tip:x86/urgent] x86/acpi: Reduce code duplication in mp_override_legacy_irq()

2017-11-17 Thread tip-bot for Vikas C Sajjan
Commit-ID: 4ee2ec1b122599f7b10c849fa7915cebb37b7edb Gitweb: https://git.kernel.org/tip/4ee2ec1b122599f7b10c849fa7915cebb37b7edb Author: Vikas C Sajjan AuthorDate: Thu, 16 Nov 2017 21:43:45 +0530 Committer: Thomas Gleixner CommitDate: Fri, 17 Nov 2017 15:30:33 +0100 x86/acpi: Reduce

[tip:x86/urgent] x86/acpi: Handle SCI interrupts above legacy space gracefully

2017-11-17 Thread tip-bot for Vikas C Sajjan
Commit-ID: 252714155f04c5d16989cb3aadb85fd1b5772f99 Gitweb: https://git.kernel.org/tip/252714155f04c5d16989cb3aadb85fd1b5772f99 Author: Vikas C Sajjan <vikas.cha.saj...@hpe.com> AuthorDate: Thu, 16 Nov 2017 21:43:44 +0530 Committer: Thomas Gleixner <t...@linutronix.de> Com

[tip:x86/urgent] x86/acpi: Handle SCI interrupts above legacy space gracefully

2017-11-17 Thread tip-bot for Vikas C Sajjan
Commit-ID: 252714155f04c5d16989cb3aadb85fd1b5772f99 Gitweb: https://git.kernel.org/tip/252714155f04c5d16989cb3aadb85fd1b5772f99 Author: Vikas C Sajjan AuthorDate: Thu, 16 Nov 2017 21:43:44 +0530 Committer: Thomas Gleixner CommitDate: Fri, 17 Nov 2017 15:30:33 +0100 x86/acpi: Handle

[PATCH v3 2/2] acpi/x86: Reuse the mp_register_ioapic_irq() in the function mp_override_legacy_irq()

2017-11-16 Thread Vikas C Sajjan
Modify the function mp_override_legacy_irq() to reuse the newly introduced function mp_register_ioapic_irq(). Signed-off-by: Vikas C Sajjan <vikas.cha.saj...@hpe.com> Reviewed-by: Thomas Gleixner <t...@linutronix.de> --- arch/x86/kernel/acpi/boot.c | 27 +--

[PATCH v3 2/2] acpi/x86: Reuse the mp_register_ioapic_irq() in the function mp_override_legacy_irq()

2017-11-16 Thread Vikas C Sajjan
Modify the function mp_override_legacy_irq() to reuse the newly introduced function mp_register_ioapic_irq(). Signed-off-by: Vikas C Sajjan Reviewed-by: Thomas Gleixner --- arch/x86/kernel/acpi/boot.c | 27 +-- 1 file changed, 5 insertions(+), 22 deletions(-) diff

[PATCH v3 1/2] acpi/x86: Fix improper handling of SCI INT for platforms supporting only IOAPIC mode

2017-11-16 Thread Vikas C Sajjan
eloped-by: Sunil V L <sunil...@hpe.com> Signed-off-by: Vikas C Sajjan <vikas.cha.saj...@hpe.com> Tested-by: Abdul Lateef Attar <abdul-lateef.at...@hpe.com> --- arch/x86/kernel/acpi/boot.c | 34 +- 1 file changed, 33 insertions(+), 1 deletion(-)

[PATCH v3 1/2] acpi/x86: Fix improper handling of SCI INT for platforms supporting only IOAPIC mode

2017-11-16 Thread Vikas C Sajjan
eloped-by: Sunil V L Signed-off-by: Vikas C Sajjan Tested-by: Abdul Lateef Attar --- arch/x86/kernel/acpi/boot.c | 34 +- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c index ef9e02e

[PATCH v3 0/2] Fix improper handling of SCI INT for platforms supporting only IOAPIC mode

2017-11-16 Thread Vikas C Sajjan
s Gleixner <t...@linutronix.de> to fix the broken Signed-off-by chain, code clean up and some comments removal. Changes since v1: Patch is split into 2, separating actual fix and code cleanup as suggested by Rafael. Vikas C Sajjan (2): acpi/x86: Fix improper handling of SCI INT for platforms

[PATCH v3 0/2] Fix improper handling of SCI INT for platforms supporting only IOAPIC mode

2017-11-16 Thread Vikas C Sajjan
omas Gleixner to fix the broken Signed-off-by chain, code clean up and some comments removal. Changes since v1: Patch is split into 2, separating actual fix and code cleanup as suggested by Rafael. Vikas C Sajjan (2): acpi/x86: Fix improper handling of SCI INT for platforms supporting only IOAPI

[PATCH v2 2/2] acpi/x86: Reuse the mp_register_ioapic_irq() in the function mp_override_legacy_irq()

2017-11-16 Thread Vikas C Sajjan
Modify the function mp_override_legacy_irq() to reuse the newly introduced function mp_register_ioapic_irq(). Signed-off-by: Vikas C Sajjan <vikas.cha.saj...@hpe.com> --- arch/x86/kernel/acpi/boot.c | 27 +-- 1 file changed, 5 insertions(+), 22 deletions(-) diff

[PATCH v2 1/2] acpi/x86: Fix improper handling of SCI INT for platforms supporting only IOAPIC mode

2017-11-16 Thread Vikas C Sajjan
Signed-off-by: Vikas C Sajjan <vikas.cha.saj...@hpe.com> Signed-off-by: Sunil V L <sunil...@hpe.com> Signed-off-by: Abdul Lateef Attar <abdul-lateef.at...@hpe.com> --- arch/x86/kernel/acpi/boot.c | 37 - 1 file changed, 36 insertions(+), 1 deletion(-)

[PATCH v2 2/2] acpi/x86: Reuse the mp_register_ioapic_irq() in the function mp_override_legacy_irq()

2017-11-16 Thread Vikas C Sajjan
Modify the function mp_override_legacy_irq() to reuse the newly introduced function mp_register_ioapic_irq(). Signed-off-by: Vikas C Sajjan --- arch/x86/kernel/acpi/boot.c | 27 +-- 1 file changed, 5 insertions(+), 22 deletions(-) diff --git a/arch/x86/kernel/acpi

[PATCH v2 1/2] acpi/x86: Fix improper handling of SCI INT for platforms supporting only IOAPIC mode

2017-11-16 Thread Vikas C Sajjan
Signed-off-by: Vikas C Sajjan Signed-off-by: Sunil V L Signed-off-by: Abdul Lateef Attar --- arch/x86/kernel/acpi/boot.c | 37 - 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c index ef9e02e

[PATCH v2 0/2] Fix improper handling of SCI INT for platforms supporting only IOAPIC mode

2017-11-16 Thread Vikas C Sajjan
separating actual fix and code cleanup as suggested by Rafael. Vikas C Sajjan (2): acpi/x86: Fix improper handling of SCI INT for platforms supporting only IOAPIC mode acpi/x86: Reuse the mp_register_ioapic_irq() in the function mp_override_legacy_irq() arch/x86/kernel/acpi/b

[PATCH v2 0/2] Fix improper handling of SCI INT for platforms supporting only IOAPIC mode

2017-11-16 Thread Vikas C Sajjan
separating actual fix and code cleanup as suggested by Rafael. Vikas C Sajjan (2): acpi/x86: Fix improper handling of SCI INT for platforms supporting only IOAPIC mode acpi/x86: Reuse the mp_register_ioapic_irq() in the function mp_override_legacy_irq() arch/x86/kernel/acpi/b

[PATCH] x86/acpi: Fix improper handling of SCI INT for platforms supporting only IOAPIC mode

2017-11-10 Thread Vikas C Sajjan
mentioned case. While at it, also modify function mp_override_legacy_irq() to use the newly introduced function mp_register_ioapic_irq(). Signed-off-by: Vikas C Sajjan <vikas.cha.saj...@hpe.com> Signed-off-by: Sunil V L <sunil...@hpe.com> Signed-off-by: Abdul Lateef Attar <a

[PATCH] x86/acpi: Fix improper handling of SCI INT for platforms supporting only IOAPIC mode

2017-11-10 Thread Vikas C Sajjan
mentioned case. While at it, also modify function mp_override_legacy_irq() to use the newly introduced function mp_register_ioapic_irq(). Signed-off-by: Vikas C Sajjan Signed-off-by: Sunil V L Signed-off-by: Abdul Lateef Attar --- arch/x86/kernel/acpi/b