2009-11-16 02:49:04

by Hiroshi Shimamoto

[permalink] [raw]
Subject: [PATCH] x86: Don't put iommu_shutdown_noop() in init section

From: Hiroshi Shimamoto <[email protected]>

It causes kernel panic on shutdown or reboot.

Signed-off-by: Hiroshi Shimamoto <[email protected]>
---
arch/x86/kernel/x86_init.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/x86/kernel/x86_init.c b/arch/x86/kernel/x86_init.c
index 80f3ae2..d11c5ff 100644
--- a/arch/x86/kernel/x86_init.c
+++ b/arch/x86/kernel/x86_init.c
@@ -20,7 +20,7 @@ void __cpuinit x86_init_noop(void) { }
void __init x86_init_uint_noop(unsigned int unused) { }
void __init x86_init_pgd_noop(pgd_t *unused) { }
int __init iommu_init_noop(void) { return 0; }
-void __init iommu_shutdown_noop(void) { }
+void iommu_shutdown_noop(void) { }

/*
* The platform setup functions are preset with the default functions
--
1.6.3.3


2009-11-16 03:50:58

by FUJITA Tomonori

[permalink] [raw]
Subject: Re: [PATCH] x86: Don't put iommu_shutdown_noop() in init section

On Mon, 16 Nov 2009 11:44:30 +0900
Hiroshi Shimamoto <[email protected]> wrote:

> From: Hiroshi Shimamoto <[email protected]>
>
> It causes kernel panic on shutdown or reboot.
>
> Signed-off-by: Hiroshi Shimamoto <[email protected]>
> ---
> arch/x86/kernel/x86_init.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)

Duh, sorry about that.

Acked-by: FUJITA Tomonori <[email protected]>

2009-11-16 09:04:24

by Hiroshi Shimamoto

[permalink] [raw]
Subject: [tip:core/iommu] x86: Don't put iommu_shutdown_noop() in init section

Commit-ID: 62ad33f67003b9a7b6013f0511579b9805e11626
Gitweb: http://git.kernel.org/tip/62ad33f67003b9a7b6013f0511579b9805e11626
Author: Hiroshi Shimamoto <[email protected]>
AuthorDate: Mon, 16 Nov 2009 11:44:30 +0900
Committer: Ingo Molnar <[email protected]>
CommitDate: Mon, 16 Nov 2009 08:58:51 +0100

x86: Don't put iommu_shutdown_noop() in init section

It causes kernel panic on shutdown or reboot.

Signed-off-by: Hiroshi Shimamoto <[email protected]>
Acked-by: FUJITA Tomonori <[email protected]>
LKML-Reference: <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
---
arch/x86/kernel/x86_init.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/x86/kernel/x86_init.c b/arch/x86/kernel/x86_init.c
index 80f3ae2..d11c5ff 100644
--- a/arch/x86/kernel/x86_init.c
+++ b/arch/x86/kernel/x86_init.c
@@ -20,7 +20,7 @@ void __cpuinit x86_init_noop(void) { }
void __init x86_init_uint_noop(unsigned int unused) { }
void __init x86_init_pgd_noop(pgd_t *unused) { }
int __init iommu_init_noop(void) { return 0; }
-void __init iommu_shutdown_noop(void) { }
+void iommu_shutdown_noop(void) { }

/*
* The platform setup functions are preset with the default functions