summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem/TmpFS.cpp
AgeCommit message (Expand)Author
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