From 0181d2c934ffec2412f9c4d5db18ea263cd3ab2b Mon Sep 17 00:00:00 2001 From: Derrick Brashear Date: Wed, 18 Jan 2006 02:22:19 +0000 Subject: [PATCH] STABLE14-linux-kernel-bug-macro-inline-20060117 force oops inline instead of calling bug, so we can printk (cherry picked from commit 93efc4ae47cc942164c2dfee175df0760fbfca03) --- src/rx/rx_kcommon.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rx/rx_kcommon.c b/src/rx/rx_kcommon.c index 2247ee72ff..ab27366879 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