Skip to content

Commit da9e480

Browse files
Dan Carpentertytso
authored andcommitted
ext4: fix a copy and paste typo
This was obviously supposed to be an ext4 struct, not xfs. GCC doesn't care either way so it doesn't affect the build or runtime. Fixes: cebe85d ("ext4: switch to the new mount api") Signed-off-by: Dan Carpenter <[email protected]> Reviewed-by: Lukas Czerner <[email protected]> Link: https://lore.kernel.org/r/20211215114309.GB14552@kili Signed-off-by: Theodore Ts'o <[email protected]>
1 parent e81c930 commit da9e480

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/ext4/super.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2081,7 +2081,7 @@ static void ext4_fc_free(struct fs_context *fc)
20812081

20822082
int ext4_init_fs_context(struct fs_context *fc)
20832083
{
2084-
struct xfs_fs_context *ctx;
2084+
struct ext4_fs_context *ctx;
20852085

20862086
ctx = kzalloc(sizeof(struct ext4_fs_context), GFP_KERNEL);
20872087
if (!ctx)

0 commit comments

Comments
 (0)