Applied, thanks!

Damien Zammit, le lun. 21 oct. 2024 03:22:22 +0000, a ecrit:
> This fixes a spurious intnull(9) from occurring on real hardware
> during ACPI startup when compiled with --enable-apic
> 
> ---
>  i386/i386at/ioapic.c | 9 +++++++++
>  1 file changed, 9 insertions(+)
> 
> diff --git a/i386/i386at/ioapic.c b/i386/i386at/ioapic.c
> index 2553a2c9..845d1249 100644
> --- a/i386/i386at/ioapic.c
> +++ b/i386/i386at/ioapic.c
> @@ -402,6 +402,9 @@ ioapic_configure(void)
>          entry.both.vector = IOAPIC_INT_BASE + gsi;
>          ioapic_write_entry(apic, pin, entry.both);
>  
> +        /* Set initial state to masked */
> +        mask_irq(pin);
> +
>          /* Timer workaround for x86 */
>          if (pin == 0) {
>              /* Save timer info */
> @@ -431,6 +434,9 @@ ioapic_configure(void)
>          }
>          entry.both.vector = IOAPIC_INT_BASE + gsi;
>          ioapic_write_entry(apic, pin, entry.both);
> +
> +        /* Set initial state to masked */
> +        mask_irq(pin);
>      }
>  
>      printf("IOAPIC 0 configured with GSI 0-%d\n", ngsis - 1);
> @@ -452,6 +458,9 @@ ioapic_configure(void)
>              }
>              entry.both.vector = IOAPIC_INT_BASE + gsi;
>              ioapic_write_entry(apic, pin, entry.both);
> +
> +            /* Set initial state to masked */
> +            mask_irq(pin + ngsis);
>          }
>  
>          printf("IOAPIC 1 configured with GSI %d-%d\n", ngsis, ngsis + ngsis2 
> - 1);
> -- 
> 2.45.2
> 
> 
> 

-- 
Samuel
Linux, c'est simple : ça s'adresse à une machine qui est parfois un peu
maraboutée mais qui d'habitude n'a pas d'états d'âme. Sur Usenet y'a
plein d'humains et de primates, et ça devient vraiment gore par moment.
-+- TP in : Guide du linuxien pervers - "Le linuxien a-t-il une âme ?" -+-

Reply via email to