Okay let's just not have this broken locking at all right now.

I think I should just protect access to shared data structures
and eventually do read/write atomicity locks at the inode level.
This commit is contained in:
Andreas Kling 2018-10-29 22:43:39 +01:00
commit b1ff62f605
Notes: sideshowbarker 2024-07-19 18:36:47 +09:00
7 changed files with 16 additions and 38 deletions

View file

@ -25,8 +25,6 @@ bool additionWouldOverflow(Unix::off_t a, Unix::off_t b)
int FileHandle::stat(Unix::stat* buffer)
{
LOCKER(VirtualFileSystem::lock());
if (!m_vnode)
return -EBADF;