From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from postfix.timesys.com (mail.timesys.com [65.117.135.102]) by ozlabs.org (Postfix) with ESMTP id ECA26679E0 for ; Wed, 17 May 2006 04:00:45 +1000 (EST) Subject: Re: what does this mean? From: "Walter L. Wimer III" To: "Steve Iribarne (GMail)" In-Reply-To: <1147801106.14881.2.camel@excalibur.timesys.com> References: <1147801106.14881.2.camel@excalibur.timesys.com> Content-Type: text/plain Date: Tue, 16 May 2006 13:42:46 -0400 Message-Id: <1147801367.14881.4.camel@excalibur.timesys.com> Mime-Version: 1.0 Cc: linuxppc-embedded List-Id: Linux on Embedded PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Tue, 2006-05-16 at 13:38 -0400, Walter L. Wimer III wrote: > Check to make sure that in your interrupt handler you are not calling > something that can sleep. E.g. sleep(), usleep(), kmalloc(), > vmalloc(), etc. Also watch out for semaphore operations such as down() and down_interruptible(). They can sleep too. Walt