Re: [PATCH v2 05/19] host-utils: Add muldiv64_round_up

2023-09-06 Thread Cédric Le Goater
On 9/4/23 15:07, Nicholas Piggin wrote: On Sat Sep 2, 2023 at 3:02 AM AEST, Richard Henderson wrote: On 9/1/23 04:51, Cédric Le Goater wrote: Adding more reviewers since this patch is modifying a common service. Thanks, C. On 8/8/23 06:19, Nicholas Piggin wrote: This will be used for conve

Re: [PATCH v2 05/19] host-utils: Add muldiv64_round_up

2023-09-05 Thread Philippe Mathieu-Daudé
On 5/9/23 05:56, Nicholas Piggin wrote: On Mon Sep 4, 2023 at 11:30 PM AEST, Cédric Le Goater wrote: Someone really ought to take over PPC. Daniel and I are real busy on other subsystems. Volunteers ? I suppose I should. I could try do the next PR after this one is merged. Thanks a lot for

Re: [PATCH v2 05/19] host-utils: Add muldiv64_round_up

2023-09-04 Thread Cédric Le Goater
On 9/5/23 05:56, Nicholas Piggin wrote: On Mon Sep 4, 2023 at 11:30 PM AEST, Cédric Le Goater wrote: On 9/4/23 15:07, Nicholas Piggin wrote: On Sat Sep 2, 2023 at 3:02 AM AEST, Richard Henderson wrote: On 9/1/23 04:51, Cédric Le Goater wrote: Adding more reviewers since this patch is modifyin

Re: [PATCH v2 05/19] host-utils: Add muldiv64_round_up

2023-09-04 Thread Nicholas Piggin
On Mon Sep 4, 2023 at 11:30 PM AEST, Cédric Le Goater wrote: > On 9/4/23 15:07, Nicholas Piggin wrote: > > On Sat Sep 2, 2023 at 3:02 AM AEST, Richard Henderson wrote: > >> On 9/1/23 04:51, Cédric Le Goater wrote: > >>> Adding more reviewers since this patch is modifying a common service. > >>> > >

Re: [PATCH v2 05/19] host-utils: Add muldiv64_round_up

2023-09-04 Thread Cédric Le Goater
On 9/4/23 15:07, Nicholas Piggin wrote: On Sat Sep 2, 2023 at 3:02 AM AEST, Richard Henderson wrote: On 9/1/23 04:51, Cédric Le Goater wrote: Adding more reviewers since this patch is modifying a common service. Thanks, C. On 8/8/23 06:19, Nicholas Piggin wrote: This will be used for conve

Re: [PATCH v2 05/19] host-utils: Add muldiv64_round_up

2023-09-04 Thread Nicholas Piggin
On Sat Sep 2, 2023 at 3:02 AM AEST, Richard Henderson wrote: > On 9/1/23 04:51, Cédric Le Goater wrote: > > Adding more reviewers since this patch is modifying a common service. > > > > Thanks, > > > > C. > > > > > > On 8/8/23 06:19, Nicholas Piggin wrote: > >> This will be used for converting

Re: [PATCH v2 05/19] host-utils: Add muldiv64_round_up

2023-09-01 Thread Richard Henderson
On 9/1/23 04:51, Cédric Le Goater wrote: Adding more reviewers since this patch is modifying a common service. Thanks, C. On 8/8/23 06:19, Nicholas Piggin wrote: This will be used for converting time intervals in different base units to host units, for the purpose of scheduling timers to emu

Re: [PATCH v2 05/19] host-utils: Add muldiv64_round_up

2023-09-01 Thread Cédric Le Goater
Adding more reviewers since this patch is modifying a common service. Thanks, C. On 8/8/23 06:19, Nicholas Piggin wrote: This will be used for converting time intervals in different base units to host units, for the purpose of scheduling timers to emulate target timers. Timers typically must

[PATCH v2 05/19] host-utils: Add muldiv64_round_up

2023-08-07 Thread Nicholas Piggin
This will be used for converting time intervals in different base units to host units, for the purpose of scheduling timers to emulate target timers. Timers typically must not fire before their requested expiry time but may fire some time afterward, so rounding up is the right way to implement thes