summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem/FileDescription.cpp
AgeCommit message (Expand)Author
2021-06-24Everywhere: Use nothrow new with `adopt_{ref,own}_if_nonnull`Daniel Bertalan
2021-06-16Kernel: Remove various other uses of ssize_tGunnar Beutner
2021-06-11Kernel: Use m_inode to stat in FileDescription::stat() if availableMax Wipfli
2021-06-08Kernel: Implement InodeFile::stat() and simplify FileDescription::stat()Max Wipfli
2021-06-04Kernel: Implement offset for `lseek` with `SEEK_END`Jelle Raaijmakers
2021-05-13Kernel: Remove unused header from FileDescription.cppBrian Gianforcaro
2021-05-13Kernel: Move FileDescription::get_dir_entries to KResultOr<ssize_t>Brian Gianforcaro
2021-05-13Kernel: Make FileDescription::create() APIs OOM safeBrian Gianforcaro
2021-05-12Kernel: Implement multi-watch InodeWatcher :^)sin-ack
2021-05-12Kernel+LibC: Make get_dir_entries syscall retriableMart G
2021-04-30Kernel: Closing a file descriptor should not always close the fileGunnar Beutner
2021-04-25Kernel: Remove the now defunct `LOCKER(..)` macro.Brian Gianforcaro
2021-04-23AK: Rename adopt() to adopt_ref()Andreas Kling
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-03-19Kernel: Make FileDescription::seek() return KResultOr<off_t>Andreas Kling
2021-03-19Kernel: Refactor storage stack with u64 as mmap offsetJean-Baptiste Boric
2021-03-08Kernel: Add bitwise operators for Thread::FileBlocker::BlockFlags enumBrian Gianforcaro
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-02-21Kernel: Handle overflow in FileDescription::seek(, SEEK_CUR)Brian Gianforcaro
2021-02-12Kernel: Add distinct InodeIndex typeAndreas Kling
2021-02-08Everywhere: Replace dbgln<flag>(...) with dbgln_if(flag, ...)AnotherTest
2021-02-03Kernel: Check for off_t overflow in FileDescription::read/writeAndreas Kling
2021-01-26Meta: Split debug defines into multiple headers.asynts
2021-01-25Kernel: Hoist VM range allocation up to sys$mmap() itselfAndreas Kling
2021-01-25Everywhere: Debug macros instead of constexpr.asynts
2021-01-22Everywhere: Replace a bundle of dbg with dbgln.asynts
2021-01-03Kernel: Improve ProcFS behavior in low memory conditionsTom
2020-12-21Everywhere: Switch from (void) to [[maybe_unused]] (#4473)Lenny Maiorani
2020-12-18Kernel: Move KBufferBuilder to the fallible KBuffer APIAndreas Kling
2020-11-30Kernel: Move block condition evaluation out of the SchedulerTom
2020-11-24Kernel: Remove unnecessary SmapDisablers in FileDescriptionAndreas Kling
2020-09-16Kernel: Fix kernel crash in get_dir_entries when buffer too small.asynts
2020-09-15FileSystem: Use OutputMemoryStream instead of BufferStream.asynts
2020-09-13Kernel: Make copy_to/from_user safe and remove unnecessary checksTom
2020-09-06Kernel: Virtualize the File::stat() operationAndreas Kling
2020-09-06Kernel: Rename FileDescription::fstat() => stat()Andreas Kling
2020-08-29FileSystem: Convert file types to DT_* types at a later stageItamar
2020-08-18Kernel: Add DirectoryEntryView for VFS directory traversalAndreas Kling
2020-08-11Kernel: Make Inode::read_entire() return a KBuffer (not ByteBuffer)Andreas Kling
2020-08-09Kernel: Fix my result propagation bug @BenWiederhake spottedBrian Gianforcaro
2020-08-05Kernel: Suppress remaining unobserved KResult return codesBrian Gianforcaro
2020-08-05Kernel: Propagate a few KResults properly in FileSystem subsystemsBrian Gianforcaro
2020-08-04Kernel: Make File::write() and File::read() return KResultOr<size_t>Andreas Kling
2020-06-17Kernel: Use symbolic constants for file modesSergey Bugaev
2020-06-02Kernel: Allow File::close() to failSergey Bugaev
2020-05-29Kernel: Pass a FileDescription to File::chmod() and File::chown()Sergey Bugaev
2020-05-26Kernel: Plumb KResult through FileDescription::read_entire_file() implementat...Brian Gianforcaro
2020-05-23Kernel+LibC: Fix various build issues introduced by ssize_tAndreas Kling
2020-05-22Kernel: Return ESPIPE when seeking an unseekableSergey Bugaev
2020-04-18Kernel: Use shared locking mode in some placesSergey Bugaev