https://github.com/torvalds/linux
Revision ae2e972dae3cea795e9f8f94eb1601213c2d49f0 authored by Suzuki K Poulose on 06 October 2017, 13:16:53 UTC, committed by Catalin Marinas on 06 October 2017, 15:35:25 UTC
We register the pm/hotplug callbacks for FPSIMD as late_initcall,
which happens after the userspace is active (from initramfs via
populate_rootfs, a rootfs_initcall). Make sure we are ready even
before the userspace could potentially use it, by promoting to
a core_initcall.

Cc: Will Deacon <will.deacon@arm.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Dave Martin <dave.martin@arm.com>
Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
1 parent c0d8832
Raw File
Tip revision: ae2e972dae3cea795e9f8f94eb1601213c2d49f0 authored by Suzuki K Poulose on 06 October 2017, 13:16:53 UTC
arm64: Ensure fpsimd support is ready before userspace is active
Tip revision: ae2e972
Kconfig
#
# For a description of the syntax of this configuration file,
# see Documentation/kbuild/kconfig-language.txt.
#
mainmenu "Linux/$ARCH $KERNELVERSION Kernel Configuration"

config SRCARCH
	string
	option env="SRCARCH"

source "arch/$SRCARCH/Kconfig"
back to top