diff options
author | Patrick Latifi <pat@cvs.openbsd.org> | 2005-03-08 15:45:21 +0000 |
---|---|---|
committer | Patrick Latifi <pat@cvs.openbsd.org> | 2005-03-08 15:45:21 +0000 |
commit | dc221260f4faebb6e04ad8c8f245e9dd6ec6bc54 (patch) | |
tree | 788d6cfc58616d2b6bc276538598a421b05b1766 /sys/ntfs/ntfs_vfsops.c | |
parent | a31a4e07626bf10eecbcff55d136fd3e7550e65f (diff) |
fix a page fault that occurs when a reclaimed vnode is then reused.
from FreeBSD
ok pedro tedu miod, tested by millert and myself
Diffstat (limited to 'sys/ntfs/ntfs_vfsops.c')
-rw-r--r-- | sys/ntfs/ntfs_vfsops.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/ntfs/ntfs_vfsops.c b/sys/ntfs/ntfs_vfsops.c index dd3a025b337..5423e75c0d1 100644 --- a/sys/ntfs/ntfs_vfsops.c +++ b/sys/ntfs/ntfs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ntfs_vfsops.c,v 1.7 2005/02/01 11:29:59 pedro Exp $ */ +/* $OpenBSD: ntfs_vfsops.c,v 1.8 2005/03/08 15:45:20 pat Exp $ */ /* $NetBSD: ntfs_vfsops.c,v 1.7 2003/04/24 07:50:19 christos Exp $ */ /*- @@ -1122,7 +1122,6 @@ ntfs_vgetex( #if defined(__FreeBSD__) || defined(__NetBSD__) genfs_node_init(vp, &ntfs_genfsops); #endif - VREF(ip->i_devvp); *vpp = vp; return (0); } |