aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Morris <james.l.morris@oracle.com>2014-12-15 20:49:10 -0500
committerJames Morris <james.l.morris@oracle.com>2014-12-15 20:49:10 -0500
commitd0bffab0439fb7edaee09677b636eef5991e8b80 (patch)
tree4437686bf7e9bea8f6444f23850f21a7b9f360a7
parent988adfdffdd43cfd841df734664727993076d7cb (diff)
parent63a0eb7891bdf3ef32ecb6b01eb09106df646c10 (diff)
Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity into for-linus
-rw-r--r--security/integrity/ima/Kconfig2
-rw-r--r--security/keys/encrypted-keys/encrypted.c5
2 files changed, 5 insertions, 2 deletions
diff --git a/security/integrity/ima/Kconfig b/security/integrity/ima/Kconfig
index b80a93ec1ccc..57515bc915c0 100644
--- a/security/integrity/ima/Kconfig
+++ b/security/integrity/ima/Kconfig
@@ -10,7 +10,7 @@ config IMA
10 select CRYPTO_HASH_INFO 10 select CRYPTO_HASH_INFO
11 select TCG_TPM if HAS_IOMEM && !UML 11 select TCG_TPM if HAS_IOMEM && !UML
12 select TCG_TIS if TCG_TPM && X86 12 select TCG_TIS if TCG_TPM && X86
13 select TCG_IBMVTPM if TCG_TPM && PPC64 13 select TCG_IBMVTPM if TCG_TPM && PPC_PSERIES
14 help 14 help
15 The Trusted Computing Group(TCG) runtime Integrity 15 The Trusted Computing Group(TCG) runtime Integrity
16 Measurement Architecture(IMA) maintains a list of hash 16 Measurement Architecture(IMA) maintains a list of hash
diff --git a/security/keys/encrypted-keys/encrypted.c b/security/keys/encrypted-keys/encrypted.c
index db9675db1026..7bed4ad7cd76 100644
--- a/security/keys/encrypted-keys/encrypted.c
+++ b/security/keys/encrypted-keys/encrypted.c
@@ -1017,10 +1017,13 @@ static int __init init_encrypted(void)
1017 ret = encrypted_shash_alloc(); 1017 ret = encrypted_shash_alloc();
1018 if (ret < 0) 1018 if (ret < 0)
1019 return ret; 1019 return ret;
1020 ret = aes_get_sizes();
1021 if (ret < 0)
1022 goto out;
1020 ret = register_key_type(&key_type_encrypted); 1023 ret = register_key_type(&key_type_encrypted);
1021 if (ret < 0) 1024 if (ret < 0)
1022 goto out; 1025 goto out;
1023 return aes_get_sizes(); 1026 return 0;
1024out: 1027out:
1025 encrypted_shash_release(); 1028 encrypted_shash_release();
1026 return ret; 1029 return ret;