When '-accel help' is given, report the security status of each accelerator.
Signed-off-by: Daniel P. Berrangé <[email protected]> --- system/vl.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/system/vl.c b/system/vl.c index 0c6e44f21c..ca54da26c5 100644 --- a/system/vl.c +++ b/system/vl.c @@ -3451,7 +3451,10 @@ void qemu_init(int argc, char **argv) g_str_has_suffix(typename, ACCEL_CLASS_SUFFIX)) { gchar **optname = g_strsplit(typename, ACCEL_CLASS_SUFFIX, 0); - printf("%s\n", optname[0]); + printf("%s%s\n", optname[0], + object_class_is_secure( + OBJECT_CLASS(el->data)) ? + " (secure)" : ""); g_strfreev(optname); } g_free(typename); -- 2.55.0
