Displaying 7 results from an estimated 7 matches for "x86_vendor_id".
2011 Apr 02
2
[patch] ~420 seconds in cpu_detect
...TOH, its trivial, and perhaps unlikely to be used again.
the problem manifested in the commented out statement.
its also worth noting that when offending code is restored,
I get this value out
Vendor : ??????????????????????????????????
with replacement code:
strlcpy(cpu->model, c->x86_vendor_id, sizeof(cpu->vendor));
I get ""
void set_generic_info(struct cpuinfo_x86 *c, s_cpu * cpu)
{
clock_t et = times(NULL);
printf("sizeof(cpu->vendor): %d\n", sizeof(cpu->vendor));
printf("sizeof(cpu->model): %d\n", sizeof(cpu->model));
cpu...
2011 Apr 02
2
[patch] ~420 seconds in cpu_detect
...TOH, its trivial, and perhaps unlikely to be used again.
the problem manifested in the commented out statement.
its also worth noting that when offending code is restored,
I get this value out
Vendor : ??????????????????????????????????
with replacement code:
strlcpy(cpu->model, c->x86_vendor_id, sizeof(cpu->vendor));
I get ""
void set_generic_info(struct cpuinfo_x86 *c, s_cpu * cpu)
{
clock_t et = times(NULL);
printf("sizeof(cpu->vendor): %d\n", sizeof(cpu->vendor));
printf("sizeof(cpu->model): %d\n", sizeof(cpu->model));
cpu...
1997 Nov 13
0
Linux F00F Patch [Forwarded e-mail from Aleph One]
...ernel/head.S */
int x86_capability = 0; /* set by kernel/head.S */
int fdiv_bug = 0; /* set if Pentium(TM) with FP bug */
+int pentium_f00f_bug = 0; /* set if Pentium(TM) with F00F bug */
int have_cpuid = 0; /* set if CPUID instruction works */
char x86_vendor_id[13] = "unknown";
@@ -359,6 +360,7 @@
"fdiv_bug\t: %s\n"
"hlt_bug\t\t: %s\n"
"sep_bug\t\t: %s\n"
+ "...
2007 Apr 18
5
[RFC] First (incomplete) cut of Xen paravirt binding
I've updated the patches at
http://ozlabs.org/~rusty/paravirt/?mf=33ba6c4fce13;path=/ to carve out
the basic shape of how I see all this fitting together.
These patches implement an initial set of Xen paravirt ops, as well as
adapting head.S to set up a Xen-specific entrypoint. The head.S code
does absolutely minimal setup, and then calls xen_start_kernel(). This
installs the Xen
2007 Apr 18
33
[RFC PATCH 00/33] Xen i386 paravirtualization support
Unlike full virtualization in which the virtual machine provides
the same platform interface as running natively on the hardware,
paravirtualization requires modification to the guest operating system
to work with the platform interface provided by the hypervisor.
Xen was designed with performance in mind. Calls to the hypervisor
are minimized, batched if necessary, and non-critical codepaths
2007 Apr 18
43
[RFC PATCH 00/35] Xen i386 paravirtualization support
Unlike full virtualization in which the virtual machine provides
the same platform interface as running natively on the hardware,
paravirtualization requires modification to the guest operating system
to work with the platform interface provided by the hypervisor.
Xen was designed with performance in mind. Calls to the hypervisor
are minimized, batched if necessary, and non-critical codepaths
2007 Apr 18
43
[RFC PATCH 00/35] Xen i386 paravirtualization support
Unlike full virtualization in which the virtual machine provides
the same platform interface as running natively on the hardware,
paravirtualization requires modification to the guest operating system
to work with the platform interface provided by the hypervisor.
Xen was designed with performance in mind. Calls to the hypervisor
are minimized, batched if necessary, and non-critical codepaths