From: Alexey Dobriyan Date: Thu, 1 Jul 2021 01:56:46 +0000 (-0700) Subject: exec: remove checks in __register_bimfmt() X-Git-Tag: v5.14-rc1~107^2~10 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=bae7702a17e9a29d90a997c266296b44d7b087f0;p=linux-block.git exec: remove checks in __register_bimfmt() Delete NULL check, all callers pass valid pointer. Delete ->load_binary check -- failure to provide hook in a custom module will be very noticeable at the very first execve call. Link: https://lkml.kernel.org/r/YK1Gy1qXaLAR+tPl@localhost.localdomain Signed-off-by: Alexey Dobriyan Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/exec.c b/fs/exec.c index 18594f11c31f..379afcf5d106 100644 --- a/fs/exec.c +++ b/fs/exec.c @@ -84,9 +84,6 @@ static DEFINE_RWLOCK(binfmt_lock); void __register_binfmt(struct linux_binfmt * fmt, int insert) { - BUG_ON(!fmt); - if (WARN_ON(!fmt->load_binary)) - return; write_lock(&binfmt_lock); insert ? list_add(&fmt->lh, &formats) : list_add_tail(&fmt->lh, &formats);