Re: [PATCH v3 08/14] xen/asm-generic: introduce generic div64.h header

2023-11-24 Thread Oleksii
Hi Julien, On Fri, 2023-11-24 at 11:29 +, Julien Grall wrote: > Hi, > > On 17/11/2023 12:24, Oleksii Kurochko wrote: > > All archs have the do_div implementation for BITS_PER_LONG == 64 > > so do_div64.h is moved to asm-generic. > > You are saying "all archs" but ... > > > > > x86 and PPC

Re: [PATCH v3 08/14] xen/asm-generic: introduce generic div64.h header

2023-11-24 Thread Julien Grall
Hi, On 17/11/2023 12:24, Oleksii Kurochko wrote: All archs have the do_div implementation for BITS_PER_LONG == 64 so do_div64.h is moved to asm-generic. You are saying "all archs" but ... x86 and PPC were switched to asm-generic version of div64.h. ... you only switch x86/PPC to div64.h.

Re: [PATCH v3 08/14] xen/asm-generic: introduce generic div64.h header

2023-11-21 Thread Jan Beulich
On 17.11.2023 13:24, Oleksii Kurochko wrote: > All archs have the do_div implementation for BITS_PER_LONG == 64 > so do_div64.h is moved to asm-generic. > > x86 and PPC were switched to asm-generic version of div64.h. > > Signed-off-by: Oleksii Kurochko Acked-by: Jan Beulich

[PATCH v3 08/14] xen/asm-generic: introduce generic div64.h header

2023-11-17 Thread Oleksii Kurochko
All archs have the do_div implementation for BITS_PER_LONG == 64 so do_div64.h is moved to asm-generic. x86 and PPC were switched to asm-generic version of div64.h. Signed-off-by: Oleksii Kurochko --- Changes in V3: - Drop x86 and PPC's div64.h. - Update the commit message. --- Changes in V2: