Skip to content

Commit

Permalink
Merge pull request #416 from msft-jlange/igvm_cpuid
Browse files Browse the repository at this point in the history
igvmbuilder: fix incorrect CPUID table construction
  • Loading branch information
00xc authored Jul 24, 2024
2 parents 6126750 + 414496e commit 33a191e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion igvmbuilder/src/cpuid.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ impl SnpCpuidPage {
pub fn new() -> Result<Self, Box<dyn Error>> {
let mut cpuid_page = SnpCpuidPage::default();
cpuid_page.add(SnpCpuidLeaf::new1(0x8000001f))?;
cpuid_page.add(SnpCpuidLeaf::new2(1, 1))?;
cpuid_page.add(SnpCpuidLeaf::new1(1))?;
cpuid_page.add(SnpCpuidLeaf::new1(2))?;
cpuid_page.add(SnpCpuidLeaf::new1(4))?;
cpuid_page.add(SnpCpuidLeaf::new2(4, 1))?;
Expand Down

0 comments on commit 33a191e

Please sign in to comment.