<tt><font size=2>Hello,<br>
</font></tt>
<br><tt><font size=2>I get segementation fault from our 64-bit kernel crash<br>
This crash is caused by "echo c > /proc/sys-trigger".<br>
The reason seems to be that the x86_64_cpu_pda_init is<br>
not called at least gdb do not break there.<br>
</font></tt>
<br><tt><font size=2>Here is a little patch that fixes it. Everyting seems
to<br>
work correctly. I'll provide more info if needed.<br>
</font></tt>
<br>
<br><tt><font size=2>--- crash-5.0.0/x86_64.c        2010-01-06
21:38:27.000000000 +0200<br>
+++ crash-5.0.0-64bit/x86_64.c        2010-01-14
08:24:13.679603706 +0200<br>
@@ -6325,6 +6325,12 @@ x86_64_get_active_set(void)<br>
</font></tt>
<br><tt><font size=2>ms = machdep->machspec;<br>
</font></tt>
<br><tt><font size=2>+        if (!ms->current)
{<br>
+          error(INFO, "%s: Cannot get active
set, ms->current is NULL\n",<br>
+                __func__);<br>
+          return;<br>
+        }<br>
+</font></tt>
<br>