From mboxrd@z Thu Jan 1 00:00:00 1970 From: Olaf Hering Subject: [PATCH] libxl: fix typos in libxl_cpuid_parse_config Date: Thu, 31 May 2012 23:55:49 +0200 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org # HG changeset patch # User Olaf Hering # Date 1338501314 -7200 # Node ID a836c330fd736b751f5e26b5d9d816d8fa59d28b # Parent 4dad9647a0963a2665ccf055492e740c2b399517 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 diff -r 4dad9647a096 -r a836c330fd73 tools/libxl/libxl_cpuid.c --- a/tools/libxl/libxl_cpuid.c +++ b/tools/libxl/libxl_cpuid.c @@ -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))]; }