summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem/VirtualFileSystem.h
AgeCommit message (Expand)Author
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2020-12-26Kernel: Implement unveil() as a prefix-treeAnotherTest
2020-09-12Kernel: Fix various forward declarationsBen Wiederhake
2020-08-25Kernel: Switch singletons to use new Singleton classTom
2020-08-22Revert "Kernel: Switch singletons to use new Singleton class"Andreas Kling
2020-08-21Kernel: Switch singletons to use new Singleton classTom
2020-08-18Kernel: Add DirectoryEntryView for VFS directory traversalAndreas Kling
2020-08-05Kernel: Propagate a few KResults properly in FileSystem subsystemsBrian Gianforcaro
2020-06-25Kernel: Port mounts to reference inodes directlySergey Bugaev
2020-05-29Kernel+Userland: Support remounting filesystems :^)Sergey Bugaev
2020-05-29Kernel: Misc tweaksSergey Bugaev
2020-05-29Kernel+LibC: Move O_* and MS_* flags to UnixTypes.hSergey Bugaev
2020-05-29Kernel: Pass a Custody instead of Inode to VFS methodsSergey Bugaev
2020-03-19Kernel: Resolve relative paths when there is a veil (#1474)Alex Muscar
2020-02-16Kernel: Move all code into the Kernel namespaceAndreas Kling
2020-01-21Kernel+LibC: Clean up open() flag (O_*) definitionsAndreas Kling
2020-01-21Kernel: Make O_RDONLY non-zeroAndreas Kling
2020-01-20Kernel: Add a basic implementation of unveil()Andreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-17Kernel: Simplify VFS::resolve_path() furtherSergey Bugaev
2020-01-12Kernel: Properly propagate bind mount flagsSergey Bugaev
2020-01-11Kernel: Implement bind mountsSergey Bugaev
2020-01-11Kernel+LibC: Implement a few mount flagsSergey Bugaev
2020-01-11Kernel+LibC: Add O_EXEC, move exec permission checking to VFS::open()Sergey Bugaev
2020-01-11Kernel+LibC: Add support for mount flagsSergey Bugaev
2020-01-11Kernel: Simplify VFS::Mount handlingSergey Bugaev
2020-01-03Kernel: Allow passing initial UID and GID when creating new inodesAndreas Kling
2019-12-24Kernel: Implement recursion limit on path resolutionShannon Booth
2019-11-05Kernel: Implement O_DIRECT open() flag to bypass disk cachesAndreas Kling
2019-09-06AK: Rename <AK/AKString.h> to <AK/String.h>Andreas Kling
2019-08-18Kernel: Move device lookup to Device class itselfSergey Bugaev
2019-08-17Kernel: Do the umount() by the guest's root inode identifierAndreas Kling
2019-08-17Kernel: Added unmount ability to VFSJesse Buhagiar
2019-08-11Kernel: Remove an unused VFS function declarationAndreas Kling
2019-08-02Kernel: Generalize VFS metadata lookup and use it in mount() and stat()Andreas Kling
2019-08-02Kernel: Some improvements to the mount syscallAndreas Kling
2019-07-24Kernel: Convert Vector<OwnPtr> to NonnullOwnPtrVector.Andreas Kling
2019-07-16Kernel: Remove use of [[gnu::pure]].Andreas Kling
2019-07-03AK: Rename the common integer typedefs to make it obvious what they are.Andreas Kling
2019-06-21AK: Rename RetainPtr.h => RefPtr.h, Retained.h => NonnullRefPtr.h.Andreas Kling
2019-06-21AK: Rename RetainPtr => RefPtr and Retained => NonnullRefPtr.Andreas Kling
2019-06-09FileSystem: Don't perform path resolution twice for open() with O_CREAT.Andreas Kling
2019-06-07Kernel: Rename FileDescriptor to FileDescription.Andreas Kling
2019-06-02FileSystem: Rename VFS::fchmod() -> chmod().Andreas Kling
2019-06-02FileSystem: Route chown() and fchown() through VFS for access control.Andreas Kling
2019-06-01FileSystem: Don't create a temporary FileDescriptor every time we stat().Andreas Kling
2019-05-31FileSystem: VFS should require Badge<Device> for device registration.Andreas Kling
2019-05-31FileSystem: Don't expose VFS::root_inode().Andreas Kling
2019-05-31FileSystem: Rename VFS::resolve_path_to_custody() => resolve_path().Andreas Kling
2019-05-31FileSystem: Merge symlink following logic into path resolution.Andreas Kling