index
:
serenity
master
topic/trivial_docs
The Serenity Operating System 🐞
cos
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Kernel
/
FileSystem
/
Plan9FileSystem.cpp
Age
Commit message (
Expand
)
Author
2021-08-14
Kernel: Make FileSystem::initialize() return KResult
Andreas Kling
2021-08-14
Kernel: Make Inode::lookup() return a KResultOr<NonnullRefPtr<Inode>>
Andreas Kling
2021-08-06
Kernel: Add convenience values to the Memory::Region::Access enum
Andreas Kling
2021-08-06
Kernel: Move Kernel/Memory/ code into Kernel::Memory namespace
Andreas Kling
2021-08-06
Kernel: Fix handful of remaining "return -EFOO" mistakes
Andreas Kling
2021-07-18
Kernel: Make FileSystem::root_inode() return a plain Inode&
Andreas Kling
2021-07-18
Kernel: Rename Locker => MutexLocker
Andreas Kling
2021-07-17
Kernel: Remove Inode::directory_entry_count()
Andreas Kling
2021-07-17
Kernel: Make Inode::create_child() take the name as a StringView
Andreas Kling
2021-07-17
Kernel: Rename Inode::m_lock => m_inode_lock
Andreas Kling
2021-07-11
Kernel: Rename FileBackedFS => FileBackedFileSystem
Andreas Kling
2021-07-11
Kernel: Rename FS => FileSystem
Andreas Kling
2021-06-24
Everywhere: Use nothrow new with `adopt_{ref,own}_if_nonnull`
Daniel Bertalan
2021-06-17
Kernel: Remove obsolete size_t casts
Gunnar Beutner
2021-06-16
Kernel: Remove various other uses of ssize_t
Gunnar Beutner
2021-05-31
AK+Kernel: Disallow implicitly lifting pointers to OwnPtr's
Ali Mohammad Pur
2021-05-02
Kernel: Change Inode::{read/write}_bytes interface to KResultOr<ssize_t>
Brian Gianforcaro
2021-04-25
Kernel: Remove the now defunct `LOCKER(..)` macro.
Brian Gianforcaro
2021-04-23
AK: Rename adopt() to adopt_ref()
Andreas Kling
2021-04-22
Everything: Move to SPDX license identifiers in all files.
Brian Gianforcaro
2021-02-23
Everywhere: Rename ASSERT => VERIFY
Andreas Kling
2021-01-20
Kernel+LibC: Turn errno codes into a strongly typed enum
Andreas Kling
2021-01-12
AK: Simplify constructors and conversions from nullptr_t
Lenny Maiorani
2021-01-11
Everywhere: Replace a bundle of dbg with dbgln.
asynts
2021-01-09
Everywhere: Replace a bundle of dbg with dbgln.
asynts
2021-01-04
Kernel: Specify default memory order for some non-synchronizing Atomics
Tom
2020-12-31
Everywhere: Re-format with clang-format-11
Linus Groh
2020-12-30
Kernel: Consolidate the various BlockCondition::unblock variants
Tom
2020-12-21
Everywhere: Switch from (void) to [[maybe_unused]] (#4473)
Lenny Maiorani
2020-12-18
Kernel: Move KBufferBuilder to the fallible KBuffer API
Andreas Kling
2020-11-30
Kernel: Move block condition evaluation out of the Scheduler
Tom
2020-09-13
Kernel: Make copy_to/from_user safe and remove unnecessary checks
Tom
2020-08-18
Kernel: Add DirectoryEntryView for VFS directory traversal
Andreas Kling
2020-08-16
AK: Rename KB, MB, GB to KiB, MiB, GiB
Nico Weber
2020-08-05
Kernel: Suppress remaining unobserved KResult return codes
Brian Gianforcaro
2020-08-05
Kernel: Make Inode::directory_entry_count errors observable.
Brian Gianforcaro
2020-08-04
Kernel: Make File::write() and File::read() return KResultOr<size_t>
Andreas Kling
2020-08-03
Kernel: Consolidate timeout logic
Tom
2020-08-03
Kernel: Fix a few Thread::block related races
Tom
2020-07-07
Kernel: Fix checking BlockResult
Tom
2020-07-05
Kernel: Add Plan9FS :^)
Sergey Bugaev