Re: [PATCH] x86/hpet: Read HPET directly if panic in progress

2024-05-28 Thread Dave Hansen
On 5/27/24 23:38, Tony W Wang-oc wrote: ...> diff --git a/arch/x86/kernel/hpet.c b/arch/x86/kernel/hpet.c > index c96ae8fee95e..ecadd0698d6a 100644 > --- a/arch/x86/kernel/hpet.c > +++ b/arch/x86/kernel/hpet.c > @@ -804,6 +804,12 @@ static u64 read_hpet(struct clocksource *cs) > if (in_nmi())

Re: [PATCH v4 1/4] interconnect: qcom: icc-rpmh: Add QoS configuration support

2024-05-28 Thread Odelu Kukatla
Hi Konrad, On 5/8/2024 8:07 AM, Mike Tipton wrote: > On Sat, Apr 13, 2024 at 09:31:47PM +0200, Konrad Dybcio wrote: >> On 3.04.2024 10:45 AM, Odelu Kukatla wrote: >>> >>> >>> On 3/27/2024 2:26 AM, Konrad Dybcio wrote: On 25.03.2024 7:16 PM, Odelu Kukatla wrote: > It adds QoS support for Q

Re: [PATCH] x86/hpet: Read HPET directly if panic in progress

2024-05-28 Thread Thomas Gleixner
On Tue, May 28 2024 at 07:18, Dave Hansen wrote: > On 5/27/24 23:38, Tony W Wang-oc wrote: > ...> diff --git a/arch/x86/kernel/hpet.c b/arch/x86/kernel/hpet.c >> index c96ae8fee95e..ecadd0698d6a 100644 >> --- a/arch/x86/kernel/hpet.c >> +++ b/arch/x86/kernel/hpet.c >> @@ -804,6 +804,12 @@ static u6

Re: [PATCH] x86/hpet: Read HPET directly if panic in progress

2024-05-28 Thread Linus Torvalds
On Tue, 28 May 2024 at 15:12, Thomas Gleixner wrote: > > I principle it applies to any clocksource which needs a spinlock to > serialize access. HPET is not the only insanity here. HPET may be the main / only one we care about. Because: > Think about i8253 :) I see the smiley, but yeah, I don'

[PATCH] x86/traps: Enable UBSAN traps on x86

2024-05-28 Thread Gatlin Newhouse
Bring x86 to parity with arm64, similar to commit 25b84002afb9 ("arm64: Support Clang UBSAN trap codes for better reporting"). Enable the output of UBSAN type information on x86 architectures compiled with clang when CONFIG_UBSAN_TRAP=y. Currently ARM architectures output which specific sanitizer c

Re: [PATCH] x86/hpet: Read HPET directly if panic in progress

2024-05-28 Thread Tony W Wang-oc
On 2024/5/29 06:12, Thomas Gleixner wrote: [这封邮件来自外部发件人 谨防风险] On Tue, May 28 2024 at 07:18, Dave Hansen wrote: On 5/27/24 23:38, Tony W Wang-oc wrote: ...> diff --git a/arch/x86/kernel/hpet.c b/arch/x86/kernel/hpet.c index c96ae8fee95e..ecadd0698d6a 100644 --- a/arch/x86/kernel/hpet.c +++

[PATCH net-next v2] net: mana: Allow variable size indirection table

2024-05-28 Thread Shradha Gupta
Allow variable size indirection table allocation in MANA instead of using a constant value MANA_INDIRECT_TABLE_SIZE. The size is now derived from the MANA_QUERY_VPORT_CONFIG and the indirection table is allocated dynamically. Signed-off-by: Shradha Gupta Reviewed-by: Dexuan Cui Reviewed-by: Haiy

Re: [PATCH] x86/hpet: Read HPET directly if panic in progress

2024-05-28 Thread Tony W Wang-oc
On 2024/5/29 12:39, Tony W Wang-oc wrote: On 2024/5/29 06:12, Thomas Gleixner wrote: [这封邮件来自外部发件人 谨防风险] On Tue, May 28 2024 at 07:18, Dave Hansen wrote: On 5/27/24 23:38, Tony W Wang-oc wrote: ...> diff --git a/arch/x86/kernel/hpet.c b/arch/x86/kernel/hpet.c index c96ae8fee95e..ecadd06