mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-06 13:09:50 +00:00
Added a new flag "VAGE" to indicate that the vnode should go on the head
of the free list.
This commit is contained in:
parent
acc835fd3f
commit
79f7a9e1ef
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=6946
@ -31,7 +31,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)vnode.h 8.7 (Berkeley) 2/4/94
|
||||
* $Id: vnode.h,v 1.14 1994/11/14 13:51:53 bde Exp $
|
||||
* $Id: vnode.h,v 1.15 1995/01/05 16:22:17 gibbs Exp $
|
||||
*/
|
||||
|
||||
#ifndef _SYS_VNODE_H_
|
||||
@ -117,6 +117,7 @@ struct vnode {
|
||||
#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 */
|
||||
#define VAGE 0x8000 /* Insert vnode at head of free list */
|
||||
|
||||
/*
|
||||
* Vnode attributes. A field value of VNOVAL represents a field whose value
|
||||
|
Loading…
Reference in New Issue
Block a user