mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04: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
1 changed files with 2 additions and 1 deletions
|
|
@ -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 a new issue