Module Name: src Committed By: pooka Date: Thu May 27 23:40:12 UTC 2010
Modified Files: src/sys/fs/sysvbfs: sysvbfs.h sysvbfs_vnops.c Log Message: Mark files removed in the in-memory structure. This allows us to do two things: 1) properly set "recycle?" in inactive 2) easily check if we are renaming a removed vnode. without the check, it was possible to enter a dirent in the file system for a removed (and hence scheduled to be vcleaned) vnode. this would lead to the succesful vget() of a clean vnode. the use of the cleaned vnode was, however, less succesful, except for purposes of crashing. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/sys/fs/sysvbfs/sysvbfs.h cvs rdiff -u -r1.29 -r1.30 src/sys/fs/sysvbfs/sysvbfs_vnops.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.