From: Joe Korty <joe.korty@concurrent-rt.com>
To: Marc Zyngier <maz@kernel.org>
Cc: linux-kernel@vger.kernel.org, stable@vger.kernel.org
Subject: Re: [PATCH] arm64: arch_timer: XGene-1 has 31 bit, not 32 bit, arch timer.
Date: Fri, 21 Oct 2022 15:47:46 -0400 [thread overview]
Message-ID: <20221021194746.GA5830@zipoli.concurrent-rt.com> (raw)
In-Reply-To: <864jvxnj65.wl-maz@kernel.org>
Hi Marc,
On Fri, Oct 21, 2022 at 07:08:50PM +0100, Marc Zyngier wrote:
> Sorry, but you'll have to provide a bit more of an analysis here. As
> far as I can tell, you're just changing a parameter without properly
> describing what breaks and how.
There isn't much to analyse. For ages, 0x7fffffff (31 bits) was the
declared width of 'arch timer' for all arm architures, and that worked.
Your patch series made the declared width vary according to which chipset
was in use, which is good, but that rewrite changed the above mask for
the XGene-1 from 0x7fffffff to 0xffffffff. That change broke timers
for the XGene-1 since it seems that, in actuality, it has only a 31 bit
wide arch timer. Thus declaring that arch timer has 32-bits is wrong.
This mismatch between the actual and declared sizes would cause arithmetic
errors in the calculation of timer deltas which more than accounts for
the hrtimer failures I am seeing when running 5.16+ on my Mustang XGene1.
Only one line need change, the rest are fluff:
- return CLOCKSOURCE_MASK(32);
+ return CLOCKSOURCE_MASK(31);
> Also, this isn't much of a patch.
I don't know what this means. The patch contains all that is needed for
the fix, no more. I could add more comments as to _why_ it is 31 bits
not 32, but I don't know why. I only know that the motherboard behaves
as if 31 bits is all that is available in the hardware.
> Please see the documentation on how to properly submit one.
AFAICS, the only submission mistake is that the 'Cc: stable@vger.kernel.org'
line is missing.
Regards,
Joe
next prev parent reply other threads:[~2022-10-21 19:48 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-21 15:34 [PATCH] arm64: arch_timer: XGene-1 has 31 bit, not 32 bit, arch timer Joe Korty
2022-10-21 15:36 ` kernel test robot
2022-10-21 15:44 ` Greg KH
2022-10-21 18:08 ` Marc Zyngier
2022-10-21 19:47 ` Joe Korty [this message]
2022-10-22 5:40 ` Greg KH
2022-10-22 9:58 ` Marc Zyngier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20221021194746.GA5830@zipoli.concurrent-rt.com \
--to=joe.korty@concurrent-rt.com \
--cc=linux-kernel@vger.kernel.org \
--cc=maz@kernel.org \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).