Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 112853
b: refs/heads/master
c: 97fc055
h: refs/heads/master
i:
  112851: 99612c7
v: v3
  • Loading branch information
H. Peter Anvin committed Sep 16, 2008
1 parent 6277f30 commit 7fd041e
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 28 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: a9853dd6d285c30a3ddeb3cce8c05e1678400bef
refs/heads/master: 97fc0555dae8f4d437c8672c14d7191962429be4
17 changes: 9 additions & 8 deletions trunk/arch/x86/boot/cpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,17 +59,18 @@ int validate_cpu(void)
u32 e = err_flags[i];

for (j = 0; j < 32; j++) {
int n = (i << 5)+j;
if (*msg_strs < n) {
if (msg_strs[0] < i ||
(msg_strs[0] == i && msg_strs[1] < j)) {
/* Skip to the next string */
do {
msg_strs++;
} while (*msg_strs);
msg_strs++;
msg_strs += 2;
while (*msg_strs++)
;
}
if (e & 1) {
if (*msg_strs == n && msg_strs[1])
printf("%s ", msg_strs+1);
if (msg_strs[0] == i &&
msg_strs[1] == j &&
msg_strs[2])
printf("%s ", msg_strs+2);
else
printf("%d:%d ", i, j);
}
Expand Down
38 changes: 19 additions & 19 deletions trunk/arch/x86/boot/mkcpustr.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,31 +17,31 @@

#include "../kernel/cpu/capflags.c"

#if NCAPFLAGS > 8
# error "Need to adjust the boot code handling of CPUID strings"
#endif

int main(void)
{
int i;
int i, j;
const char *str;

printf("static const char x86_cap_strs[] = \n");

for (i = 0; i < NCAPINTS*32; i++) {
str = x86_cap_flags[i];

if (i == NCAPINTS*32-1) {
/* The last entry must be unconditional; this
also consumes the compiler-added null character */
if (!str)
str = "";
printf("\t\"\\x%02x\"\"%s\"\n", i, str);
} else if (str) {
printf("#if REQUIRED_MASK%d & (1 << %d)\n"
"\t\"\\x%02x\"\"%s\\0\"\n"
"#endif\n",
i >> 5, i & 31, i, str);
for (i = 0; i < NCAPINTS; i++) {
for (j = 0; j < 32; j++) {
str = x86_cap_flags[i*32+j];

if (i == NCAPINTS-1 && j == 31) {
/* The last entry must be unconditional; this
also consumes the compiler-added null
character */
if (!str)
str = "";
printf("\t\"\\x%02x\\x%02x\"\"%s\"\n",
i, j, str);
} else if (str) {
printf("#if REQUIRED_MASK%d & (1 << %d)\n"
"\t\"\\x%02x\\x%02x\"\"%s\\0\"\n"
"#endif\n",
i, j, i, j, str);
}
}
}
printf("\t;\n");
Expand Down

0 comments on commit 7fd041e

Please sign in to comment.