Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 323980
b: refs/heads/master
c: 924e101
h: refs/heads/master
v: v3
  • Loading branch information
Borislav Petkov authored and Ingo Molnar committed Sep 19, 2012
1 parent 91403f3 commit 0b363c2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ae13b7b4e041eccf34fa4dd58581fe1441375578
refs/heads/master: 924e101a7ab6f884047f4344e5f1154a4bcd63a6
8 changes: 5 additions & 3 deletions trunk/arch/x86/kernel/cpu/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -1023,14 +1023,16 @@ void __cpuinit print_cpu_info(struct cpuinfo_x86 *c)
printk(KERN_CONT "%s ", vendor);

if (c->x86_model_id[0])
printk(KERN_CONT "%s", c->x86_model_id);
printk(KERN_CONT "%s", strim(c->x86_model_id));
else
printk(KERN_CONT "%d86", c->x86);

printk(KERN_CONT " (fam: %02x, model: %02x", c->x86, c->x86_model);

if (c->x86_mask || c->cpuid_level >= 0)
printk(KERN_CONT " stepping %02x\n", c->x86_mask);
printk(KERN_CONT ", stepping: %02x)\n", c->x86_mask);
else
printk(KERN_CONT "\n");
printk(KERN_CONT ")\n");

print_cpu_msr(c);
}
Expand Down

0 comments on commit 0b363c2

Please sign in to comment.