summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem/TmpFS.cpp
AgeCommit message (Expand)Author
2021-06-01Kernel: Move TmpFS towards OOM safetyBrian Gianforcaro
2021-05-12Kernel: Implement multi-watch InodeWatcher :^)sin-ack
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-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-04Kernel: Stop trying to keep InodeVMObject in sync with disk changesAndreas Kling
2021-03-02Kernel: Make kgettimeofday use AK::TimeBen Wiederhake
2021-03-02Kernel: Remove duplicative kgettimeofday(timeval&) functionBen Wiederhake
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-02-12Kernel: Add distinct InodeIndex typeAndreas Kling
2021-01-20Kernel+LibC: Turn errno codes into a strongly typed enumAndreas Kling
2020-12-18TmpFS: Use fallible KBuffer APIAndreas Kling
2020-11-14TmpFS: Set the root inode's timestamp to the current timeAndreas Kling
2020-10-22TmpFS: Don't allow file names longer than NAME_MAXAndreas Kling
2020-10-03Everywhere: Fix more typosLinus Groh
2020-09-19Kernel: Let InodeWatcher track child inode numbers instead of namesAndreas 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-18TmpFS: Avoid unnecessary inode lookup in TmpFSInode::lookup()Andreas Kling
2020-08-18Kernel: Add DirectoryEntryView for VFS directory traversalAndreas Kling
2020-08-05Kernel: Make Inode::directory_entry_count errors observable.Brian Gianforcaro
2020-07-04Kernel: Add "child added" and "child removed" InodeWatcher eventsAndreas Kling
2020-06-25Kernel: Deemphasize inode identifiersSergey Bugaev
2020-06-17Kernel: Use symbolic constants for file modesSergey Bugaev
2020-05-26Kernel: Plumb KResult through FileDescription::read_entire_file() implementat...Brian Gianforcaro
2020-04-18Kernel: Use shared locking mode in some placesSergey Bugaev
2020-04-05AK: Stop allowing implicit downcast with RefPtr and NonnullRefPtrAndreas Kling
2020-04-04Kernel: Strip SUID+SGID bits from file when written to or chownedAndreas 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-19TmpFS: Grow the underlying inode buffer with 2x factor when written toAndreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-10TmpFS: Synthesize "." and ".." in traverse_as_directory()Andreas Kling
2020-01-08TmpFS: Reads past the end of a file should be zero-lengthAndreas Kling
2020-01-07TmpFS: Add ASSERT(offset >= 0) to read_bytes() and write_bytes()Andreas Kling
2020-01-07TmpFS: Add "." and ".." entries to all directoriesAndreas Kling
2020-01-04Kernel: The root inode of a TmpFS should have the sticky bit setAndreas Kling
2020-01-03Kernel: Allow passing initial UID and GID when creating new inodesAndreas Kling
2019-08-24TmpFS: Notify any associated InodeVMObject on inode changesAndreas Kling
2019-08-24TmpFS: Fix two bugs that broke GCC inside SerenityAndreas Kling
2019-08-15Kernel: Add TmpFSSergey Bugaev