[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] libxl: fix typos in libxl_cpuid_parse_config
# HG changeset patch # User Olaf Hering <olaf@xxxxxxxxx> # Date 1338548782 -3600 # Node ID 3b4346d6002e9ffcd4a9f50b031bd2a77b16b1dd # Parent 68d46c5ea0a3769a9ed398f8cd7542db1a346dc3 libxl: fix typos in libxl_cpuid_parse_config Fix typo in comment. Fix cpuid_flags array init, use correct number of arguments for empty array entry. Signed-off-by: Olaf Hering <olaf@xxxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Committed-by: Ian Campbell <ian.campbell@xxxxxxxxxx> --- diff -r 68d46c5ea0a3 -r 3b4346d6002e tools/libxl/libxl_cpuid.c --- a/tools/libxl/libxl_cpuid.c Fri Jun 01 12:06:21 2012 +0100 +++ b/tools/libxl/libxl_cpuid.c Fri Jun 01 12:06:22 2012 +0100 @@ -185,7 +185,7 @@ int libxl_cpuid_parse_config(libxl_cpuid {"svm_decode", 0x8000000a, NA, CPUID_REG_EDX, 7, 1}, {"svm_pausefilt",0x8000000a, NA, CPUID_REG_EDX, 10, 1}, - {NULL, 0, CPUID_REG_INV, 0, 0} + {NULL, 0, NA, CPUID_REG_INV, 0, 0} }; #undef NA char *sep, *val, *endptr; @@ -216,7 +216,7 @@ int libxl_cpuid_parse_config(libxl_cpuid num = strtoull(val, &endptr, 0); flags[flag->length] = 0; if (endptr != val) { - /* is this was a valid number, write the binary form into the string */ + /* if this was a valid number, write the binary form into the string */ for (i = 0; i < flag->length; i++) { flags[flag->length - 1 - i] = "01"[!!(num & (1 << i))]; } _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |