Fixed and improved comments

N2009_11_14_FIXES
jpandre 2007-09-28 06:59:53 +00:00
parent b823389638
commit 7006a9452c
1 changed files with 14 additions and 2 deletions

View File

@ -39,7 +39,7 @@ struct MAPPING {
};
/*
* Security context, needed by most security functions
* Entry in the security cache
*/
struct SECURITY_ENTRY {
@ -49,6 +49,10 @@ struct SECURITY_ENTRY {
unsigned int valid:1;
} ;
/*
* Header of the security cache
*/
struct SECURITY_HEAD {
int first;
int last;
@ -58,11 +62,19 @@ struct SECURITY_HEAD {
unsigned long writes;
} ;
/*
* The whole security cache
*/
struct SECURITY_CACHE {
struct SECURITY_HEAD head;
struct SECURITY_ENTRY cachetable[1];
struct SECURITY_ENTRY cachetable[1]; /* array of variable size */
} ;
/*
* Security context, needed by most security functions
*/
struct SECURITY_CONTEXT {
ntfs_volume *vol;
struct MAPPING *usermapping;