From: Christophe JAILLET Date: Sat, 2 Nov 2024 09:25:04 +0000 (+0100) Subject: fs: binfmt: Fix a typo X-Git-Tag: v6.14-rc1~206^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b6709dcd87ac85d56e7cd574a7b21f3a8727d942;p=thirdparty%2Fkernel%2Flinux.git fs: binfmt: Fix a typo A 't' is missing in "binfm_misc". Add it. Signed-off-by: Christophe JAILLET Acked-by: Eric W. Biederman Link: https://lore.kernel.org/r/34b8c52b67934b293a67558a9a486aea7ba08951.1730539498.git.christophe.jaillet@wanadoo.fr Signed-off-by: Kees Cook --- diff --git a/fs/binfmt_misc.c b/fs/binfmt_misc.c index 31660d8cc2c61..df6a229b5e62e 100644 --- a/fs/binfmt_misc.c +++ b/fs/binfmt_misc.c @@ -998,7 +998,7 @@ static int bm_fill_super(struct super_block *sb, struct fs_context *fc) /* * If it turns out that most user namespaces actually want to * register their own binary type handler and therefore all - * create their own separate binfm_misc mounts we should + * create their own separate binfmt_misc mounts we should * consider turning this into a kmem cache. */ misc = kzalloc(sizeof(struct binfmt_misc), GFP_KERNEL);