mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-05 06:32:30 +02:00
Kernel: Remove the enabled concept of IRQ handlers
An IRQ handler should always be ready to respond to any IRQ. We must remember that hardware can generate IRQs without any interaction from our code at all. Ignoring IRQs in such cases is obviously not the right thing to do.
This commit is contained in:
Notes:
sideshowbarker
2024-07-19 03:05:05 +09:00
Author: https://github.com/supercomputer7 Commit: https://github.com/SerenityOS/serenity/commit/ab87d42200e Pull-request: https://github.com/SerenityOS/serenity/pull/3322 Issue: https://github.com/SerenityOS/serenity/issues/2393
@@ -48,8 +48,6 @@ public:
|
||||
|
||||
u8 interrupt_number() const { return m_interrupt_number; }
|
||||
|
||||
bool is_enabled() const { return m_enabled; }
|
||||
|
||||
size_t get_invoking_count() const { return m_invoking_count; }
|
||||
|
||||
virtual size_t sharing_devices_count() const = 0;
|
||||
@@ -69,7 +67,6 @@ protected:
|
||||
|
||||
private:
|
||||
size_t m_invoking_count { 0 };
|
||||
bool m_enabled { false };
|
||||
u8 m_interrupt_number { 0 };
|
||||
bool m_disable_remap { false };
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user