All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ipmi: set si_trydefaults=0 for ARM64
@ 2016-06-20 18:26 Tony Camuso
  2016-06-20 20:57 ` Corey Minyard
  0 siblings, 1 reply; 3+ messages in thread
From: Tony Camuso @ 2016-06-20 18:26 UTC (permalink / raw)
  To: minyard, openipmi-developer; +Cc: linux-kernel

Port I/O space does not exist in ARM64 and is not mapped. Attempts to
access it on ARM systems cause stack traces and worse.

Signed-off-by: Tony Camuso <tcamuso@redhat.com>
---
 drivers/char/ipmi/ipmi_si_intf.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/char/ipmi/ipmi_si_intf.c b/drivers/char/ipmi/ipmi_si_intf.c
index 615abbf..85dcc86 100644
--- a/drivers/char/ipmi/ipmi_si_intf.c
+++ b/drivers/char/ipmi/ipmi_si_intf.c
@@ -3841,6 +3841,11 @@ static int init_ipmi_si(void)
 		spmi_find_bmc();
 #endif
 
+#ifdef CONFIG_ARM64
+	/* Don't touch port io space */
+	si_trydefaults = 0;
+#endif
+
 #ifdef CONFIG_PARISC
 	register_parisc_driver(&ipmi_parisc_driver);
 	parisc_registered = true;
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-06-21 11:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-20 18:26 [PATCH] ipmi: set si_trydefaults=0 for ARM64 Tony Camuso
2016-06-20 20:57 ` Corey Minyard
2016-06-21 11:20   ` Tony Camuso

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.