K 10 svn:author V 5 gibbs K 8 svn:date V 27 1995-01-05T16:22:17.000000Z K 7 svn:log V 855 Add VNINACT flag. LFS has a habbit of skipping the ufs_inactive procedure. It used to do this by setting a global . Now we set th VNINACT flag in the vnode to force a skip of ufs_inactive. Sorry for missing this file in my last commit folks. Index: vnode.h =================================================================== RCS file: /usr/cvs/src/sys/sys/vnode.h,v retrieving revision 1.14 diff -c -r1.14 vnode.h *** 1.14 1994/11/14 13:51:53 --- vnode.h 1994/12/03 01:06:27 *************** *** 116,121 **** --- 116,122 ---- #define VALIASED 0x0800 /* vnode has an alias */ #define VDIROP 0x1000 /* LFS: vnode is involved in a directory op */ #define VVMIO 0x2000 /* VMIO flag */ + #define VNINACT 0x4000 /* LFS: skip ufs_inactive() in lfs_vunref */ /* * Vnode attributes. A field value of VNOVAL represents a field whose value END