Release 4.14 arch/x86/lib/cpu.c
#include <linux/types.h>
#include <linux/export.h>
unsigned int x86_family(unsigned int sig)
{
unsigned int x86;
x86 = (sig >> 8) & 0xf;
if (x86 == 0xf)
x86 += (sig >> 20) & 0xff;
return x86;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Borislav Petkov | 43 | 100.00% | 1 | 100.00% |
Total | 43 | 100.00% | 1 | 100.00% |
EXPORT_SYMBOL_GPL(x86_family);
unsigned int x86_model(unsigned int sig)
{
unsigned int fam, model;
fam = x86_family(sig);
model = (sig >> 4) & 0xf;
if (fam >= 0x6)
model += ((sig >> 16) & 0xf) << 4;
return model;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Borislav Petkov | 56 | 100.00% | 1 | 100.00% |
Total | 56 | 100.00% | 1 | 100.00% |
EXPORT_SYMBOL_GPL(x86_model);
unsigned int x86_stepping(unsigned int sig)
{
return sig & 0xf;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Borislav Petkov | 15 | 100.00% | 1 | 100.00% |
Total | 15 | 100.00% | 1 | 100.00% |
EXPORT_SYMBOL_GPL(x86_stepping);
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Borislav Petkov | 131 | 97.04% | 1 | 50.00% |
Paul Gortmaker | 4 | 2.96% | 1 | 50.00% |
Total | 135 | 100.00% | 2 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.