From: Chas Williams Date: Mon, 8 Aug 2005 15:58:32 +0000 (+0000) Subject: linux-panic-20050727 X-Git-Tag: openafs-devel-1_5_0~396 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=9485ca85d36b7449bc4ad4895d2a96ec95ea7537;p=packages%2Fo%2Fopenafs.git linux-panic-20050727 FIXES 20392 just call panic() on linux ==================== This delta was composed from multiple commits as part of the CVS->Git migration. The checkin message with each commit was inconsistent. The following are the additional commit messages. ==================== FIXES 20392 call BUG() instead --- diff --git a/src/rx/rx_kcommon.c b/src/rx/rx_kcommon.c index 34c7c0379..b469bac68 100644 --- a/src/rx/rx_kcommon.c +++ b/src/rx/rx_kcommon.c @@ -127,8 +127,8 @@ osi_Panic(msg, a1, a2, a3) msg = "Unknown AFS panic"; printf(msg, a1, a2, a3); -#ifdef AFS_LINUX20_ENV - *((char *)0xffffffff) = 42; +#ifdef AFS_LINUX24_ENV + BUG(); #else panic(msg); #endif