Re: [PATCH] Fix handling of AVR interrupts above 33.

2023-06-18 Thread Philippe Mathieu-Daudé
On 18/6/23 08:56, Michael Tokarev wrote: Applied to the trivial tree, thank you! Thanks. Do you mind updating the patch subject to: "target/avr: Fix handling of interrupts above 33"?

Re: [PATCH] Fix handling of AVR interrupts above 33.

2023-06-17 Thread Michael Tokarev
Applied to the trivial tree, thank you! /mjt

Re: [PATCH] Fix handling of AVR interrupts above 33.

2023-06-14 Thread Michael Rolnik
Reviewed-by: Michael Rolnik On Wed, Jun 14, 2023 at 3:22 PM Philippe Mathieu-Daudé wrote: > On 14/6/23 16:07, Lucas Dietrich wrote: > > This commit addresses a bug in the AVR interrupt handling code. > > The modification involves replacing the usage of the ctz32 function > > with ctz64 to ensur

Re: [PATCH] Fix handling of AVR interrupts above 33.

2023-06-14 Thread Philippe Mathieu-Daudé
On 14/6/23 16:07, Lucas Dietrich wrote: This commit addresses a bug in the AVR interrupt handling code. The modification involves replacing the usage of the ctz32 function with ctz64 to ensure proper handling of interrupts above 33 in the AVR target. Previously, timers 3, 4, and 5 interrupts wer

[PATCH] Fix handling of AVR interrupts above 33.

2023-06-14 Thread Lucas Dietrich
This commit addresses a bug in the AVR interrupt handling code. The modification involves replacing the usage of the ctz32 function with ctz64 to ensure proper handling of interrupts above 33 in the AVR target. Previously, timers 3, 4, and 5 interrupts were not functioning correctly because most o

Re: [PATCH] Fix handling of AVR interrupts above 33.

2023-06-13 Thread Richard Henderson
On 6/13/23 21:34, Lucas Dietrich wrote: This commit addresses a bug in the AVR interrupt handling code. The modification involves replacing the usage of the ctz32 function with ctz64 to ensure proper handling of interrupts above 33 in the AVR target. Previously, timers 3, 4, and 5 interrupts wer

[PATCH] Fix handling of AVR interrupts above 33.

2023-06-13 Thread Lucas Dietrich
This commit addresses a bug in the AVR interrupt handling code. The modification involves replacing the usage of the ctz32 function with ctz64 to ensure proper handling of interrupts above 33 in the AVR target. Previously, timers 3, 4, and 5 interrupts were not functioning correctly because most o