aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/hpfs/hpfs.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/hpfs/hpfs.h b/fs/hpfs/hpfs.h
index b66c8b21dcec..f0dc10930332 100644
--- a/fs/hpfs/hpfs.h
+++ b/fs/hpfs/hpfs.h
@@ -489,9 +489,9 @@ static inline bool fnode_is_dir(struct fnode *p)
489 489
490struct anode 490struct anode
491{ 491{
492 u32 magic; /* 37e4 0aae */ 492 __le32 magic; /* 37e4 0aae */
493 anode_secno self; /* pointer to this anode */ 493 __le32 self; /* pointer to this anode */
494 secno up; /* parent anode or fnode */ 494 __le32 up; /* parent anode or fnode */
495 495
496 struct bplus_header btree; /* b+tree, 40 extents or 60 subtrees */ 496 struct bplus_header btree; /* b+tree, 40 extents or 60 subtrees */
497 union { 497 union {
@@ -499,7 +499,7 @@ struct anode
499 struct bplus_internal_node internal[60]; 499 struct bplus_internal_node internal[60];
500 } u; 500 } u;
501 501
502 u32 fill[3]; /* unused */ 502 __le32 fill[3]; /* unused */
503}; 503};
504 504
505 505