]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
KVM: x86: expose new instruction RDSEED to guest
authorLiu, Jinsong <jinsong.liu@intel.com>
Fri, 21 Feb 2014 17:33:32 +0000 (17:33 +0000)
committerPaolo Bonzini <pbonzini@redhat.com>
Sat, 22 Feb 2014 14:53:33 +0000 (15:53 +0100)
From 24ffdce9efebf13c6ed4882f714b2b57ef1141eb Mon Sep 17 00:00:00 2001
From: Liu Jinsong <jinsong.liu@intel.com>
Date: Thu, 20 Feb 2014 17:38:26 +0800
Subject: [PATCH] KVM: x86: expose new instruction RDSEED to guest

RDSEED instruction return a random number, which supplied by a
cryptographically secure, deterministic random bit generator(DRBG).

Signed-off-by: Xudong Hao <xudong.hao@intel.com>
Signed-off-by: Liu Jinsong <jinsong.liu@intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/cpuid.c

index c6976257eff51281e023c264b355f166ce56dd5c..abe18b489e7304f8df42cb81b55f71d4cd0304a9 100644 (file)
@@ -303,7 +303,7 @@ static inline int __do_cpuid_ent(struct kvm_cpuid_entry2 *entry, u32 function,
        /* cpuid 7.0.ebx */
        const u32 kvm_supported_word9_x86_features =
                F(FSGSBASE) | F(BMI1) | F(HLE) | F(AVX2) | F(SMEP) |
-               F(BMI2) | F(ERMS) | f_invpcid | F(RTM);
+               F(BMI2) | F(ERMS) | f_invpcid | F(RTM) | F(RDSEED);
 
        /* all calls to cpuid_count() should be made on the same cpu */
        get_cpu();