Explorar o código

ext4: Remove unnecessary casts of private_data

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Joe Perches %!s(int64=15) %!d(string=hai) anos
pai
achega
a271fe8527
Modificáronse 2 ficheiros con 2 adicións e 2 borrados
  1. 1 1
      fs/ext4/dir.c
  2. 1 1
      fs/ext4/mballoc.c

+ 1 - 1
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 */

+ 1 - 1
fs/ext4/mballoc.c

@@ -2219,7 +2219,7 @@ static int ext4_mb_seq_groups_open(struct inode *inode, struct file *file)
 
 	rc = seq_open(file, &ext4_mb_seq_groups_ops);
 	if (rc == 0) {
-		struct seq_file *m = (struct seq_file *)file->private_data;
+		struct seq_file *m = file->private_data;
 		m->private = sb;
 	}
 	return rc;