| Script started on Wed Jan 29 18:21:38 1997
nonull:mark> dbx -k /vmunix
dbx version 3.11.10
Type 'help' for help.
stopped at [thread_block:2097 ,0xfffffc00002a8050] Source not available
warning: Files compiled -g3: parameter values probably wrong
(dbx) print db_enable
1
(dbx) quit
nonull:mark> cd /sys/conf
nonull:mark> cat NONULL
ident "NONULL"
options UERF
options OSF
options _LMF_
options BIN_COMPAT
options COMPAT_43
options MACH
options MACH_IPC_TCACHE
options MACH_IPC_WWA
options MACH_IPC_XXXHACK
options BUFCACHE_STATS
options INOCACHE_STATS
options STAT_TIME
options VAGUE_STATS
options UFS
options NFS
options NFS_SERVER
options STRKINFO
options STREAMS
options LDTTY
options RPTY
options INET
options UIPC
options SYSV_COFF
options QUOTA
options LABELS
options SL
options SNMPINFO
options DLI
options BPARM
options BSD_TTY
options DLB
options PROCFS
options MSFS
options FFM_FS
options KDEBUG
options NTP_TIME
options PACKETFILTER
options PPP
options PCKT
options TIRDWR
options TIMOD
options XTISO
options FFM_FS
options CDFS
options DEC_AUDIT
options DEC_ACL
#
# Standard options.
#
options UNIX_LOCKS
options SER_COMPAT
options RT_PREEMPT
options RT_SCHED
options RT_SCHED_RQ
options RT_PML
options RT_TIMER
options RT_SEM
options RT_CSEM
options RT_IPC
#
makeoptions CDEBUGOPTS="-g3"
makeoptions CCOMPRESS="-compress"
makeoptions PROFOPTS="-DPROFILING -DPROFTYPE=4"
#
# Max number of processors in the system (DO NOT CHANGE)
#
processors 16
#
# Special options (see configuring the kernel chapter
# in the Guide to System Administration)
#
dfldsiz 134217728
maxdsiz 1073741824
dflssiz 2097152
maxssiz 33554432
cpu "DEC3000_500"
maxusers 128
config vmunix swap generic
bus tc0 at nexus?
callout after_c "../bin/mkdata tc"
bus tcds0 at tc0 slot 6 vector tcdsintr
controller scsi0 at tcds0 slot 0
controller scsi1 at tcds0 slot 1
controller scc0 at tc0 slot 7 vector sccintr
controller bba0 at tc0 slot 7 vector bbaintr
controller ln0 at tc0 slot 7
controller fb0 at tc0 slot 0 vector fbint
pseudo-device sysv_hab
pseudo-device svid_three_hab
pseudo-device svr_four_hab
pseudo-device soe_two_hab
pseudo-device rt_hab
pseudo-device ether
pseudo-device loop
pseudo-device prf 6
pseudo-device lsm_ted 0
pseudo-device lsm 1
pseudo-device ws
----- EVENT INFORMATION -----
EVENT CLASS OPERATIONAL EVENT
OS EVENT TYPE 300. SYSTEM STARTUP
SEQUENCE NUMBER 0.
OPERATING SYSTEM DEC OSF/1
OCCURRED/LOGGED ON Sun Jan 26 14:04:50 1997
OCCURRED ON SYSTEM nonull
SYSTEM ID x00020004 CPU TYPE: DEC 3000
SYSTYPE x00000000
MESSAGE Alpha boot: available memory from
_0xe5c000 to 0x8000000
Digital UNIX V4.0B (Rev. 564); Fri
_Jan 17 15:07:38 EST 1997
physical memory = 128.00 megabytes.
available memory = 113.65 megabytes.
using 483 buffers containing 3.77
_megabytes of memory
tc0 at nexus
scc0 at tc0 slot 7
tcds0 at tc0 slot 6
scsi0 at tcds0 slot 0
rz1 at scsi0 target 1 lun 0 (LID=0)
_(DEC RZ25 (C) DEC 0700)
rz3 at scsi0 target 3 lun 0 (LID=1)
_(DEC RZ26 (C) DEC 392A)
rz4 at scsi0 target 4 lun 0 (LID=2)
_(DEC RRD42 (C) DEC 4.5d)
scsi1 at tcds0 slot 1
rz8 at scsi1 target 0 lun 0 (LID=3)
_(DEC RZ56 (C) DEC 0300)
rz9 at scsi1 target 1 lun 0 (LID=4)
_(DEC RZ56 (C) DEC 0400)
rz10 at scsi1 target 2 lun 0 (LID=5)
_(DEC RZ23 (C) DEC 0A18)
tz11 at scsi1 target 3 lun 0 (LID=6)
_()
rz13 at scsi1 target 5 lun 0 (LID=7)
_(DEC RZ56 (C) DEC 0400)
rz14 at scsi1 target 6 lun 0 (LID=8)
_(DEC RZ56 (C) DEC 0300)
bba0 at tc0 slot 7
ln0: DEC LANCE Module Name: PMAD-BA
ln0 at tc0 slot 7
ln0: DEC LANCE Ethernet Interface,
_hardware address: 08-00-2B-BA-B2-00
fb0 at tc0 slot 0
1280X1024
J300 unit 0 video subsystem configured
J300 audio subsystem configured
av0 at tc0 slot 4
DEC 3000 - M800 system
Firmware revision: 6.9
PALcode: OSF version 1.45
dli: configured
cam_logger: CAM_ERROR packet
cam_logger: bus 1 target 3 lun 0
ss_device_reset_done
Bus device reset has been performed
nonull:mark> cd ~mark
nonull:mark> cat test.c
/* test.c */
#include <stdio.h>
main()
{
char buf[1024];
int i=0;
while ( !feof(stdin) && ( i < 1024 )) {
buf[i] = fgetc( stdin);
i++;
}
fprintf(stdout, "%s\n", buf);
}
nonull:mark> cc -g test.c -o tst
nonull:mark> dbx tst
dbx version 3.11.10
Type 'help' for help.
main: 9 int i=0;
(dbx) run
djfk
^djfk
�
Program terminated normally
(dbx) stop in main
[2] stop in main
(dbx) run < test.c
[2] stopped at [main:9 ,0x1200011c4] int i=0;
(dbx) s
[main:11 ,0x1200011c8] while ( !feof(stdin) && ( i < 1024 )) {
(dbx) s
[main:12 ,0x1200011e0] buf[i] = fgetc( stdin);
(dbx) s
[main:13 ,0x12000120c] i++;
(dbx) s
[main:14 ,0x120001210] }
(dbx) s
[main:11 ,0x1200011c8] while ( !feof(stdin) && ( i < 1024 )) {
(dbx) s
[main:12 ,0x1200011e0] buf[i] = fgetc( stdin);
(dbx) s
[main:13 ,0x12000120c] i++;
(dbx) s
[main:14 ,0x120001210] }
(dbx) s
[main:11 ,0x1200011c8] while ( !feof(stdin) && ( i < 1024 )) {
(dbx) cont
/* test.c */
#include <stdio.h>
main()
{
char buf[1024];
int i=0;
while ( !feof(stdin) && ( i < 1024 )) {
buf[i] = fgetc( stdin);
i++;
}
fprintf(stdout, "%s\n", buf);
}
�
Program terminated normally
(dbx) quit
nonull:mark>
nonull:mark>
script done on Wed Jan 29 18:23:57 1997
|
| Hi,
I have a customer with same problem.
See note 8540.0 for more infos.
My crash is the following :
#
# Crash Data Collection (Version 1.4)
#
_crash_data_collection_time: Wed Jan 22 13:00:42 MET 1997
_current_directory: /
_crash_kernel: /var/adm/crash/vmunix.0
_crash_core: /var/adm/crash/vmcore.0
_crash_arch: alpha
_crash_os: Digital UNIX
@(#)AV201 V2.2
@(#)J3XX V2.2
@(#)msb V2.2
_host_version: Digital UNIX V4.0B (Rev. 564); Wed Jan 22 11:52:36 MET 1997
@(#)AV201 V2.2 96/06/17 BL4-12(Rev. 82)
@(#)J3XX V2.2 96/06/17 BL4-12(Rev. 82)
@(#)msb V2.2 96/06/17 BL4-12(Rev. 82)
_crash_version: Digital UNIX V4.0B (Rev. 564); Wed Jan 22 11:52:36 MET 1997
@(#)AV201 V2.2 96/06/17 BL4-12(Rev. 82)
@(#)J3XX V2.2 96/06/17 BL4-12(Rev. 82)
@(#)msb V2.2 96/06/17 BL4-12(Rev. 82)
_crashtime: struct {
tv_sec = 853934004
tv_usec = 36532
}
_boottime: struct {
tv_sec = 853931420
tv_usec = 68759
}
_config: struct {
sysname = "OSF1"
nodename = "struct4.uia.ac.be"
release = "V4.0"
version = "564"
machine = "alpha"
}
_cpu: 38
_system_string: 0xffffffffff800768 = "Digital AlphaStation 500/400"
_ncpus: 1
_avail_cpus: 1
_partial_dump: 1
_physmem(MBytes): 511
_panic_string: 0xfffffc000069d3d8 = "trap: illegal instruction"
_paniccpu: 0
_panic_thread: 0xfffffc0007a2c580
_preserved_message_buffer_begin:
struct {
msg_magic = 0x63061
msg_bufx = 0x6d5
msg_bufr = 0x5a5
msg_bufc = "Alpha boot: available memory from 0x16c6000 to 0x1ff16000
Digital UNIX V4.0B (Rev. 564); Wed Jan 22 11:52:36 MET 1997
physical memory = 512.00 megabytes.
available memory = 488.59 megabytes.
using 1957 buffers containing 15.28 megabytes of memory
Firmware revision: 6.3
PALcode: OSF version 1.21
Digital AlphaStation 500/400
Mem_size = 534634496, consmem = 273
pci0 at nexus
tu0: DECchip 21040-AA: Revision: 2.4
tu0 at pci0 slot 6
tu0: DEC TULIP Ethernet Interface, hardware address: 00-00-F8-23-20-B0
tu0: console mode: selecting 10Base2 (BNC) port
tga0 at pci0 slot 8
tga0: depth 8, map size 2MB, 1280x1024
tga0: ZLXp2-E, Revision: 34
isp0 at pci0 slot 9
isp0: QLOGIC ISP1020A
cam_logger: CAM_ERROR packet
cam_logger: bus 0
isp_probe
NVRAM parameters invalid, using driver Fast10 defaults
isp0: Firmware revision 2.10 (loaded by console)
scsi0 at isp0 slot 0
rz0 at scsi0 target 0 lun 0 (LID=0) (DEC RZ28D (C) DEC 0010) (Wide16)
rz1 at scsi0 target 1 lun 0 (LID=1) (DEC RZ29B (C) DEC 0016) (Wide16)
rz4 at scsi0 target 4 lun 0 (LID=2) (DEC RRD45 (C) DEC 0436)
eisa0 at pci0
ace0 at eisa0
ace1 at eisa0
lp0 at eisa0
fdi0 at eisa0
fd0 at fdi0 unit 0
gpc0 at eisa0
lvm0: configured.
lvm1: configured.
kernel console: tga0
dli: configured
ATM Subsystem configured with 1 restart threads
ATM UNI 3.x signalling: configured
ATM IP interface: configured
SuperLAT. Copyright 1994 Meridian Technology Corp. All rights reserved.
kernel inst fault=opdec, ps=0x0, pc=0xfffffc000595d348
panic (cpu 0): trap: illegal instruction
syncing disks... done
device string for dump = SCSI 0 9 0 0 0 0 0.
DUMP.prom: dev SCSI 0 9 0 0 0 0 0, block 262144
device string for dump = SCSI 0 9 0 0 0 0 0.
DUMP.prom: dev SCSI 0 9 0 0 0 0 0, block 262144
"
}
_preserved_message_buffer_end:
_kernel_process_status_begin:
PID COMM
00000 kernel idle
00001 init
00003 kloadsrv
00021 update
00094 syslogd
00096 binlogd
00263 portmap
00265 mountd
00267 nfsd
00269 nfsiod
00337 sendmail
00378 pmgrd
00402 os_mibs
00409 snmpd
00414 advfsd
00425 inetd
00458 cron
00486 lpd
00503 mmeserver
00509 nsrd
00522 nsrexecd
00523 nsrmmdbd
00537 nsrindexd
00538 dtlogin
00542 nsrmmd
00547 getty
00549 Xdec
00557 dtlogin
00578 dtsession
00616 ttsession
00617 rpc.ttdbserverd
00625 dtwm
00626 sh
00627 dxconsole
00628 dtexec
00629 dtterm
00630 ksh
00636 ksh
00641 sh
00642 dtfile
00645 dtfile
00647 dtexec
00648 dxsysinfo
00649 dxsysinfo
00653 dtexec
00654 xload
00655 dtexec
00656 dtterm
00657 ksh
00661 dtexec
00662 dtterm
00663 ksh
00667 dtexec
00668 dtterm
00669 ksh
00679 dtexec
00680 dtterm
00681 ksh
00697 rlogin
00698 rlogin
00720 dbx
00723 atob
_kernel_process_status_end:
_current_pid: 723
_current_tid: 0xfffffc0007a2c580
_proc_thread_list_begin:
thread 0xfffffc0007a2c580 stopped at [boot:2466 ,0xfffffc0000501ca8] Source
not available
_proc_thread_list_end:
_dump_begin:
> 0 boot(0x0, 0xfffffc0007a2c580, 0x2c0000002c, 0x35, 0x1)
["../../../../src/kernel/arch/alpha/machdep.c":2466, 0xfffffc0000501ca8]
1 panic(s = 0xfffffc000069d3d8 = "trap: illegal instruction")
["../../../../src/kernel/bsd/subr_prf.c":791, 0xfffffc000027af3c]
pcpu = 0x1
i = 7198384
mycpu = 0
spl = 0
2 trap() ["../../../../src/kernel/arch/alpha/trap.c":1171,
0xfffffc0000508a1c]
t = 0xfffffc0007a2c580
pcb = 0xffffffff9ff83a38
task = 0xfffffc0008dbe000
p = 0xfffffc0008dbe220
syst = struct {
tv_sec = -16772096
tv_usec = -3
}
nofault_save = 0
exc_type = 0
exc_code = 18446739675670181256
exc_subcode = 0
s = 0
gen_sig = 6935464
stime_enter = struct {
seconds = -4398041660520
microseconds = -4397916733768
}
stime_exit = struct {
seconds = -4397954934680
microseconds = 5368807424
}
utime = struct {
seconds = -1611123768
microseconds = -1611123744
}
stime_enter_valid = 18446744065102844928
ast = 6935464
cursig = 6935464
instfault_types = {
[0] 0xfffffc00006cf500 = "bpt"
[1] 0xfffffc00006cf508 = "bugchk"
[2] 0xfffffc00006cf510 = "gentrap"
[3] 0xfffffc00006cf518 = "fen"
[4] 0xfffffc00006cf520 = "opdec"
[5] 0xfffffc00006cf528 = "5"
[6] 0xfffffc00006cf530 = "6"
[7] 0xfffffc00006cf538 = "7"
}
result = 18446739675680391616
sta = struct {
trap_a0 = 0
trap_a1 = 0
trap_a2 = 18446739675754616928
}
uframe = {
[0] 4395926306816
[1] 49692672
[2] 0
[3] -1611123392
[4] 0
[5] -4398046511100
[6] 4395926306816
[7] -4398041457632
[8] -4397919323296
[9] 8388608
[10] -4398029947488
[11] 4395926315008
[12] 16384
[13] -1611123392
[14] -4397950653632
[15] -4397925398512
[16] -8602519528
[17] -4398041457592
[18] -4397919323296
[19] 8388608
[20] -4398029160000
[21] -1611123184
[22] 16384
[23] -4397919323296
[24] 4395926306816
[25] 1
[26] -4397920254720
[27] -4398041372104
[28] -4397942436864
[29] 0
[30] 5
[31] 0
[32] -4397942436816
}
sta = struct {
trap_a0 = 18446739675668425204
trap_a1 = 0
trap_a2 = 18446739675769377760
}
sta = struct {
trap_a0 = 18446744072098428268
trap_a1 = 18446744072098428432
trap_a2 = 18446739675790228320
}
siginfo = struct {
si_signo = 129777336
si_errno = -1024
si_code = -2144235520
si_kflags = -1
_sifields = union {
_sigproc = struct {
_pid = 106496
_pinfo = union {
_kill = struct {
_uid = 0
_pidgen = 1
}
_sigchld = struct {
_status = 0
_utime = 1
_stime = 0
}
_sigtimer = struct {
_timer1 = 0
_timer2 = 1
}
}
_sigrt = struct {
_sigval = union {
sival_int = 114688
sival_ptr = 0x1c000
}
}
}
_sigfault = struct {
_addr = 0x1a000l1 address 0x1a000 not mapped, pte 0x0
}
_sigpoll = struct {
_band = 106496
_fd = 1
}
_siganon = struct {
_siganon = union {
sival_int = 106496
sival_ptr = 0x1a000
}
}
}
}
signal = 0
ux_code = 106496
inst = union {
word = 6935464
byte = "��i"
common = struct {
6935464
opcode = 0
}
m_format = struct {
memory_displacement = 54184
rb = 9
ra = 3
opcode = 0
}
b_format = struct {
branch_displacement = 644008
ra = 3
opcode = 0
}
o_format = struct {
rc = 8
function = 29
form = 1
6
rb = 9
ra = 3
opcode = 0
}
l_format = struct {
rc = 8
function = 29
form = 1
literal = 78
ra = 3
opcode = 0
}
f_format = struct {
fc = 8
function = 1693
fb = 9
fa = 3
opcode = 0
}
pal_format = struct {
function = 6935464
opcode = 0
}
j_format = struct {
hint = 5032
function = 3
rb = 9
ra = 3
opcode = 0
}
}
3 _XentIF(0x0, 0xfffffc000595d34c, 0xfffffc00006cd6b0, 0xfffffc0007547558,
0x0) ["../../../../src/kernel/arch/alpha/locore.s":790, 0xfffffc00004fd6e0]
_dump_end:
warning: Files compiled -g3: parameter values probably wrong
_kernel_thread_list_begin:
thread 0xfffffc001fd2c2c0 stopped at [thread_run:2469 ,0xfffffc00002a8e08]
Source not available
thread 0xfffffc001fd2c580 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001fd2c840 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001fd2cb00 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001fd2cdc0 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001fd2d080 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001fd2d340 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001fd2d600 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001fd2d8c0 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001fd2db80 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc0001700000 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc00017002c0 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc0001700580 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc0001700840 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc0001700b00 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc0001700dc0 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc0001701340 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc0001701600 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc00017018c0 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc0001701b80 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001cf78000 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001cf782c0 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001cf78580 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001cf78840 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc0007a14840 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc0007a14b00 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc0007a14dc0 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc0007a15080 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc0007a15340 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc0007a15600 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc0007a158c0 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001cf79080 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc0007a15b80 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001cc56000 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001cc562c0 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001cc56580 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001cc56840 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001cc56b00 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001cc56dc0 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001cc57080 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001cc57340 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001cc57600 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001cc578c0 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001cc57b80 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001fa4e000 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001fa4e2c0 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
thread 0xfffffc001fa4e580 stopped at [thread_block:2097 ,0xfffffc00002a8640]
Source not available
_kernel_thread_list_end:
_savedefp: (nil)
_kernel_memory_fault_data_begin:
struct {
fault_va = 0x0
fault_pc = 0x0
fault_ra = 0x0
fault_sp = 0x0
access = 0x0
status = 0x0
cpunum = 0x0
count = 0x0
pcb = (nil)
thread = (nil)
task = (nil)
proc = (nil)
}
_kernel_memory_fault_data_end:
_uptime: .71 hours
paniccpu: 0x0
machine_slot[paniccpu]: struct {
is_cpu = 0x1
cpu_type = 0xf
cpu_subtype = 0xf
running = 0x1
cpu_ticks = {
[0] 0x81fc
[1] 0x0
[2] 0xac29
[3] 0x26c330
[4] 0xa2d1
}
clock_freq = 0x400
error_restart = 0x0
cpu_panicstr = 0xfffffc000069d3d8 = "trap: illegal instruction"
cpu_panic_thread = 0xfffffc0007a2c580
}
tset machine_slot[paniccpu].cpu_panic_thread:
Begin Trace for machine_slot[paniccpu].cpu_panic_thread:
> 0 boot(0x0, 0xfffffc0007a2c580, 0x2c0000002c, 0x35, 0x1)
["../../../../src/kernel/arch/alpha/machdep.c":2466, 0xfffffc0000501ca8]
1 panic(s = 0xfffffc000069d3d8 = "trap: illegal instruction")
["../../../../src/kernel/bsd/subr_prf.c":791, 0xfffffc000027af3c]
2 trap() ["../../../../src/kernel/arch/alpha/trap.c":1171,
0xfffffc0000508a1c]
3 _XentIF(0x0, 0xfffffc000595d34c, 0xfffffc00006cd6b0, 0xfffffc0007547558,
0x0) ["../../../../src/kernel/arch/alpha/locore.s":790, 0xfffffc00004fd6e0]
End Trace for machine_slot[paniccpu].cpu_panic_thread:
"cpu_data" is not an array
_stack_trace[0]_begin:
> 0 boot(0x0, 0xfffffc0007a2c580, 0x2c0000002c, 0x35, 0x1)
["../../../../src/kernel/arch/alpha/machdep.c":2466, 0xfffffc0000501ca8]
1 panic(s = 0xfffffc000069d3d8 = "trap: illegal instruction")
["../../../../src/kernel/bsd/subr_prf.c":791, 0xfffffc000027af3c]
2 trap() ["../../../../src/kernel/arch/alpha/trap.c":1171,
0xfffffc0000508a1c]
3 _XentIF(0x0, 0xfffffc000595d34c, 0xfffffc00006cd6b0, 0xfffffc0007547558,
0x0) ["../../../../src/kernel/arch/alpha/locore.s":790, 0xfffffc00004fd6e0]
_stack_trace[0]_end:
_kdbx_sum_start:
Hostname : struct4.uia.ac.be
cpu: Digital AlphaStation 500/400 avail: 1
Boot-time: Wed Jan 22 12:10:20 1997
Time: Wed Jan 22 12:53:24 1997
Kernel : OSF1 release V4.0 version 564 (alpha)
_kdbx_sum_end:
_kdbx_swap_start:
Swap device name Size In Use Free
-------------------------------- ---------- ---------- ----------
/dev/rz0b 786896k 8k 786888k
98362p 1p 98361p
/dev/rz1f 1300312k 8k 1300304k
162539p 1p 162538p
-------------------------------- ---------- ---------- ----------
Total swap partitions: 2 2087208k 16k 2087192k
260901p 2p 260899p
_kdbx_swap_end:
_kdbx_proc_start:
Addr PID PPID PGRP UID NICE SIGCATCH P_SIG Event Flags
=========== ===== ===== ===== ===== ==== ======== ======== ===========
============
k0x1fd28ca0 0 0 0 0 0 00000000 00000000 NULL in sys
k0x0170eca0 1 0 1 0 0 307a62ff 00000000 NULL in
contign pagv
k0x07bc8220 3 1 3 0 0 00004000 00000000 NULL in pagv
k0x07bc8ca0 21 1 21 0 0 00002000 00000000 NULL in pagv
k0x077d0ca0 94 1 94 0 0 60086001 00000000 NULL in pagv
k0x077d1720 96 1 96 0 0 00004001 00000000 NULL in pagv
k0x1d202ca0 263 1 263 0 0 00080628 00000000 NULL in pagv
k0x1d202220 265 1 265 0 0 66006001 00000000 NULL in pagv
k0x1d203720 267 1 267 0 0 00000000 00000000 NULL in pagv
k0x1d1fc220 269 1 269 0 0 00000000 00000000 NULL in pagv
k0x1d1fcca0 337 1 0 0 0 00086000 00000000 NULL in pagv
k0x1d1fd720 378 1 378 0 -1 00004002 00000000 NULL in pagv
k0x07bc9720 402 1 402 0 0 00004002 00000000 NULL in pagv
k0x1dd4b720 409 1 409 0 0 20004002 00000000 NULL in pagv
k0x0786c220 414 1 69 0 -1 60027eff 00000000 NULL in pagv
ctty
k0x077d0220 425 1 425 0 0 40082001 00000000 NULL in pagv
k0x1dd4a220 458 1 458 0 0 00002000 00000000 NULL in pagv
k0x0556f720 486 1 486 0 0 00084007 00000000 NULL in pagv
k0x0556e220 503 1 503 0 0 00004efb 00000000 NULL in pagv
k0x05f70220 509 1 509 0 0 01884003 00000000 NULL in pagv
k0x05f71720 522 1 522 0 0 00084003 00000000 NULL in pagv
k0x05f70ca0 523 509 509 0 0 00084003 00000000 NULL in pagv
k0x1d98e220 537 509 509 0 0 00084003 00000000 NULL in pagv
k0x1d98eca0 538 1 538 0 0 20084003 00000000 NULL in pagv
k0x1d98f720 542 509 509 0 -15 20084003 00000000 NULL in pagv
k0x0170f720 547 1 547 0 0 00000000 00000000 NULL in pagv
ctty
k0x0786d720 549 538 549 0 -2 00004083 00000000 NULL in pagv
k0x1dd4aca0 557 538 557 0 0 20004002 00000000 NULL in pagv
k0x0556eca0 578 557 578 275 0 00084000 00000000 NULL in pagv
k0x0b79cca0 616 1 578 275 0 60085003 00000000 NULL in pagv
k0x0b79d720 617 425 617 0 0 60081000 00000000 NULL in pagv
k0x0b79c220 625 578 625 275 0 00084e8f 00000000 NULL in pagv
k0x0d988220 626 578 578 275 0 00000000 00000000 NULL in pagv
k0x0d988ca0 627 626 578 275 0 00000000 00000000 NULL in pagv
k0x0d989720 628 625 628 275 0 60084003 00000000 NULL in pagv
k0x08fca220 629 628 628 275 0 60087006 00000000 NULL in pagv
k0x08fcb720 630 629 630 275 0 60003aff 00000000 NULL in pagv
ctty
k0x1cee0220 636 630 636 0 0 60083aff 00000000 NULL in pagv
ctty
k0x1cee0ca0 641 616 578 275 0 00000000 00000000 NULL in pagv
k0x1cee1720 642 641 578 275 0 00080002 00000000 NULL in pagv
k0x056ea220 645 642 578 275 0 00080002 00000000 NULL in pagv
k0x056eaca0 647 642 647 275 0 60084003 00000000 NULL in pagv
k0x056eb720 648 647 647 275 0 00004007 00000000 NULL in pagv
k0x04918220 649 648 647 275 0 00004007 00000000 NULL in pagv
k0x08fcaca0 653 642 653 275 0 60084003 00000000 NULL in pagv
k0x04919720 654 653 653 275 0 00000000 00000000 NULL in pagv
k0x06936220 655 625 655 275 0 60084003 00000000 NULL in pagv
k0x06936ca0 656 655 655 275 0 60087006 00000000 NULL in pagv
k0x06937720 657 656 657 275 0 60083aff 00000000 NULL in pagv
ctty
k0x046fa220 661 625 661 275 0 60084003 00000000 NULL in pagv
k0x046faca0 662 661 661 275 0 60087006 00000000 NULL in pagv
k0x046fb720 663 662 663 275 0 60083aff 00000000 NULL in pagv
ctty
k0x06138220 667 625 667 275 0 60084003 00000000 NULL in pagv
k0x06138ca0 668 667 667 275 0 60087006 00000000 NULL in pagv
k0x06139720 669 668 669 275 0 60003aff 00000000 NULL in pagv
ctty
k0x08dbf720 679 625 679 275 0 60084003 00000000 NULL in pagv
k0x04b71720 680 679 679 275 0 60087006 00000000 NULL in pagv
k0x04b70ca0 681 680 681 275 0 60003aff 00000000 NULL in pagv
ctty
k0x05160220 697 669 697 275 0 28089005 00000000 NULL in pagv
ctty xonly
k0x05160ca0 698 697 697 275 0 20009005 00000000 NULL in pagv
ctty xonly
k0x04b70220 720 681 720 275 0 0000068e 00000000 NULL in pagv
ctty
_kdbx_proc_end:
Audit subsystem disabled
No audit data to be saved
#
_crash_data_collection_finished:
Regards,
+---++---++---++---++---++---++---+ TM Digital Equipment Belgium
| || || || || || || | Multivendor Customer Services
| d || i || g || i || t || a || l | Thierry FAIDHERBE
| || || || || || || | DIGITAL Unix Support Team
+---++---++---++---++---++---++---+ Email [email protected]
Phone : +32 2 729 77 44 Fax : +32 2 729 77 65
With DIGITAL Unix, ... You get what you pay for ...
[Posted by WWW Notes gateway]
|