Changeset 74a165cc in mainline for kernel/generic/src/ddi/irq.c
- Timestamp:
- 2025-02-06T10:13:17Z (38 hours ago)
- Parents:
- accdf882 (diff), 455241b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2025-02-06 10:13:17)
- git-committer:
- GitHub <noreply@…> (2025-02-06 10:13:17)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ddi/irq.c
raccdf882 r74a165cc 50 50 #include <arch.h> 51 51 52 slab_cache_t *irq_cache = NULL;53 54 52 /** Spinlock protecting the kernel IRQ hash table 55 53 * … … 96 94 { 97 95 last_inr = inrs - 1; 98 99 irq_cache = slab_cache_create("irq_t", sizeof(irq_t), 0, NULL, NULL,100 FRAME_ATOMIC);101 assert(irq_cache);102 96 103 97 hash_table_create(&irq_uspace_hash_table, chains, 0, &irq_ht_ops);
Note:
See TracChangeset
for help on using the changeset viewer.