Re: [PATCH] drm/panic: Use a decimal fifo to avoid u64 by u64 divide

2025-06-26 Thread Andrei Lalaev
On 26.06.25 16:19, Jocelyn Falempe wrote: > On 25/06/2025 00:18, Jocelyn Falempe wrote: >> On 24/06/2025 20:55, Andrei Lalaev wrote: >>> On 18.04.25 18:48, Jocelyn Falempe wrote: On 32bits ARM, u64/u64 is not supported [1], so change the algorithm to use a simple fifo with decimal digits

Re: [PATCH] drm/panic: Use a decimal fifo to avoid u64 by u64 divide

2025-06-26 Thread Jocelyn Falempe
On 25/06/2025 00:18, Jocelyn Falempe wrote: On 24/06/2025 20:55, Andrei Lalaev wrote: On 18.04.25 18:48, Jocelyn Falempe wrote: On 32bits ARM, u64/u64 is not supported [1], so change the algorithm to use a simple fifo with decimal digits as u8 instead. This is slower but should compile on all a

Re: [PATCH] drm/panic: Use a decimal fifo to avoid u64 by u64 divide

2025-06-25 Thread Andrei Lalaev
On 18.04.25 18:48, Jocelyn Falempe wrote: > On 32bits ARM, u64/u64 is not supported [1], so change the algorithm > to use a simple fifo with decimal digits as u8 instead. > This is slower but should compile on all architecture. > > Link: > https://lore.kernel.org/dri-devel/caniq72ke45eowckmhwhvmw

Re: [PATCH] drm/panic: Use a decimal fifo to avoid u64 by u64 divide

2025-06-24 Thread Jocelyn Falempe
On 24/06/2025 20:55, Andrei Lalaev wrote: On 18.04.25 18:48, Jocelyn Falempe wrote: On 32bits ARM, u64/u64 is not supported [1], so change the algorithm to use a simple fifo with decimal digits as u8 instead. This is slower but should compile on all architecture. Link: https://lore.kernel.org/

Re: [PATCH] drm/panic: Use a decimal fifo to avoid u64 by u64 divide

2025-05-02 Thread Jocelyn Falempe
On 18/04/2025 18:48, Jocelyn Falempe wrote: On 32bits ARM, u64/u64 is not supported [1], so change the algorithm to use a simple fifo with decimal digits as u8 instead. This is slower but should compile on all architecture. I applied it to drm-misc/drm-misc-next. Thanks for the reviews. -- J

Re: [PATCH] drm/panic: Use a decimal fifo to avoid u64 by u64 divide

2025-04-29 Thread Javier Martinez Canillas
Jocelyn Falempe writes: Hello Jocelyn, > On 32bits ARM, u64/u64 is not supported [1], so change the algorithm > to use a simple fifo with decimal digits as u8 instead. > This is slower but should compile on all architecture. > > Link: > https://lore.kernel.org/dri-devel/caniq72ke45eowckmhwhvmwx

Re: [PATCH] drm/panic: Use a decimal fifo to avoid u64 by u64 divide

2025-04-22 Thread Jocelyn Falempe
On 18/04/2025 20:18, Miguel Ojeda wrote: On Fri, Apr 18, 2025 at 6:51 PM Jocelyn Falempe wrote: Link: https://lore.kernel.org/dri-devel/caniq72ke45eowckmhwhvmwxc03dxr4rnxxkvx+hvwdblopz...@mail.gmail.com/ [1] Thanks for fixing that -- some tags for your consideration: Reported-by: Miguel O

Re: [PATCH] drm/panic: Use a decimal fifo to avoid u64 by u64 divide

2025-04-18 Thread Miguel Ojeda
On Fri, Apr 18, 2025 at 6:51 PM Jocelyn Falempe wrote: > > Link: > https://lore.kernel.org/dri-devel/caniq72ke45eowckmhwhvmwxc03dxr4rnxxkvx+hvwdblopz...@mail.gmail.com/ > [1] Thanks for fixing that -- some tags for your consideration: Reported-by: Miguel Ojeda Closes: https://lore.kernel.org

[PATCH] drm/panic: Use a decimal fifo to avoid u64 by u64 divide

2025-04-18 Thread Jocelyn Falempe
On 32bits ARM, u64/u64 is not supported [1], so change the algorithm to use a simple fifo with decimal digits as u8 instead. This is slower but should compile on all architecture. Link: https://lore.kernel.org/dri-devel/caniq72ke45eowckmhwhvmwxc03dxr4rnxxkvx+hvwdblopz...@mail.gmail.com/ [1] Sign