diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2005-04-16 16:28:43 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2005-04-16 16:28:43 +0000 |
commit | 0bc20d81be6fac17b2075d34e248707198ef9605 (patch) | |
tree | 23dee2e612be5e97328ec1805e76d6f51874a028 /sys/ntfs/ntfs_vnops.c | |
parent | b1464766d2da8017c7e207ca9a6c51709be42d3c (diff) |
comment out some code which is causing ntfs panics due
to the fact ntfs uses the generic locking functions which
do not lock anything right now.
ok pedro@
Diffstat (limited to 'sys/ntfs/ntfs_vnops.c')
-rw-r--r-- | sys/ntfs/ntfs_vnops.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/ntfs/ntfs_vnops.c b/sys/ntfs/ntfs_vnops.c index 90fdd225bfb..383dfbf2fe6 100644 --- a/sys/ntfs/ntfs_vnops.c +++ b/sys/ntfs/ntfs_vnops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ntfs_vnops.c,v 1.5 2005/03/08 15:45:20 pat Exp $ */ +/* $OpenBSD: ntfs_vnops.c,v 1.6 2005/04/16 16:28:42 joris Exp $ */ /* $NetBSD: ntfs_vnops.c,v 1.6 2003/04/10 21:57:26 jdolecek Exp $ */ /* @@ -332,9 +332,11 @@ ntfs_print(ap) printf("tag VT_NTFS, ino %u, flag %#x, usecount %d, nlink %ld\n", ip->i_number, ip->i_flag, ip->i_usecount, ip->i_nlink); +#if 0 printf(" "); lockmgr_printinfo(ap->a_vp->v_vnlock); printf("\n"); +#endif return (0); } |