From daae8eb2dd6c95727946ce9f74f970205e52dadd Mon Sep 17 00:00:00 2001 From: Venkatesh Srinivas Date: Tue, 5 Apr 2011 19:08:14 -0700 Subject: [PATCH] kernel -- Remove unused vfscache structure. --- sys/sys/vfscache.h | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/sys/sys/vfscache.h b/sys/sys/vfscache.h index bccc26ffef..4f6cb10e57 100644 --- a/sys/sys/vfscache.h +++ b/sys/sys/vfscache.h @@ -162,28 +162,5 @@ struct vattr { #define VA_GID_UUID_VALID 0x0008 /* uuid fields also populated */ #define VA_FSID_UUID_VALID 0x0010 /* uuid fields also populated */ -#if 0 /* NOT YET */ - -/* - * The vfscache structure holds the system cacheable elements associated with - * a file or device. This structure is most typically embedded within a - * vnode. - */ -struct vfscache { - int fc_flags; - struct vm_object *fc_object; /* cached data */ - struct vattr fc_attr; /* cached attribute data */ -}; - -#define FCF_ATTR_GOOD 0x00000001 /* FUTURE */ -#define FCF_ATTR_ATIME 0x00010000 /* FUTURE attr modifications */ -#define FCF_ATTR_MTIME 0x00020000 /* FUTURE attr modifications */ -#define FCF_ATTR_CTIME 0x00040000 /* FUTURE attr modifications */ -#define FCF_ATTR_UID 0x00080000 /* FUTURE attr modifications */ -#define FCF_ATTR_GID 0x00100000 /* FUTURE attr modifications */ -#define FCF_ATTR_SIZE 0x00200000 /* FUTURE attr modifications */ - -#endif - #endif -- 2.41.0