https://github.com/torvalds/linux
Revision a3580ac9b7a394a7d780448ba75cc5348d8a9e04 authored by Luis Chamberlain on 15 February 2022, 02:08:28 UTC, committed by Linus Torvalds on 17 February 2022, 18:23:19 UTC
Commit b42bc9a3c511 ("Fix regression due to "fs: move binfmt_misc sysctl
to its own file") fixed a regression, however it failed to add a
kmemleak_not_leak().

Fixes: b42bc9a3c511 ("Fix regression due to "fs: move binfmt_misc sysctl to its own file")
Reported-by: Tong Zhang <ztong0001@gmail.com>
Cc: Tong Zhang <ztong0001@gmail.com>
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent 2dd3a8a
Raw File
Tip revision: a3580ac9b7a394a7d780448ba75cc5348d8a9e04 authored by Luis Chamberlain on 15 February 2022, 02:08:28 UTC
fs/file_table: fix adding missing kmemleak_not_leak()
Tip revision: a3580ac
Kconfig
# SPDX-License-Identifier: GPL-2.0
#
# For a description of the syntax of this configuration file,
# see Documentation/kbuild/kconfig-language.rst.
#
mainmenu "Linux/$(ARCH) $(KERNELVERSION) Kernel Configuration"

source "scripts/Kconfig.include"

source "init/Kconfig"

source "kernel/Kconfig.freezer"

source "fs/Kconfig.binfmt"

source "mm/Kconfig"

source "net/Kconfig"

source "drivers/Kconfig"

source "fs/Kconfig"

source "security/Kconfig"

source "crypto/Kconfig"

source "lib/Kconfig"

source "lib/Kconfig.debug"

source "Documentation/Kconfig"
back to top