diff options
author | Guo Chao <yan@linux.vnet.ibm.com> | 2013-01-28 21:33:28 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2013-01-28 21:33:28 -0500 |
commit | 41be871f747f64e076b09a68ae82a643e2ffb215 (patch) | |
tree | c56b1a8cfbcbb089813d2497ca10f0c894cff29d /fs/ext4/namei.c | |
parent | 2bbbee2a68a726deeac7da5ae7dd79b00301d6fd (diff) |
ext4: remove useless assignment in dx_probe()
Signed-off-by: Guo Chao <yan@linux.vnet.ibm.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/namei.c')
-rw-r--r-- | fs/ext4/namei.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c index 8bc01a3dcaca..f4b95870870e 100644 --- a/fs/ext4/namei.c +++ b/fs/ext4/namei.c @@ -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, |