From: Derrick Brashear Date: Wed, 18 Jan 2006 02:22:19 +0000 (+0000) Subject: STABLE14-linux-kernel-bug-macro-inline-20060117 X-Git-Tag: openafs-stable-1_4_1-rc5~18 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=0181d2c934ffec2412f9c4d5db18ea263cd3ab2b;p=packages%2Fo%2Fopenafs.git STABLE14-linux-kernel-bug-macro-inline-20060117 force oops inline instead of calling bug, so we can printk (cherry picked from commit 93efc4ae47cc942164c2dfee175df0760fbfca03) --- diff --git a/src/rx/rx_kcommon.c b/src/rx/rx_kcommon.c index 2247ee72f..ab2736687 100644 --- a/src/rx/rx_kcommon.c +++ b/src/rx/rx_kcommon.c @@ -133,7 +133,8 @@ osi_Panic(msg, a1, a2, a3) dpf((msg, a1, a2, a3)); #ifdef AFS_LINUX24_ENV - BUG(); + printk("AFS BUG at %s\n", msg); + * ((char *) 0) = 0; #else panic(msg); #endif