From: Volodymyr Babchuk <Volodymyr_Babchuk@epam.com>
To: Jan Beulich <jbeulich@suse.com>
Cc: "Oleksii Kurochko" <oleksii.kurochko@gmail.com>,
"Michal Orzel" <michal.orzel@amd.com>,
"Julien Grall" <julien@xen.org>,
"Stefano Stabellini" <sstabellini@kernel.org>,
"Alistair Francis" <alistair.francis@wdc.com>,
"Connor Davis" <connojdavis@gmail.com>,
"Andrew Cooper" <andrew.cooper3@citrix.com>,
"Anthony PERARD" <anthony.perard@vates.tech>,
"Roger Pau Monné" <roger.pau@citrix.com>,
"xen-devel@lists.xenproject.org" <xen-devel@lists.xenproject.org>
Subject: Re: [Arm] Re: [PATCH v1 11/15] xen/riscv: introduce ns_to_ticks()
Date: Wed, 21 Jan 2026 00:23:31 +0000 [thread overview]
Message-ID: <87bjin6cgd.fsf@epam.com> (raw)
In-Reply-To: <369eb1d7-864e-4432-9729-57786d0c191f@suse.com> (Jan Beulich's message of "Mon, 12 Jan 2026 15:59:13 +0100")
Hi Jan,
Jan Beulich <jbeulich@suse.com> writes:
> On 24.12.2025 18:03, Oleksii Kurochko wrote:
>> Signed-off-by: Oleksii Kurochko <oleksii.kurochko@gmail.com>
>> ---
>> xen/arch/riscv/include/asm/time.h | 5 +++++
>> 1 file changed, 5 insertions(+)
>
> Looks okay and read to go in as is (no dependencies on earlier patches afaics),
> but:
>
>> --- a/xen/arch/riscv/include/asm/time.h
>> +++ b/xen/arch/riscv/include/asm/time.h
>> @@ -29,6 +29,11 @@ static inline s_time_t ticks_to_ns(uint64_t ticks)
>> return muldiv64(ticks, MILLISECS(1), cpu_khz);
>> }
>>
>> +static inline uint64_t ns_to_ticks(s_time_t ns)
>> +{
>> + return muldiv64(ns, cpu_khz, MILLISECS(1));
>> +}
>
> It's hard to see what's arch-dependent about this or ticks_to_ns(). They're
> similar but not identical to Arm's version, and I actually wonder why that
> difference exists. Questions to Arm people:
> 1) Why are they out-of-line functions there?
That's interesting question. According to git blame this is how it was
introduced in 2012 and after that no one touched this part. Original
patch had cntfrq defined as `static`, this explains why these functions
were declared out-of-line.
> 2) Why the involvement of the constant 1000 there? 1000 * cpu_khz can
> actually overflow in 32 bits. The forms above aren't prone to such an
> issue.
Patch "xen: move XEN_SYSCTL_physinfo, XEN_SYSCTL_numainfo and
XEN_SYSCTL_topologyinfo to common code" (096578b4e48) changed hz to
khz. This added that 1000 multiplication. Also this patch removed
`static` qualifier from the counter variable.
Anyways, latest ARM ARM suggests that timer frequency should be fixed at
1GHz, which is shy of 32-bit overflow. So most new platforms will be
fine. And older platforms had much lower frequencies.
> If the delta isn't justified, I think we'd better put RISC-V's functions in
> common code (xen/time.h). They're not presently needed by x86, but as
> inline functions they also shouldn't do any harm.
I'm mere reviewer, but I agree that proposed approach is better and more
resilient.
--
WBR, Volodymyr
next prev parent reply other threads:[~2026-01-21 0:23 UTC|newest]
Thread overview: 93+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-24 17:03 [PATCH v1 00/15] xen/riscv: introduce vtimer related things Oleksii Kurochko
2025-12-24 17:03 ` [PATCH v1 01/15] xen/riscv: introduce struct arch_vcpu Oleksii Kurochko
2026-01-05 16:58 ` Jan Beulich
2026-01-06 14:19 ` Oleksii Kurochko
2026-01-06 14:26 ` Jan Beulich
2026-01-06 14:59 ` Andrew Cooper
2026-01-06 15:05 ` Oleksii Kurochko
2026-01-06 15:33 ` Jan Beulich
2026-01-06 16:00 ` Oleksii Kurochko
2025-12-24 17:03 ` [PATCH v1 02/15] xen/riscv: implement arch_vcpu_{create,destroy}() Oleksii Kurochko
2026-01-06 15:56 ` Jan Beulich
2026-01-12 10:19 ` Oleksii Kurochko
2026-01-12 10:42 ` Jan Beulich
2025-12-24 17:03 ` [PATCH v1 03/15] xen/riscv: implement vcpu_csr_init() Oleksii Kurochko
2026-01-07 8:46 ` Jan Beulich
2026-01-12 12:59 ` Oleksii Kurochko
2026-01-12 14:28 ` Jan Beulich
2026-01-12 15:46 ` Oleksii Kurochko
2026-01-12 15:54 ` Jan Beulich
2026-01-12 16:39 ` Oleksii Kurochko
2026-01-12 16:42 ` Jan Beulich
2025-12-24 17:03 ` [PATCH v1 04/15] xen/riscv: introduce vtimer Oleksii Kurochko
2026-01-07 15:21 ` Jan Beulich
2026-01-12 16:28 ` Oleksii Kurochko
2025-12-24 17:03 ` [PATCH v1 05/15] xen/riscv: implement stub for smp_send_event_check_mask() Oleksii Kurochko
2026-01-07 15:47 ` Jan Beulich
2026-01-12 16:53 ` Oleksii Kurochko
2026-01-12 17:05 ` Jan Beulich
2026-01-13 9:58 ` Oleksii Kurochko
2026-01-13 10:22 ` Jan Beulich
2026-01-13 11:39 ` Oleksii Kurochko
2025-12-24 17:03 ` [PATCH v1 06/15] xen/riscv: introduce vcpu_kick() implementation Oleksii Kurochko
2026-01-07 16:04 ` Jan Beulich
2025-12-24 17:03 ` [PATCH v1 07/15] xen/riscv: introduce tracking of pending vCPU interrupts, part 1 Oleksii Kurochko
2026-01-07 16:28 ` Jan Beulich
2026-01-13 12:51 ` Oleksii Kurochko
2026-01-13 13:54 ` Jan Beulich
2026-01-14 15:39 ` Oleksii Kurochko
2026-01-14 15:56 ` Jan Beulich
2026-01-15 9:14 ` Oleksii Kurochko
2026-01-15 9:52 ` Jan Beulich
2026-01-15 10:55 ` Oleksii Kurochko
2026-01-15 10:59 ` Jan Beulich
2026-01-15 11:46 ` Oleksii Kurochko
2026-01-15 12:09 ` Jan Beulich
2026-01-15 12:25 ` Oleksii Kurochko
2026-01-15 12:30 ` Jan Beulich
2026-01-16 14:25 ` Oleksii Kurochko
2026-01-16 14:42 ` Jan Beulich
2025-12-24 17:03 ` [PATCH v1 08/15] xen/riscv: introduce vtimer_set_timer() and vtimer_expired() Oleksii Kurochko
2026-01-08 10:28 ` Jan Beulich
2026-01-13 14:44 ` Oleksii Kurochko
2026-01-13 15:12 ` Jan Beulich
2026-01-14 12:27 ` Oleksii Kurochko
2026-01-14 14:57 ` Jan Beulich
2026-01-14 15:59 ` Oleksii Kurochko
2026-01-15 7:52 ` Jan Beulich
2026-01-15 9:30 ` Oleksii Kurochko
2026-01-15 9:55 ` Jan Beulich
2025-12-24 17:03 ` [PATCH v1 09/15] xen/riscv: add vtimer_{save,restore}() Oleksii Kurochko
2026-01-08 10:43 ` Jan Beulich
2026-01-13 15:32 ` Oleksii Kurochko
2026-01-14 9:00 ` Jan Beulich
2025-12-24 17:03 ` [PATCH v1 10/15] xen/riscv: implement SBI legacy SET_TIMER support for guests Oleksii Kurochko
2026-01-08 10:45 ` Jan Beulich
2026-01-13 15:41 ` Oleksii Kurochko
2025-12-24 17:03 ` [PATCH v1 11/15] xen/riscv: introduce ns_to_ticks() Oleksii Kurochko
2026-01-12 14:59 ` [Arm] " Jan Beulich
2026-01-21 0:23 ` Volodymyr Babchuk [this message]
2026-01-21 1:19 ` Stefano Stabellini
2025-12-24 17:03 ` [PATCH v1 12/15] xen/riscv: introduce sbi_set_timer() Oleksii Kurochko
2026-01-12 15:12 ` Jan Beulich
2026-01-13 16:33 ` Oleksii Kurochko
2026-01-14 9:07 ` Jan Beulich
2026-01-14 9:59 ` Oleksii Kurochko
2025-12-24 17:03 ` [PATCH v1 13/15] xen/riscv: implement reprogram_timer() using SBI Oleksii Kurochko
2026-01-12 15:24 ` Jan Beulich
2026-01-13 16:50 ` Oleksii Kurochko
2026-01-14 9:13 ` Jan Beulich
2026-01-14 9:41 ` Oleksii Kurochko
2026-01-14 9:53 ` Jan Beulich
2026-01-14 10:33 ` Oleksii Kurochko
2026-01-14 11:17 ` Jan Beulich
2026-01-14 12:41 ` Oleksii Kurochko
2026-01-14 15:04 ` Jan Beulich
2026-01-14 15:53 ` Oleksii Kurochko
2025-12-24 17:03 ` [PATCH v1 14/15] xen/riscv: handle hypervisor timer interrupts Oleksii Kurochko
2026-01-12 16:15 ` Jan Beulich
2026-01-13 16:53 ` Oleksii Kurochko
2025-12-24 17:03 ` [PATCH v1 15/15] xen/riscv: init tasklet subsystem Oleksii Kurochko
2026-01-12 16:20 ` Jan Beulich
2026-01-13 17:03 ` Oleksii Kurochko
2026-01-14 9:15 ` Jan Beulich
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=87bjin6cgd.fsf@epam.com \
--to=volodymyr_babchuk@epam.com \
--cc=alistair.francis@wdc.com \
--cc=andrew.cooper3@citrix.com \
--cc=anthony.perard@vates.tech \
--cc=connojdavis@gmail.com \
--cc=jbeulich@suse.com \
--cc=julien@xen.org \
--cc=michal.orzel@amd.com \
--cc=oleksii.kurochko@gmail.com \
--cc=roger.pau@citrix.com \
--cc=sstabellini@kernel.org \
--cc=xen-devel@lists.xenproject.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.