Re: [PATCH] hrtimer:Add get_hrtimer_cpu_base()

2024-03-14 Thread Thomas Gleixner
On Fri, Mar 15 2024 at 11:12, Enlin Mu wrote: > Thomas Gleixner 于2024年3月14日周四 19:59写道: >> >> On Thu, Mar 14 2024 at 18:45, Enlin Mu wrote: >> > Thomas Gleixner 于2024年3月14日周四 18:22写道: >> >> >> >> On Wed, Mar 13 2024 at 05:30, Enlin Mu wrote: >> >> > From: Enlin Mu >> >> > >> >> > On the Arm platf

Re: [PATCH] hrtimer:Add get_hrtimer_cpu_base()

2024-03-14 Thread Enlin Mu
Thomas Gleixner 于2024年3月14日周四 19:59写道: > > On Thu, Mar 14 2024 at 18:45, Enlin Mu wrote: > > Thomas Gleixner 于2024年3月14日周四 18:22写道: > >> > >> On Wed, Mar 13 2024 at 05:30, Enlin Mu wrote: > >> > From: Enlin Mu > >> > > >> > On the Arm platform,arch_timer may occur irq strom, > >> > By using the

Re: [PATCH] hrtimer:Add get_hrtimer_cpu_base()

2024-03-14 Thread Enlin Mu
Enlin Mu 于2024年3月15日周五 10:07写道: > > Thomas Gleixner 于2024年3月14日周四 19:59写道: > > > > On Thu, Mar 14 2024 at 18:45, Enlin Mu wrote: > > > Thomas Gleixner 于2024年3月14日周四 18:22写道: > > >> > > >> On Wed, Mar 13 2024 at 05:30, Enlin Mu wrote: > > >> > From: Enlin Mu > > >> > > > >> > On the Arm platform

Re: [PATCH] hrtimer:Add get_hrtimer_cpu_base()

2024-03-14 Thread Enlin Mu
Thomas Gleixner 于2024年3月14日周四 19:59写道: > > On Thu, Mar 14 2024 at 18:45, Enlin Mu wrote: > > Thomas Gleixner 于2024年3月14日周四 18:22写道: > >> > >> On Wed, Mar 13 2024 at 05:30, Enlin Mu wrote: > >> > From: Enlin Mu > >> > > >> > On the Arm platform,arch_timer may occur irq strom, > >> > By using the

Re: [PATCH] hrtimer:Add get_hrtimer_cpu_base()

2024-03-14 Thread Thomas Gleixner
On Thu, Mar 14 2024 at 18:45, Enlin Mu wrote: > Thomas Gleixner 于2024年3月14日周四 18:22写道: >> >> On Wed, Mar 13 2024 at 05:30, Enlin Mu wrote: >> > From: Enlin Mu >> > >> > On the Arm platform,arch_timer may occur irq strom, >> > By using the next_timer of hrtimer_cpu_base, it is >> > possible to qui

Re: [PATCH] hrtimer:Add get_hrtimer_cpu_base()

2024-03-14 Thread Enlin Mu
Thomas Gleixner 于2024年3月14日周四 18:22写道: > > On Wed, Mar 13 2024 at 05:30, Enlin Mu wrote: > > From: Enlin Mu > > > > On the Arm platform,arch_timer may occur irq strom, > > By using the next_timer of hrtimer_cpu_base, it is > > possible to quickly locate abnormal timers. > > As it is an out of tre

Re: [PATCH] hrtimer:Add get_hrtimer_cpu_base()

2024-03-14 Thread Thomas Gleixner
On Wed, Mar 13 2024 at 05:30, Enlin Mu wrote: > From: Enlin Mu > > On the Arm platform,arch_timer may occur irq strom, > By using the next_timer of hrtimer_cpu_base, it is > possible to quickly locate abnormal timers. > As it is an out of tree modules,the function needs > to be exproted. No. We a

[PATCH] hrtimer:Add get_hrtimer_cpu_base()

2024-03-12 Thread Enlin Mu
From: Enlin Mu On the Arm platform,arch_timer may occur irq strom, By using the next_timer of hrtimer_cpu_base, it is possible to quickly locate abnormal timers. As it is an out of tree modules,the function needs to be exproted. Signed-off-by: Enlin Mu --- include/linux/hrtimer.h | 1 + kernel