From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Luck, Tony" Date: Thu, 17 Apr 2003 20:40:28 +0000 Subject: RE: [Linux-ia64] floating-point error Message-Id: List-Id: References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-ia64@vger.kernel.org > Sometimes the Oracle process dies with the following error message: > > Apr 17 20:24:48 rx1 kernel: oracle(7148): floating-point assist fault at ip 40000000048b4562 > > The ip address is always the same. This happens on all of our 4 nodes > as it seems randomly. I do not have other debug info as this is the only > message printed. Some times for the same process the message is printed > up to 4 times. Are you certain that the message is related to the death of the process? This message is a warning to let you know that your application has run into one of the corner cases of IEEE floating point that is not implemented in hardware by the processor (typically operations involving denormalized numbers will cause this, but there may be other cases). There is rate limiting code in the kernel to prevent this message from flooding the logs (and from becoming even more of a performance drag than taking a trap and emulating in s/w). It is relatively normal to see this message (even multiple times from the same process), and it usually isn't fatal. -Tony Luck