From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from csmtp1.b-one.net (csmtp.b-one.net [195.47.247.21]) by ozlabs.org (Postfix) with ESMTP id BECA0DDEF0 for ; Thu, 28 Dec 2006 12:07:22 +1100 (EST) Received: from Jocke (84-217-7-200.tn.glocalnet.net [84.217.7.200]) by csmtp1.b-one.net (Postfix) with ESMTP id 0ADD51911ED99 for ; Thu, 28 Dec 2006 01:45:26 +0100 (CET) From: "Tjernlund" To: "'linuxppc-dev'" Subject: mpc83xx_restart() buggy Date: Thu, 28 Dec 2006 01:45:24 +0100 Message-ID: <006401c72a19$7680a5c0$1e67a8c0@Jocke> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , mpc83xx_restart() uses ioremap(), which doesn't like beeing called while in IRQ context. Calling mpc83xx_restart() in IRQ context yields OOPS which calls mpc83xx_restart() again and the loop never termintes. Jocke