1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 22:28:11 +00:00

Kernel: Annotate SpinlockProtected<PacketList> in NetworkAdapter class

This commit is contained in:
Liav A 2022-08-20 09:44:53 +03:00 committed by Brian Gianforcaro
parent 4314c25cf2
commit 00e59e8ab7

View file

@ -109,7 +109,7 @@ private:
PacketList m_packet_queue;
size_t m_packet_queue_size { 0 };
SpinlockProtected<PacketList> m_unused_packets;
SpinlockProtected<PacketList> m_unused_packets { LockRank::None };
NonnullOwnPtr<KString> m_name;
u32 m_packets_in { 0 };
u32 m_bytes_in { 0 };