diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2021-12-15 14:43:09 +0300 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2022-01-10 13:25:56 -0500 |
commit | da9e480212582b336b97848c69fdd4ac8860065b (patch) | |
tree | 8e6b48f9ad532d873e281128e0d373adb0c65f0c | |
parent | e81c9302a6c3c008f5c30beb73b38adb0170ff2d (diff) | |
download | linux-da9e480212582b336b97848c69fdd4ac8860065b.tar.bz2 |
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>
-rw-r--r-- | fs/ext4/super.c | 2 |
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) |