summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem/TmpFS.h
AgeCommit message (Expand)Author
2021-09-06Kernel: Tidy up TmpFS and TmpFSInode constructionAndreas Kling
2021-09-05Kernel: Make FileSystem::get_inode() return KResultOr<NRP<Inode>>Andreas Kling
2021-09-01Kernel: Pass InodeMetadata by reference in TmpFSInode::createBrian Gianforcaro
2021-08-29Kernel: Strongly typed user & group ID'sAndreas Kling
2021-08-14Kernel: Make FileSystem::initialize() return KResultAndreas Kling
2021-08-14Kernel: Make Inode::lookup() return a KResultOr<NonnullRefPtr<Inode>>Andreas Kling
2021-07-18Kernel/TmpFS: Remove some unnecessary includesAndreas Kling
2021-07-18Kernel/TmpFS: Use IntrusiveList and KString for OOM safetyAndreas Kling
2021-07-18Kernel: Make FileSystem::root_inode() return a plain Inode&Andreas Kling
2021-07-17Kernel: Remove Inode::directory_entry_count()Andreas Kling
2021-07-17Kernel: Make Inode::create_child() take the name as a StringViewAndreas Kling
2021-07-17Kernel: Make FileSystem::class_name() return a StringViewAndreas Kling
2021-07-11Kernel: Rename FS => FileSystemAndreas Kling
2021-06-16Kernel: Remove various other uses of ssize_tGunnar Beutner
2021-06-01Kernel: Move TmpFS towards OOM safetyBrian Gianforcaro
2021-05-02Kernel: Change Inode::{read/write}_bytes interface to KResultOr<ssize_t>Brian Gianforcaro
2021-04-30Kernel: Make Inode::set_{a,c,m}time return KResultAndreas Kling
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-02-12Kernel: Add distinct InodeIndex typeAndreas Kling
2020-12-18TmpFS: Use fallible KBuffer APIAndreas Kling
2020-09-13Kernel: Make copy_to/from_user safe and remove unnecessary checksTom
2020-08-18TmpFS: Stop using FS::DirectoryEntry in TmpFSInodeAndreas Kling
2020-08-18Kernel: Add DirectoryEntryView for VFS directory traversalAndreas Kling
2020-08-05Kernel: Make Inode::directory_entry_count errors observable.Brian Gianforcaro
2020-06-25Kernel: Port mounts to reference inodes directlySergey Bugaev
2020-06-25Kernel: Deemphasize inode identifiersSergey Bugaev
2020-05-26Kernel: Plumb KResult through FileDescription::read_entire_file() implementat...Brian Gianforcaro
2020-02-16Kernel: Add forward declaration headerAndreas Kling
2020-02-16Kernel: Move all code into the Kernel namespaceAndreas Kling
2020-02-08Kernel: Make File::truncate() take a u64Andreas Kling
2020-02-08Kernel: Simplify FS::create_inode() a little bitAndreas Kling
2020-02-08Kernel: Simplify FS::create_directory() a little bitAndreas Kling
2020-02-01Kernel: Make Inode::lookup() return a RefPtr<Inode>Andreas Kling
2020-01-24Meta: Claim copyright for files created by meSergey Bugaev
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-03Kernel: Allow passing initial UID and GID when creating new inodesAndreas Kling
2019-12-15Kernel+FileManager: Disallow watch_file() in unsupported file systemsAndreas Kling
2019-08-15Kernel: Add TmpFSSergey Bugaev