|
@@ -744,9 +744,13 @@ struct inode {
|
|
|
|
|
|
spinlock_t i_lock; /* i_blocks, i_bytes, maybe i_size */
|
|
spinlock_t i_lock; /* i_blocks, i_bytes, maybe i_size */
|
|
unsigned int i_flags;
|
|
unsigned int i_flags;
|
|
|
|
+ unsigned int i_state;
|
|
|
|
+#ifdef CONFIG_SECURITY
|
|
|
|
+ void *i_security;
|
|
|
|
+#endif
|
|
struct mutex i_mutex;
|
|
struct mutex i_mutex;
|
|
|
|
|
|
- unsigned long i_state;
|
|
|
|
|
|
+
|
|
unsigned long dirtied_when; /* jiffies of first dirtying */
|
|
unsigned long dirtied_when; /* jiffies of first dirtying */
|
|
|
|
|
|
struct hlist_node i_hash;
|
|
struct hlist_node i_hash;
|
|
@@ -798,9 +802,6 @@ struct inode {
|
|
atomic_t i_readcount; /* struct files open RO */
|
|
atomic_t i_readcount; /* struct files open RO */
|
|
#endif
|
|
#endif
|
|
atomic_t i_writecount;
|
|
atomic_t i_writecount;
|
|
-#ifdef CONFIG_SECURITY
|
|
|
|
- void *i_security;
|
|
|
|
-#endif
|
|
|
|
#ifdef CONFIG_FS_POSIX_ACL
|
|
#ifdef CONFIG_FS_POSIX_ACL
|
|
struct posix_acl *i_acl;
|
|
struct posix_acl *i_acl;
|
|
struct posix_acl *i_default_acl;
|
|
struct posix_acl *i_default_acl;
|