This is a discussion on double cache purges within the mailing.openbsd.tech forums, part of the OpenBSD category; --> hi, currently all our filesystems that use the caching facility already purge the vnode on VOP_RECLAIM(), so there's no ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| hi, currently all our filesystems that use the caching facility already purge the vnode on VOP_RECLAIM(), so there's no need for vclean() to do it a second time. -p. Index: vfs_subr.c ================================================== ================= RCS file: /cvs/src/sys/kern/vfs_subr.c,v retrieving revision 1.103 diff -u -r1.103 vfs_subr.c --- vfs_subr.c 4 Aug 2004 20:36:27 -0000 1.103 +++ vfs_subr.c 4 Oct 2004 12:17:02 -0000 @@ -1072,7 +1072,6 @@ simple_unlock(&vp->v_interlock); } - cache_purge(vp); /* * Done with purge, notify sleepers of the grim news. |