diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2010-08-22 21:23:08 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2010-08-22 21:23:08 +0000 |
commit | 1966a949e9c37d6d5c394f2d634f70a80a228d8c (patch) | |
tree | 8c0a879d760f3a7ff8c7d6dc876ac60337f73faa /sys/ntfs/ntfs_ihash.c | |
parent | e332c640366dec097cd0fce713647877e049f841 (diff) |
the upper case table code was a lot more complicated than it needed to be.
Diffstat (limited to 'sys/ntfs/ntfs_ihash.c')
-rw-r--r-- | sys/ntfs/ntfs_ihash.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/ntfs/ntfs_ihash.c b/sys/ntfs/ntfs_ihash.c index db7be3f0173..714b60b912a 100644 --- a/sys/ntfs/ntfs_ihash.c +++ b/sys/ntfs/ntfs_ihash.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ntfs_ihash.c,v 1.8 2010/08/12 04:05:03 tedu Exp $ */ +/* $OpenBSD: ntfs_ihash.c,v 1.9 2010/08/22 21:23:07 tedu Exp $ */ /* $NetBSD: ntfs_ihash.c,v 1.1 2002/12/23 17:38:32 jdolecek Exp $ */ /* @@ -39,17 +39,12 @@ #include <sys/rwlock.h> #include <sys/vnode.h> #include <sys/malloc.h> -#include <sys/proc.h> #include <sys/mount.h> #include <ntfs/ntfs.h> #include <ntfs/ntfs_inode.h> #include <ntfs/ntfs_ihash.h> -#ifdef MALLOC_DEFINE -MALLOC_DEFINE(M_NTFSNTHASH, "NTFS nthash", "NTFS ntnode hash tables"); -#endif - /* * Structures associated with inode cacheing. */ |