1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 08:54:58 +00:00

Kernel: Mark sys$umount as not needing the big lock

All accesses to the mount table are already serialized by the actual
spinlock of that table.
This commit is contained in:
Liav A 2023-05-26 13:58:31 +03:00 committed by Andreas Kling
parent 902dac7f5f
commit 0be79f9bc2
2 changed files with 2 additions and 2 deletions

View file

@ -193,7 +193,7 @@ enum class NeedsBigProcessLock {
S(sysconf, NeedsBigProcessLock::No) \
S(times, NeedsBigProcessLock::No) \
S(umask, NeedsBigProcessLock::No) \
S(umount, NeedsBigProcessLock::Yes) \
S(umount, NeedsBigProcessLock::No) \
S(uname, NeedsBigProcessLock::No) \
S(unlink, NeedsBigProcessLock::No) \
S(unveil, NeedsBigProcessLock::No) \