]> xenbits.xensource.com Git - people/larsk/xen.git/commitdiff
tools/xen-cpuid: avoid producing bogus output
authorJan Beulich <jbeulich@suse.com>
Wed, 2 Oct 2019 11:38:02 +0000 (13:38 +0200)
committerJan Beulich <jbeulich@suse.com>
Wed, 2 Oct 2019 11:38:02 +0000 (13:38 +0200)
I was (mistakenly, as - looking at the code - it's clearly not intended
to work) passing the tool "Raw" and "Host" as command line arguments.
Avoid printing just "Raw       " with not even a newline at the end in
such a case. Instead report what wasn't understood by the parsing logic.

Signed-off-by: Jan Beulich <jbeulich@suse.com>
Acked-by: Wei Liu <wl@xen.org>
Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>
Release-acked-by: Juergen Gross <jgross@suse.com>
tools/misc/xen-cpuid.c

index f51facffb6ec71eb1dd36751f9c687ab10f5f408..866c556a0fef4473ba30e3db638030c678b89f08 100644 (file)
@@ -530,6 +530,15 @@ int main(int argc, char **argv)
                 break;
             }
 
+            if ( !i )
+            {
+                fprintf(stderr, "'%s' unrecognized - skipping\n", ptr);
+                continue;
+            }
+
+            if ( *ptr )
+                fprintf(stderr, "'%s' unrecognized - ignoring\n", ptr);
+
             decode_featureset(fs, i, "Raw", true);
         }
     }