]> git.baikalelectronics.ru Git - kernel.git/commit
Fix regression due to "fs: move binfmt_misc sysctl to its own file"
authorDomenico Andreoli <domenico.andreoli@linux.com>
Wed, 9 Feb 2022 07:49:20 +0000 (08:49 +0100)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 9 Feb 2022 17:50:02 +0000 (09:50 -0800)
commitbd6ea65287c7fe6146f29de407ca8e07e2d41e1f
treed624dac184fc8e660de3fa556f68509a52f09170
parent07d61d9b29034ea275419cf24f782bfbf285bbe5
Fix regression due to "fs: move binfmt_misc sysctl to its own file"

Commit fc3b58422b84 ("fs: move binfmt_misc sysctl to its own file") did
not go unnoticed, binfmt-support stopped to work on my Debian system
since v5.17-rc2 (did not check with -rc1).

The existance of the /proc/sys/fs/binfmt_misc is a precondition for
attempting to mount the binfmt_misc fs, which in turn triggers the
autoload of the binfmt_misc module.  Without it, no module is loaded and
no binfmt is available at boot.

Building as built-in or manually loading the module and mounting the fs
works fine, it's therefore only a matter of interaction with user-space.
I could try to improve the Debian systemd configuration but I can't say
anything about the other distributions.

This patch restores a working system right after boot.

Fixes: fc3b58422b84 ("fs: move binfmt_misc sysctl to its own file")
Signed-off-by: Domenico Andreoli <domenico.andreoli@linux.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Luis Chamberlain <mcgrof@kernel.org>
Reviewed-by: Tong Zhang <ztong0001@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/binfmt_misc.c
fs/file_table.c