Commit 88e3e05d authored by Hans Reiser's avatar Hans Reiser Committed by Linus Torvalds

[PATCH] reiserfs patchset, patch 5 of 9 05-kernel-reiserfs_fs_h-offset_v2.diff

05-kernel-reiserfs_fs_h-offset_v2.diff
    Convert erroneous le64_to_cpu to cpu_to_le64
parent a64b7007
...@@ -381,7 +381,7 @@ static inline void set_offset_v2_k_type( struct offset_v2 *v2, int type ) ...@@ -381,7 +381,7 @@ static inline void set_offset_v2_k_type( struct offset_v2 *v2, int type )
offset_v2_esafe_overlay *tmp = (offset_v2_esafe_overlay *)v2; offset_v2_esafe_overlay *tmp = (offset_v2_esafe_overlay *)v2;
tmp->linear = le64_to_cpu(tmp->linear); tmp->linear = le64_to_cpu(tmp->linear);
tmp->offset_v2.k_type = type; tmp->offset_v2.k_type = type;
tmp->linear = le64_to_cpu(tmp->linear); tmp->linear = cpu_to_le64(tmp->linear);
} }
static inline loff_t offset_v2_k_offset( const struct offset_v2 *v2 ) static inline loff_t offset_v2_k_offset( const struct offset_v2 *v2 )
...@@ -395,7 +395,7 @@ static inline void set_offset_v2_k_offset( struct offset_v2 *v2, loff_t offset ) ...@@ -395,7 +395,7 @@ static inline void set_offset_v2_k_offset( struct offset_v2 *v2, loff_t offset )
offset_v2_esafe_overlay *tmp = (offset_v2_esafe_overlay *)v2; offset_v2_esafe_overlay *tmp = (offset_v2_esafe_overlay *)v2;
tmp->linear = le64_to_cpu(tmp->linear); tmp->linear = le64_to_cpu(tmp->linear);
tmp->offset_v2.k_offset = offset; tmp->offset_v2.k_offset = offset;
tmp->linear = le64_to_cpu(tmp->linear); tmp->linear = cpu_to_le64(tmp->linear);
} }
#else #else
# define offset_v2_k_type(v2) ((v2)->k_type) # define offset_v2_k_type(v2) ((v2)->k_type)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment