diff options
| author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2008-04-19 12:17:29 -0400 |
|---|---|---|
| committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-04-19 12:17:29 -0400 |
| commit | adf6d34e460387ee3e8f1e1875d52bff51212c7d (patch) | |
| tree | 88ef100143e6184103a608f82dfd232bf6376eaf /fs/reiserfs/fix_node.c | |
| parent | d1964dab60ce7c104dd21590e987a8787db18051 (diff) | |
| parent | 3760d31f11bfbd0ead9eaeb8573e0602437a9d7c (diff) | |
Merge branch 'omap2-upstream' into devel
Diffstat (limited to 'fs/reiserfs/fix_node.c')
| -rw-r--r-- | fs/reiserfs/fix_node.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/fs/reiserfs/fix_node.c b/fs/reiserfs/fix_node.c index 0ee35c6c9b72..07d05e0842b7 100644 --- a/fs/reiserfs/fix_node.c +++ b/fs/reiserfs/fix_node.c | |||
| @@ -153,7 +153,7 @@ static void create_virtual_node(struct tree_balance *tb, int h) | |||
| 153 | if (vn->vn_mode == M_INSERT) { | 153 | if (vn->vn_mode == M_INSERT) { |
| 154 | struct virtual_item *vi = vn->vn_vi + vn->vn_affected_item_num; | 154 | struct virtual_item *vi = vn->vn_vi + vn->vn_affected_item_num; |
| 155 | 155 | ||
| 156 | RFALSE(vn->vn_ins_ih == 0, | 156 | RFALSE(vn->vn_ins_ih == NULL, |
| 157 | "vs-8040: item header of inserted item is not specified"); | 157 | "vs-8040: item header of inserted item is not specified"); |
| 158 | vi->vi_item_len = tb->insert_size[0]; | 158 | vi->vi_item_len = tb->insert_size[0]; |
| 159 | vi->vi_ih = vn->vn_ins_ih; | 159 | vi->vi_ih = vn->vn_ins_ih; |
| @@ -857,7 +857,8 @@ static int get_lfree(struct tree_balance *tb, int h) | |||
| 857 | struct buffer_head *l, *f; | 857 | struct buffer_head *l, *f; |
| 858 | int order; | 858 | int order; |
| 859 | 859 | ||
| 860 | if ((f = PATH_H_PPARENT(tb->tb_path, h)) == 0 || (l = tb->FL[h]) == 0) | 860 | if ((f = PATH_H_PPARENT(tb->tb_path, h)) == NULL || |
| 861 | (l = tb->FL[h]) == NULL) | ||
| 861 | return 0; | 862 | return 0; |
| 862 | 863 | ||
| 863 | if (f == l) | 864 | if (f == l) |
| @@ -878,7 +879,8 @@ static int get_rfree(struct tree_balance *tb, int h) | |||
| 878 | struct buffer_head *r, *f; | 879 | struct buffer_head *r, *f; |
| 879 | int order; | 880 | int order; |
| 880 | 881 | ||
| 881 | if ((f = PATH_H_PPARENT(tb->tb_path, h)) == 0 || (r = tb->FR[h]) == 0) | 882 | if ((f = PATH_H_PPARENT(tb->tb_path, h)) == NULL || |
| 883 | (r = tb->FR[h]) == NULL) | ||
| 882 | return 0; | 884 | return 0; |
| 883 | 885 | ||
| 884 | if (f == r) | 886 | if (f == r) |
