Bring FBSD 7.X client back to life
[openafs.git] / src / afs / FBSD / osi_vnodeops.c
index 5a9811b..99a3d71 100644 (file)
@@ -890,12 +890,8 @@ afs_vop_getpages(struct vop_getpages_args *ap)
             * Read operation filled a partial page.
             */
            m->valid = 0;
-           vm_page_set_valid(m, 0, size - toff);
-#ifndef AFS_FBSD80_ENV
-           vm_page_undirty(m);
-#else
+           vm_page_set_validclean(m, 0, size - toff);
            KASSERT(m->dirty == 0, ("afs_getpages: page %p is dirty", m));
-#endif
        }
 
        if (i != ap->a_reqpage) {
@@ -1309,7 +1305,7 @@ afs_vop_mkdir(ap)
     struct vcache *vcp;
 #ifndef AFS_FBSD80_ENV
     struct thread *p = ap->a_cnp->cn_thread;
-#end
+#endif
 
     GETNAME();
 #ifdef DIAGNOSTIC
@@ -1498,6 +1494,12 @@ afs_vop_reclaim(struct vop_reclaim_args *ap)
        ObtainWriteLock(&afs_xvcache, 901);
     /* reclaim the vnode and the in-memory vcache, but keep the on-disk vcache */
     code = afs_FlushVCache(avc, &slept);
+
+    if (avc->f.states & CVInit) {
+       avc->f.states &= ~CVInit;
+       afs_osi_Wakeup(&avc->f.states);
+    }
+
     if (!haveVlock)
        ReleaseWriteLock(&afs_xvcache);
     if (!haveGlock)