"**** Only trusted guests should be used. ****\n");
/* Taint the machine has being insecure */
- add_taint(TAINT_MACHINE_UNSECURE);
+ add_taint(TAINT_MACHINE_INSECURE);
}
#endif
}
* 'C' - Console output is synchronous.
* 'E' - An error (e.g. a machine check exceptions) has been injected.
* 'H' - HVM forced emulation prefix is permitted.
+ * 'I' - Platform is insecure (usually due to an errata on the platform).
* 'M' - Machine had a machine check experience.
- * 'U' - Platform is unsecure (usually due to an errata on the platform).
* 'S' - Out of spec CPU (One core has a feature incompatible with others).
*
* The string is overwritten by the next call to print_taint().
if ( tainted )
{
snprintf(str, TAINT_STRING_MAX_LEN, "Tainted: %c%c%c%c%c%c",
- tainted & TAINT_MACHINE_UNSECURE ? 'U' : ' ',
+ tainted & TAINT_MACHINE_INSECURE ? 'I' : ' ',
tainted & TAINT_MACHINE_CHECK ? 'M' : ' ',
tainted & TAINT_SYNC_CONSOLE ? 'C' : ' ',
tainted & TAINT_ERROR_INJECT ? 'E' : ' ',
#define TAINT_MACHINE_CHECK (1u << 1)
#define TAINT_ERROR_INJECT (1u << 2)
#define TAINT_HVM_FEP (1u << 3)
-#define TAINT_MACHINE_UNSECURE (1u << 4)
+#define TAINT_MACHINE_INSECURE (1u << 4)
#define TAINT_CPU_OUT_OF_SPEC (1u << 5)
extern unsigned int tainted;
#define TAINT_STRING_MAX_LEN 20