diff options
Diffstat (limited to 'Kernel/Graphics')
-rw-r--r-- | Kernel/Graphics/Console/BootFramebufferConsole.h | 2 | ||||
-rw-r--r-- | Kernel/Graphics/Console/GenericFramebufferConsole.h | 2 | ||||
-rw-r--r-- | Kernel/Graphics/Console/VGATextModeConsole.h | 2 | ||||
-rw-r--r-- | Kernel/Graphics/DisplayConnector.h | 6 | ||||
-rw-r--r-- | Kernel/Graphics/GraphicsManagement.h | 2 | ||||
-rw-r--r-- | Kernel/Graphics/Intel/NativeDisplayConnector.h | 2 | ||||
-rw-r--r-- | Kernel/Graphics/VMWare/GraphicsAdapter.h | 4 | ||||
-rw-r--r-- | Kernel/Graphics/VirtIOGPU/GraphicsAdapter.h | 4 |
8 files changed, 12 insertions, 12 deletions
diff --git a/Kernel/Graphics/Console/BootFramebufferConsole.h b/Kernel/Graphics/Console/BootFramebufferConsole.h index b9819f5e12..1236656b50 100644 --- a/Kernel/Graphics/Console/BootFramebufferConsole.h +++ b/Kernel/Graphics/Console/BootFramebufferConsole.h @@ -39,7 +39,7 @@ protected: OwnPtr<Memory::Region> m_framebuffer; u8* m_framebuffer_data {}; - mutable Spinlock m_lock { LockRank::None }; + mutable Spinlock<LockRank::None> m_lock {}; }; } diff --git a/Kernel/Graphics/Console/GenericFramebufferConsole.h b/Kernel/Graphics/Console/GenericFramebufferConsole.h index 0b38e43097..88ace335bd 100644 --- a/Kernel/Graphics/Console/GenericFramebufferConsole.h +++ b/Kernel/Graphics/Console/GenericFramebufferConsole.h @@ -81,7 +81,7 @@ protected: virtual void clear_glyph(size_t x, size_t y) override; - mutable Spinlock m_lock { LockRank::None }; + mutable Spinlock<LockRank::None> m_lock {}; }; } diff --git a/Kernel/Graphics/Console/VGATextModeConsole.h b/Kernel/Graphics/Console/VGATextModeConsole.h index e67125b2dc..f487b1bfae 100644 --- a/Kernel/Graphics/Console/VGATextModeConsole.h +++ b/Kernel/Graphics/Console/VGATextModeConsole.h @@ -38,7 +38,7 @@ private: explicit VGATextModeConsole(NonnullOwnPtr<Memory::Region>); - mutable Spinlock m_vga_lock { LockRank::None }; + mutable Spinlock<LockRank::None> m_vga_lock {}; NonnullOwnPtr<Memory::Region> m_vga_window_region; VirtualAddress m_current_vga_window; diff --git a/Kernel/Graphics/DisplayConnector.h b/Kernel/Graphics/DisplayConnector.h index fd7e883070..157dffcbb0 100644 --- a/Kernel/Graphics/DisplayConnector.h +++ b/Kernel/Graphics/DisplayConnector.h @@ -114,14 +114,14 @@ protected: ErrorOr<void> initialize_edid_for_generic_monitor(Optional<Array<u8, 3>> manufacturer_id_string); - mutable Spinlock m_control_lock { LockRank::None }; + mutable Spinlock<LockRank::None> m_control_lock {}; mutable Mutex m_flushing_lock; bool m_console_mode { false }; bool m_vertical_offsetted { false }; - mutable Spinlock m_modeset_lock { LockRank::None }; + mutable Spinlock<LockRank::None> m_modeset_lock {}; ModeSetting m_current_mode_setting {}; Optional<EDID::Parser> m_edid_parser; @@ -165,7 +165,7 @@ private: LockRefPtr<Memory::SharedFramebufferVMObject> m_shared_framebuffer_vmobject; LockWeakPtr<Process> m_responsible_process; - Spinlock m_responsible_process_lock { LockRank::None }; + Spinlock<LockRank::None> m_responsible_process_lock {}; IntrusiveListNode<DisplayConnector, LockRefPtr<DisplayConnector>> m_list_node; }; diff --git a/Kernel/Graphics/GraphicsManagement.h b/Kernel/Graphics/GraphicsManagement.h index 17e17bd06b..ec771c6528 100644 --- a/Kernel/Graphics/GraphicsManagement.h +++ b/Kernel/Graphics/GraphicsManagement.h @@ -64,7 +64,7 @@ private: unsigned m_current_minor_number { 0 }; - SpinlockProtected<IntrusiveList<&DisplayConnector::m_list_node>> m_display_connector_nodes { LockRank::None }; + SpinlockProtected<IntrusiveList<&DisplayConnector::m_list_node>, LockRank::None> m_display_connector_nodes {}; #if ARCH(X86_64) OwnPtr<VGAIOArbiter> m_vga_arbiter; #endif diff --git a/Kernel/Graphics/Intel/NativeDisplayConnector.h b/Kernel/Graphics/Intel/NativeDisplayConnector.h index a5d77a20b1..0cd60a4358 100644 --- a/Kernel/Graphics/Intel/NativeDisplayConnector.h +++ b/Kernel/Graphics/Intel/NativeDisplayConnector.h @@ -154,7 +154,7 @@ private: Optional<IntelGraphics::PLLSettings> create_pll_settings(u64 target_frequency, u64 reference_clock, IntelGraphics::PLLMaxSettings const&); - mutable Spinlock m_registers_lock { LockRank::None }; + mutable Spinlock<LockRank::None> m_registers_lock {}; LockRefPtr<Graphics::GenericFramebufferConsole> m_framebuffer_console; const PhysicalAddress m_registers; diff --git a/Kernel/Graphics/VMWare/GraphicsAdapter.h b/Kernel/Graphics/VMWare/GraphicsAdapter.h index 9f414dadb8..705b60865e 100644 --- a/Kernel/Graphics/VMWare/GraphicsAdapter.h +++ b/Kernel/Graphics/VMWare/GraphicsAdapter.h @@ -51,8 +51,8 @@ private: Memory::TypedMapping<VMWareDisplayFIFORegisters volatile> m_fifo_registers; LockRefPtr<VMWareDisplayConnector> m_display_connector; mutable NonnullOwnPtr<IOWindow> m_registers_io_window; - mutable Spinlock m_io_access_lock { LockRank::None }; - mutable RecursiveSpinlock m_operation_lock { LockRank::None }; + mutable Spinlock<LockRank::None> m_io_access_lock {}; + mutable RecursiveSpinlock<LockRank::None> m_operation_lock {}; }; } diff --git a/Kernel/Graphics/VirtIOGPU/GraphicsAdapter.h b/Kernel/Graphics/VirtIOGPU/GraphicsAdapter.h index 2b5bedccb6..5b93a51820 100644 --- a/Kernel/Graphics/VirtIOGPU/GraphicsAdapter.h +++ b/Kernel/Graphics/VirtIOGPU/GraphicsAdapter.h @@ -112,11 +112,11 @@ private: VirtIO::Configuration const* m_device_configuration { nullptr }; // Note: Resource ID 0 is invalid, and we must not allocate 0 as the first resource ID. Atomic<u32> m_resource_id_counter { 1 }; - SpinlockProtected<Bitmap> m_active_context_ids { LockRank::None }; + SpinlockProtected<Bitmap, LockRank::None> m_active_context_ids {}; LockRefPtr<VirtIOGPU3DDevice> m_3d_device; bool m_has_virgl_support { false }; - Spinlock m_operation_lock { LockRank::None }; + Spinlock<LockRank::None> m_operation_lock {}; NonnullOwnPtr<Memory::Region> m_scratch_space; }; } |