----- Original Message -----
From: "Alfred Perlstein" <[EMAIL PROTECTED]>
To: "Michael Scheidell" <[EMAIL PROTECTED]>
Cc: "David Malone" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>;
<[EMAIL PROTECTED]>
Sent: Thursday, December 27, 2001 3:31 PM
Subject: Re: userland program panics freebsd 4.3


> * Michael Scheidell <[EMAIL PROTECTED]> [011227 14:26] wrote:
> > Just an update:
> > userland probram panic's FBSD 4.3-REL, FBSD 4.4-REL and FBSD 4.4-STABLE.
> > its not hardware (unless two completly identicle systems have some type
of
> > chip problem not known yet)
>
> Can you provide this program or a kernel stack trace from this
> crash please?
>
>
http://www.freebsd.org/doc/en_US.ISO8859-1/books/developers-handbook/kerneld
ebug.html

same place as before:

0  fstatfs (p=0xce1bd260, uap=0xce216f80) at ../../kern/vfs_syscalls.c:684
684             error = VFS_STATFS(mp, sp, p);
(kgdb) lines
Undefined command: "lines".  Try "help".
(kgdb) list
679
680             if ((error = getvnode(p->p_fd, SCARG(uap, fd), &fp)) != 0)
681                     return (error);
682             mp = ((struct vnode *)fp->f_data)->v_mount;
683             sp = &mp->mnt_stat;
684             error = VFS_STATFS(mp, sp, p);
685             if (error)
686                     return (error);
687             sp->f_flags = mp->mnt_flag & MNT_VISFLAGMASK;
688             if (suser_xxx(p->p_ucred, 0, 0)) {
(kgdb) print mp
$1 = (struct mount *) 0x28121604
(kgdb) print sp
$2 = (struct statfs *) 0x7
(kgdb) print p
$3 = (struct proc *) 0x8000
(kgdb) print sp->f_flags
Cannot access memory at address 0x37.




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message

Reply via email to