Re: [PATCH v4A 01/15] x86/msr: Add missing includes of

2025-05-02 Thread Xin Li
On 5/2/2025 6:13 AM, Ilpo Järvinen wrote: diff --git a/arch/x86/kernel/trace_clock.c b/arch/x86/kernel/trace_clock.c index b8e7abe00b06..708d61743d15 100644 --- a/arch/x86/kernel/trace_clock.c +++ b/arch/x86/kernel/trace_clock.c @@ -4,7 +4,7 @@ */ #include #include -#include +#include

Re: [PATCH v4A 01/15] x86/msr: Add missing includes of

2025-05-02 Thread Ilpo Järvinen
On Wed, 30 Apr 2025, Xin Li (Intel) wrote: > For some reason, there are some TSC-related functions in the MSR > header even though there is a tsc.h header. > > To facilitate the relocation of rdtsc{,_ordered}() from > to and to eventually eliminate the inclusion of > in , add to the source fi

[PATCH v4A 01/15] x86/msr: Add missing includes of

2025-04-30 Thread Xin Li (Intel)
For some reason, there are some TSC-related functions in the MSR header even though there is a tsc.h header. To facilitate the relocation of rdtsc{,_ordered}() from to and to eventually eliminate the inclusion of in , add to the source files that reference definitions from . Signed-off-by: Xi