Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5c2a6259 authored by Eric Biggers's avatar Eric Biggers Committed by Will Deacon
Browse files

arm64: support keyctl() system call in 32-bit mode



As is the case for a number of other architectures that have a 32-bit
compat mode, enable KEYS_COMPAT if both COMPAT and KEYS are enabled.
This allows AArch32 programs to use the keyctl() system call when
running on an AArch64 kernel.

Signed-off-by: default avatarEric Biggers <ebiggers@google.com>
Signed-off-by: default avatarWill Deacon <will.deacon@arm.com>
parent b0de0ccc
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -1063,6 +1063,10 @@ config SYSVIPC_COMPAT
	def_bool y
	depends on COMPAT && SYSVIPC

config KEYS_COMPAT
	def_bool y
	depends on COMPAT && KEYS

endmenu

menu "Power management options"