summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem/FileDescription.cpp
AgeCommit message (Expand)Author
2020-05-22Kernel: Return ESPIPE when seeking an unseekableSergey Bugaev
2020-04-18Kernel: Use shared locking mode in some placesSergey Bugaev
2020-04-10Kernel: Add explicit offset parameter to File::read etcConrad Pankoff
2020-04-06Kernel: Change Ext2FS to be backed by a file instead of a block deviceLiav A
2020-04-03Revert "Kernel: Change Ext2FS to be backed by a file instead of a block device"Andreas Kling
2020-04-02Kernel: Change Ext2FS to be backed by a file instead of a block deviceLiav A
2020-03-10Kernel: Get rid of SmapDisabler in sys$fstat()Andreas Kling
2020-02-28Kernel: Implement basic support for sys$mmap() with MAP_PRIVATEAndreas Kling
2020-02-20AK: Use size_t for ByteBuffer sizesAndreas Kling
2020-02-16Kernel: Move all code into the Kernel namespaceAndreas Kling
2020-02-08Kernel: Make File::truncate() take a u64Andreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-12Kernel: read() and write() should EOVERFLOW if (offset+size) overflowsAndreas Kling
2020-01-12Kernel: Add a basic lock to FileDescriptionAndreas Kling
2020-01-12Kernel: Allow getting a Device from a FileDescriptionSergey Bugaev
2020-01-05Kernel: Start implementing x86 SMAP supportAndreas Kling
2020-01-03Kernel: Allow fchmod() and fchown() on pre-bind() local socketsAndreas Kling
2020-01-02Kernel: Remove broken implementation of Unix SHMAndreas Kling
2019-11-26Kernel: Handle fstat() on socketsSergey Bugaev
2019-11-05Kernel: Implement O_DIRECT open() flag to bypass disk cachesAndreas Kling
2019-11-04Kernel: Make File's can_read/can_write take a const FileDescription&Andreas Kling
2019-11-04Kernel: Don't update fd offset on read/write errorAndreas Kling
2019-10-25Kernel: FileDescription::is_directory() should not assert !is_fifo()Andreas Kling
2019-09-30ByteBuffer: Remove pointer() in favor of data()Andreas Kling
2019-09-17Kernel: Do not panic on fstat(fifo)Sergey Bugaev
2019-09-08Kernel: Remove spammy logging about absolute_path() on non-custodiesAndreas Kling
2019-08-11Kernel: Move socket role tracking to the Socket class itselfSergey Bugaev
2019-08-11Net: Simplify how LocalSocket tracks open fdsSergey Bugaev
2019-08-11Kernel: Fix cloning file descriptions on forkSergey Bugaev
2019-08-11FileDescription: Disallow construction with a null FileAndreas Kling
2019-07-19Kernel: Some small refinements to the thread blockers.Andreas Kling
2019-07-11Kernel: Remove use of copy_ref() in favor of regular RefPtr copies.Andreas Kling
2019-07-09Kernel: Move SharedMemory.{cpp,h} into FileSystem/Andreas Kling
2019-07-03AK: Rename the common integer typedefs to make it obvious what they are.Andreas Kling
2019-06-21AK: Rename RetainPtr => RefPtr and Retained => NonnullRefPtr.Andreas Kling
2019-06-13Kernel: Rename "descriptor" to "description" where appropriate.Andreas Kling
2019-06-07Kernel: Rename LinearAddress => VirtualAddress.Andreas Kling
2019-06-07Kernel: Run clang-format on everything.Andreas Kling
2019-06-07Kernel: Rename FileDescriptor to FileDescription.Andreas Kling