1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-10-17 14:52:07 +00:00
serenity/Kernel/FileSystem/SysFS/Subsystems/Kernel
kleines Filmröllchen a6a439243f Kernel: Turn lock ranks into template parameters
This step would ideally not have been necessary (increases amount of
refactoring and templates necessary, which in turn increases build
times), but it gives us a couple of nice properties:
- SpinlockProtected inside Singleton (a very common combination) can now
  obtain any lock rank just via the template parameter. It was not
  previously possible to do this with SingletonInstanceCreator magic.
- SpinlockProtected's lock rank is now mandatory; this is the majority
  of cases and allows us to see where we're still missing proper ranks.
- The type already informs us what lock rank a lock has, which aids code
  readability and (possibly, if gdb cooperates) lock mismatch debugging.
- The rank of a lock can no longer be dynamic, which is not something we
  wanted in the first place (or made use of). Locks randomly changing
  their rank sounds like a disaster waiting to happen.
- In some places, we might be able to statically check that locks are
  taken in the right order (with the right lock rank checking
  implementation) as rank information is fully statically known.

This refactoring even more exposes the fact that Mutex has no lock rank
capabilites, which is not fixed here.
2023-01-02 18:15:27 -05:00
..
Network Kernel: Allow read access sparingly to some /sys/kernel directory nodes 2022-12-03 05:47:58 -07:00
Variables Kernel: Turn lock ranks into template parameters 2023-01-02 18:15:27 -05:00
CommandLine.cpp Kernel: Introduce global variables and stats in /sys/kernel directory 2022-10-25 15:33:34 -06:00
CommandLine.h Kernel: Introduce global variables and stats in /sys/kernel directory 2022-10-25 15:33:34 -06:00
CPUInfo.cpp Kernel: Reorganize Arch/x86 directory to Arch/x86_64 after i686 removal 2022-12-28 11:53:41 +01:00
CPUInfo.h Kernel: Introduce global variables and stats in /sys/kernel directory 2022-10-25 15:33:34 -06:00
Directory.cpp Kernel: Add support for jails 2022-11-05 18:00:58 -06:00
Directory.h Kernel: Introduce global variables and stats in /sys/kernel directory 2022-10-25 15:33:34 -06:00
DiskUsage.cpp Kernel: Introduce global variables and stats in /sys/kernel directory 2022-10-25 15:33:34 -06:00
DiskUsage.h Kernel: Allow read access sparingly to some /sys/kernel directory nodes 2022-12-03 05:47:58 -07:00
GlobalInformation.cpp Kernel: Disallow jailed processes to read files in /sys/kernel directory 2022-12-03 05:47:58 -07:00
GlobalInformation.h Kernel: Disallow jailed processes to read files in /sys/kernel directory 2022-12-03 05:47:58 -07:00
Interrupts.cpp Kernel+lsirq: Track per-CPU IRQ handler call counts 2022-11-19 15:39:30 +01:00
Interrupts.h Kernel: Allow read access sparingly to some /sys/kernel directory nodes 2022-12-03 05:47:58 -07:00
Jails.cpp Kernel: Add support for jails 2022-11-05 18:00:58 -06:00
Jails.h Kernel: Add support for jails 2022-11-05 18:00:58 -06:00
Keymap.cpp Kernel: Introduce global variables and stats in /sys/kernel directory 2022-10-25 15:33:34 -06:00
Keymap.h Kernel: Allow read access sparingly to some /sys/kernel directory nodes 2022-12-03 05:47:58 -07:00
LoadBase.cpp Kernel: Introduce global variables and stats in /sys/kernel directory 2022-10-25 15:33:34 -06:00
LoadBase.h Kernel: Introduce global variables and stats in /sys/kernel directory 2022-10-25 15:33:34 -06:00
Log.cpp Kernel: Introduce global variables and stats in /sys/kernel directory 2022-10-25 15:33:34 -06:00
Log.h Kernel: Introduce global variables and stats in /sys/kernel directory 2022-10-25 15:33:34 -06:00
MemoryStatus.cpp Kernel: Introduce global variables and stats in /sys/kernel directory 2022-10-25 15:33:34 -06:00
MemoryStatus.h Kernel: Allow read access sparingly to some /sys/kernel directory nodes 2022-12-03 05:47:58 -07:00
PowerStateSwitch.cpp Kernel: Reorganize Arch/x86 directory to Arch/x86_64 after i686 removal 2022-12-28 11:53:41 +01:00
PowerStateSwitch.h Kernel: Split the SysFS core files into smaller components 2022-11-08 02:54:48 -07:00
Processes.cpp Kernel+LibCore+LibC: Implement support for forcing unveil on exec 2022-11-26 12:42:15 -07:00
Processes.h Kernel: Allow read access sparingly to some /sys/kernel directory nodes 2022-12-03 05:47:58 -07:00
Profile.cpp Kernel: Introduce global variables and stats in /sys/kernel directory 2022-10-25 15:33:34 -06:00
Profile.h Kernel: Introduce global variables and stats in /sys/kernel directory 2022-10-25 15:33:34 -06:00
SystemMode.cpp Kernel: Introduce global variables and stats in /sys/kernel directory 2022-10-25 15:33:34 -06:00
SystemMode.h Kernel: Introduce global variables and stats in /sys/kernel directory 2022-10-25 15:33:34 -06:00
SystemStatistics.cpp Kernel: Introduce global variables and stats in /sys/kernel directory 2022-10-25 15:33:34 -06:00
SystemStatistics.h Kernel: Allow read access sparingly to some /sys/kernel directory nodes 2022-12-03 05:47:58 -07:00
Uptime.cpp Kernel: Introduce global variables and stats in /sys/kernel directory 2022-10-25 15:33:34 -06:00
Uptime.h Kernel: Allow read access sparingly to some /sys/kernel directory nodes 2022-12-03 05:47:58 -07:00