In smbfs_inactive(), only invalidate the node's attribute cache if we

had to send a file close request to the server.
This commit is contained in:
Tim J. Robbins 2004-01-04 00:57:22 +00:00
parent 51362c2d8a
commit 208a7a97a3

View File

@ -358,8 +358,8 @@ smbfs_inactive(ap)
}
}
np->n_flag &= ~NOPEN;
smbfs_attr_cacheremove(vp);
}
smbfs_attr_cacheremove(vp);
VOP_UNLOCK(vp, 0, td);
return (0);
}