From: Dave Hansen <dave.han...@linux.intel.com>

This is utterly a personal taste thing, but I find it way easier
to read structure sizes in decimal than in hex.

Signed-off-by: Dave Hansen <dave.han...@linux.intel.com>
Cc: Ingo Molnar <mi...@redhat.com>
Cc: x...@kernel.org
Cc: Borislav Petkov <b...@alien8.de>
Cc: Fenghua Yu <fenghua...@intel.com>
Cc: Tim Chen <tim.c.c...@linux.intel.com>
Cc: linux-kernel@vger.kernel.org
---

 b/arch/x86/kernel/fpu/xstate.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff -puN arch/x86/kernel/fpu/xstate.c~print-decimal 
arch/x86/kernel/fpu/xstate.c
--- a/arch/x86/kernel/fpu/xstate.c~print-decimal        2015-08-31 
15:17:30.996727012 -0700
+++ b/arch/x86/kernel/fpu/xstate.c      2015-08-31 15:17:30.999727149 -0700
@@ -187,7 +187,7 @@ static void __init setup_xstate_features
                xstate_offsets[leaf] = ebx;
                xstate_sizes[leaf] = eax;
 
-               printk(KERN_INFO "x86/fpu: xstate_offset[%d]: %04x, 
xstate_sizes[%d]: %04x\n", leaf, ebx, leaf, eax);
+               printk(KERN_INFO "x86/fpu: xstate_offset[%d]: %4d, 
xstate_sizes[%d]: %4d\n", leaf, ebx, leaf, eax);
        }
 }
 
@@ -357,7 +357,7 @@ void __init fpu__init_system_xstate(void
        setup_init_fpu_buf();
        setup_xstate_comp();
 
-       pr_info("x86/fpu: Enabled xstate features 0x%llx, context size is 0x%x 
bytes, using '%s' format.\n",
+       pr_info("x86/fpu: Enabled xstate features 0x%llx, context size is %d 
bytes, using '%s' format.\n",
                xfeatures_mask,
                xstate_size,
                cpu_has_xsaves ? "compacted" : "standard");
_
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to