diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2024-11-02 10:25:04 +0100 |
---|---|---|
committer | Kees Cook <kees@kernel.org> | 2024-11-29 19:35:58 -0800 |
commit | b6709dcd87ac85d56e7cd574a7b21f3a8727d942 (patch) | |
tree | da45aa14f3cefa059eb9ec2a2475287f70db2a1c /fs/binfmt_misc.c | |
parent | 136a78710f33e91e28ff4bd29e256ca27f87631f (diff) |
fs: binfmt: Fix a typo
A 't' is missing in "binfm_misc".
Add it.
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Acked-by: Eric W. Biederman <ebiederm@xmission.com>
Link: https://lore.kernel.org/r/34b8c52b67934b293a67558a9a486aea7ba08951.1730539498.git.christophe.jaillet@wanadoo.fr
Signed-off-by: Kees Cook <kees@kernel.org>
Diffstat (limited to 'fs/binfmt_misc.c')
-rw-r--r-- | fs/binfmt_misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/binfmt_misc.c b/fs/binfmt_misc.c index 31660d8cc2c6..df6a229b5e62 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); |