From: Shuah Khan <skhan@linuxfoundation.org>
To: John Stultz <jstultz@google.com>, Minjie Du <duminjie@vivo.com>
Cc: Thomas Gleixner <tglx@linutronix.de>,
Stephen Boyd <sboyd@kernel.org>, Shuah Khan <shuah@kernel.org>,
"open list:TIMEKEEPING, CLOCKSOURCE CORE, NTP,
ALARMTIMER" <linux-kernel@vger.kernel.org>,
"open list:KERNEL SELFTEST FRAMEWORK"
<linux-kselftest@vger.kernel.org>,
opensource.kernel@vivo.com,
Shuah Khan <skhan@linuxfoundation.org>
Subject: Re: [PATCH v1] tools: timers: fix freq average calculation
Date: Thu, 13 Jul 2023 13:33:48 -0600 [thread overview]
Message-ID: <f17f5330-9b8f-81a2-508f-8cc25c355590@linuxfoundation.org> (raw)
In-Reply-To: <CANDhNCoJ2ZjGCY3yZ3K4XZF8-bNTExOUWNkqWtJ2FZW=bYFwzw@mail.gmail.com>
On 7/5/23 21:46, John Stultz wrote:
> On Wed, Jul 5, 2023 at 8:23 PM Minjie Du <duminjie@vivo.com> wrote:
>>
>> Delete a duplicate assignment from this function implementation.
>> The note means ppm is average of the two actual freq samples.
>> But ppm have a duplicate assignment.
>>
>> Signed-off-by: Minjie Du <duminjie@vivo.com>
>> ---
>> tools/testing/selftests/timers/raw_skew.c | 3 +--
>> 1 file changed, 1 insertion(+), 2 deletions(-)
>>
>> diff --git a/tools/testing/selftests/timers/raw_skew.c b/tools/testing/selftests/timers/raw_skew.c
>> index 5beceeed0..6eba203f9 100644
>> --- a/tools/testing/selftests/timers/raw_skew.c
>> +++ b/tools/testing/selftests/timers/raw_skew.c
>> @@ -129,8 +129,7 @@ int main(int argc, char **argv)
>> printf("%lld.%i(est)", eppm/1000, abs((int)(eppm%1000)));
>>
>> /* Avg the two actual freq samples adjtimex gave us */
>> - ppm = (tx1.freq + tx2.freq) * 1000 / 2;
>> - ppm = (long long)tx1.freq * 1000;
>> + ppm = (long long)(tx1.freq + tx2.freq) * 1000 / 2;
>
> Huh. So yeah, I looked back in my own history and this has been there
> forever. I'm guessing I was intending to average the two samples and
> then due to reasons I can't remember decided to just use the first in
> the short-term for some debugging (with the second assignment) and
> committed both.
>
> I think it should be safe, because if the freq values are not the same
> the test will return SKIP, so it's unlikely changing this would cause
> new test failures.
>
> Acked-by: John Stultz <jstultz@google.com>
>
> Thanks for noticing this and sending this out!
> -john
Applied to linux-kselftest fixes branch for next rc2 or rc3
thanks,
-- Shuah
prev parent reply other threads:[~2023-07-13 19:33 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-06 3:22 [PATCH v1] tools: timers: fix freq average calculation Minjie Du
2023-07-06 3:46 ` John Stultz
2023-07-13 19:33 ` Shuah Khan [this message]
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=f17f5330-9b8f-81a2-508f-8cc25c355590@linuxfoundation.org \
--to=skhan@linuxfoundation.org \
--cc=duminjie@vivo.com \
--cc=jstultz@google.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=opensource.kernel@vivo.com \
--cc=sboyd@kernel.org \
--cc=shuah@kernel.org \
--cc=tglx@linutronix.de \
/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