aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4/dir.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2010-07-27 11:56:04 -0400
committerTheodore Ts'o <tytso@mit.edu>2010-07-27 11:56:04 -0400
commita271fe8527fe9637bdd82c97123b1356940dd84b (patch)
tree07a950c18ad1c2391d18272d6154d23c83b71a8e /fs/ext4/dir.c
parentext4: fix potential NULL dereference while tracing (diff)
downloadlinux-dev-a271fe8527fe9637bdd82c97123b1356940dd84b.tar.xz
linux-dev-a271fe8527fe9637bdd82c97123b1356940dd84b.zip
ext4: Remove unnecessary casts of private_data
Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/dir.c')
-rw-r--r--fs/ext4/dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/dir.c b/fs/ext4/dir.c
index 62e8af04ed1e..374510f72baa 100644
--- a/fs/ext4/dir.c
+++ b/fs/ext4/dir.c
@@ -344,7 +344,7 @@ int ext4_htree_store_dirent(struct file *dir_file, __u32 hash,
struct dir_private_info *info;
int len;
- info = (struct dir_private_info *) dir_file->private_data;
+ info = dir_file->private_data;
p = &info->root.rb_node;
/* Create and allocate the fname structure */