diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-04-17 16:11:25 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-05-29 23:28:38 -0400 |
commit | 6ce2bbba5266c1dd5c27dd8af1887ed8ca564919 (patch) | |
tree | 0c51cbe77d4892b42f3078aaa0f63ded79942448 /fs | |
parent | 2b9f1cc29ba0e56089fe04501ec6d3b49eee3c3e (diff) | |
download | linux-3.10-6ce2bbba5266c1dd5c27dd8af1887ed8ca564919.tar.gz linux-3.10-6ce2bbba5266c1dd5c27dd8af1887ed8ca564919.tar.bz2 linux-3.10-6ce2bbba5266c1dd5c27dd8af1887ed8ca564919.zip |
hpfs: annotate struct anode
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/hpfs/hpfs.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/hpfs/hpfs.h b/fs/hpfs/hpfs.h index b66c8b21dce..f0dc1093033 100644 --- a/fs/hpfs/hpfs.h +++ b/fs/hpfs/hpfs.h @@ -489,9 +489,9 @@ static inline bool fnode_is_dir(struct fnode *p) struct anode { - u32 magic; /* 37e4 0aae */ - anode_secno self; /* pointer to this anode */ - secno up; /* parent anode or fnode */ + __le32 magic; /* 37e4 0aae */ + __le32 self; /* pointer to this anode */ + __le32 up; /* parent anode or fnode */ struct bplus_header btree; /* b+tree, 40 extents or 60 subtrees */ union { @@ -499,7 +499,7 @@ struct anode struct bplus_internal_node internal[60]; } u; - u32 fill[3]; /* unused */ + __le32 fill[3]; /* unused */ }; |