5
0
mirror of git://git.proxmox.com/git/qemu-server.git synced 2025-09-09 01:44:22 +03:00

CPU flags: Add aes flag

Signed-off-by: Peter Keresztes Schmidt <peterke@sos.ethz.ch>
This commit is contained in:
Peter Keresztes Schmidt
2019-08-01 19:22:23 +02:00
committed by Thomas Lamprecht
parent ccab68c22c
commit cd98c4675b

View File

@@ -178,7 +178,8 @@ my @supported_cpu_flags = (
'pdpe1gb',
'md-clear',
'hv-tlbflush',
'hv-evmcs'
'hv-evmcs',
'aes'
);
my $cpu_flag = qr/[+-](@{[join('|', @supported_cpu_flags)]})/;