Skip to content

Commit

Permalink
ext4: remove useless assignment in dx_probe()
Browse files Browse the repository at this point in the history
Signed-off-by: Guo Chao <yan@linux.vnet.ibm.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
  • Loading branch information
Guo Chao authored and Theodore Ts'o committed Jan 29, 2013
1 parent 2bbbee2 commit 41be871
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/ext4/namei.c
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ dx_probe(const struct qstr *d_name, struct inode *dir,
*err = ERR_BAD_DX_DIR;
goto fail2;
}
at = entries = ((struct dx_node *) bh->b_data)->entries;
entries = ((struct dx_node *) bh->b_data)->entries;

if (!buffer_verified(bh) &&
!ext4_dx_csum_verify(dir,
Expand Down

0 comments on commit 41be871

Please sign in to comment.