File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -175,8 +175,8 @@ create_rte_for_legacy_irq(uint32_t irq, uint32_t vr)
175
175
rte .full |= DEFAULT_DELIVERY_MODE ;
176
176
rte .full |= (IOAPIC_RTE_INTVEC & (uint64_t )vr );
177
177
178
- /* FIXME: Fixed to active Low? */
179
- rte .full |= IOAPIC_RTE_INTALO ;
178
+ /* Fixed to active high */
179
+ rte .full |= IOAPIC_RTE_INTAHI ;
180
180
181
181
/* Dest field: legacy irq fixed to CPU0 */
182
182
rte .full |= (1UL << IOAPIC_RTE_DEST_SHIFT );
@@ -200,8 +200,8 @@ create_rte_for_gsi_irq(uint32_t irq, uint32_t vr)
200
200
rte .full |= DEFAULT_DELIVERY_MODE ;
201
201
rte .full |= (IOAPIC_RTE_INTVEC & (uint64_t )vr );
202
202
203
- /* FIXME: Fixed to active Low? */
204
- rte .full |= IOAPIC_RTE_INTALO ;
203
+ /* Fixed to active high */
204
+ rte .full |= IOAPIC_RTE_INTAHI ;
205
205
206
206
/* Dest field */
207
207
rte .full |= ((uint64_t )ALL_CPUS_MASK << IOAPIC_RTE_DEST_SHIFT );
You can’t perform that action at this time.
0 commit comments