Re: panic in ufs_extattr_uepm_destroy()

2000-10-06 Thread Robert Watson
On Thu, 5 Oct 2000, Wesley Morgan wrote: I'm getting a panic in ufs_extattr_uepm_destroy() because in ffs_vfsops.c it is being called (line 788) with ump NULL: ufs_extattr_uepm_destroy(ump-um_extattr); Of course disabling FFS_EXTATTR gets rid of this:) Hmm. I added these changes

Re: panic in ufs_extattr_uepm_destroy()

2000-10-06 Thread David O'Brien
On Fri, Oct 06, 2000 at 09:41:29AM -0400, Robert Watson wrote: Index: ffs_vfsops.c === RCS file: /home/ncvs/src/sys/ufs/ffs/ffs_vfsops.c,v retrieving revision 1.129 diff -u -r1.129 ffs_vfsops.c --- ffs_vfsops.c 2000/10/04

Re: panic in ufs_extattr_uepm_destroy()

2000-10-06 Thread Robert Watson
On Fri, 6 Oct 2000, David O'Brien wrote: This has a KNF style problem. The line you remove should stay and "ump = VFSTOUFS(mp);" added. Well, either way, it has to be moved further up in the function or you dereference the NULL pointer. Bruce also pointed out the style problem, and I'll

panic in ufs_extattr_uepm_destroy()

2000-10-05 Thread Wesley Morgan
I'm getting a panic in ufs_extattr_uepm_destroy() because in ffs_vfsops.c it is being called (line 788) with ump NULL: ufs_extattr_uepm_destroy(ump-um_extattr); Of course disabling FFS_EXTATTR gets rid