Re: [PATCH v1 12/26] x86/cpu: Use scanned CPUID(0x1)
"Ahmed S. Darwish" <[email protected]>
| Newsgroups | dev.linux.lists.x86-cpuid,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <aBsNhcFPeOiFuj34@lx-t490> |
On Tue, 06 May, Ingo Molnar wrote: > > * Ahmed S. Darwish <[email protected]> wrote: > > > > - if (cap0 & (1<<19)) { > > - c->x86_clflush_size = ((misc >> 8) & 0xff) * 8; > > + if (l1->clflush) { > > + c->x86_clflush_size = l1->clflush_size * 8; > > > > Nice patch, it really nicely demonstrates the maintainability > advantages of the new CPUID parser. > Thank you. Really appreciated :)