--- src/sys/vfs/ufs/ufs_lookup.c 2004/07/18 19:43:48 1.13 +++ src/sys/vfs/ufs/ufs_lookup.c 2004/09/30 19:00:25 1.14 @@ -451,7 +451,7 @@ notfound: * Insert name into cache (as non-existent) if appropriate. */ if ((cnp->cn_flags & CNP_MAKEENTRY) && nameiop != NAMEI_CREATE) - cache_enter(vdp, NCPNULL, *vpp, cnp); + cache_enter(vdp, *vpp, cnp); return (ENOENT); found: @@ -622,7 +622,7 @@ found: * Insert name into cache if appropriate. */ if (cnp->cn_flags & CNP_MAKEENTRY) - cache_enter(vdp, NCPNULL, *vpp, cnp); + cache_enter(vdp, *vpp, cnp); return (0); }