Commit da9e4802 authored by Dan Carpenter's avatar Dan Carpenter Committed by Theodore Ts'o

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: cebe85d5 ("ext4: switch to the new mount api")
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: default avatarLukas Czerner <lczerner@redhat.com>
Link: https://lore.kernel.org/r/20211215114309.GB14552@kiliSigned-off-by: default avatarTheodore Ts'o <tytso@mit.edu>
parent e81c9302
......@@ -2081,7 +2081,7 @@ static void ext4_fc_free(struct fs_context *fc)
int ext4_init_fs_context(struct fs_context *fc)
{
struct xfs_fs_context *ctx;
struct ext4_fs_context *ctx;
ctx = kzalloc(sizeof(struct ext4_fs_context), GFP_KERNEL);
if (!ctx)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment