diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-07-26 12:47:03 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-26 14:11:58 -0400 |
commit | 87588dd6663b6f306f03f2deaec0d0fd3f0cb26e (patch) | |
tree | 85fd6c0107ec527087ea285766cec4bf2f07bffa /fs/reiserfs | |
parent | 60262e58e305f27d05eefeda172117521514f364 (diff) |
more reiserfs endianness annotations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/reiserfs')
-rw-r--r-- | fs/reiserfs/stree.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/reiserfs/stree.c b/fs/reiserfs/stree.c index b6f12593c39d..981027d1187b 100644 --- a/fs/reiserfs/stree.c +++ b/fs/reiserfs/stree.c | |||
@@ -1042,7 +1042,8 @@ static char prepare_for_delete_or_cut(struct reiserfs_transaction_handle *th, st | |||
1042 | pos = I_UNFM_NUM(&s_ih); | 1042 | pos = I_UNFM_NUM(&s_ih); |
1043 | 1043 | ||
1044 | while (le_ih_k_offset (&s_ih) + (pos - 1) * blk_size > n_new_file_length) { | 1044 | while (le_ih_k_offset (&s_ih) + (pos - 1) * blk_size > n_new_file_length) { |
1045 | __u32 *unfm, block; | 1045 | __le32 *unfm; |
1046 | __u32 block; | ||
1046 | 1047 | ||
1047 | /* Each unformatted block deletion may involve one additional | 1048 | /* Each unformatted block deletion may involve one additional |
1048 | * bitmap block into the transaction, thereby the initial | 1049 | * bitmap block into the transaction, thereby the initial |
@@ -1052,7 +1053,7 @@ static char prepare_for_delete_or_cut(struct reiserfs_transaction_handle *th, st | |||
1052 | break; | 1053 | break; |
1053 | } | 1054 | } |
1054 | 1055 | ||
1055 | unfm = (__u32 *)B_I_PITEM(p_s_bh, &s_ih) + pos - 1; | 1056 | unfm = (__le32 *)B_I_PITEM(p_s_bh, &s_ih) + pos - 1; |
1056 | block = get_block_num(unfm, 0); | 1057 | block = get_block_num(unfm, 0); |
1057 | 1058 | ||
1058 | if (block != 0) { | 1059 | if (block != 0) { |