aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4/super.c
diff options
context:
space:
mode:
authorDan Carpenter <dan.carpenter@oracle.com>2021-12-15 14:43:09 +0300
committerTheodore Ts'o <tytso@mit.edu>2022-01-10 13:25:56 -0500
commitda9e480212582b336b97848c69fdd4ac8860065b (patch)
tree8e6b48f9ad532d873e281128e0d373adb0c65f0c /fs/ext4/super.c
parentext4: set csum seed in tmp inode while migrating to extents (diff)
downloadlinux-dev-da9e480212582b336b97848c69fdd4ac8860065b.tar.xz
linux-dev-da9e480212582b336b97848c69fdd4ac8860065b.zip
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: cebe85d570cf ("ext4: switch to the new mount api") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Reviewed-by: Lukas Czerner <lczerner@redhat.com> Link: https://lore.kernel.org/r/20211215114309.GB14552@kili Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to '')
-rw-r--r--fs/ext4/super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index 806ce0893322..9a936ecbaa3b 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -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)