summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem/Inode.h
AgeCommit message (Expand)Author
2021-02-12Kernel: Add distinct InodeIndex typeAndreas Kling
2021-02-12Kernel: Remove default arguments from Inode::resolve_as_link()Andreas Kling
2021-01-30Kernel: Add FIBMAP ioctl to Ext2FileSystemPeter Elliott
2021-01-03Kernel: Improve ProcFS behavior in low memory conditionsTom
2020-12-31Kernel: Sprinkle some lockers in InodeAndreas Kling
2020-12-29Kernel: Remove unnecessary non-const Inode::shared_vmobject()Andreas Kling
2020-12-18Kernel: Move KBufferBuilder to the fallible KBuffer APIAndreas Kling
2020-11-23ProcFS: Take the "all inodes" lock when generating /proc/inodesAndreas Kling
2020-11-10AK: Make RefPtr, NonnullRefPtr, WeakPtr thread safeTom
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-18Kernel: Add DirectoryEntryView for VFS directory traversalAndreas Kling
2020-08-12Kernel: Avoid ninja-import of global variableBen Wiederhake
2020-08-11Kernel: Make Inode::read_entire() return a KBuffer (not ByteBuffer)Andreas Kling
2020-08-05Kernel: Make Inode::directory_entry_count errors observable.Brian Gianforcaro
2020-07-19Kernel: Implement FIFOs/named pipesPeter Elliott
2020-07-04Kernel: Add "child added" and "child removed" InodeWatcher eventsAndreas Kling
2020-06-25Kernel: Deemphasize inode identifiersSergey Bugaev
2020-05-26Kernel: Plumb KResult through FileDescription::read_entire_file() implementat...Brian Gianforcaro
2020-05-26Kernel: Clang format file system in prep for changes.Brian Gianforcaro
2020-05-19Kernel: Inline Inode::fsid()Sergey Bugaev
2020-04-04Kernel: Strip SUID+SGID bits from file when written to or chownedAndreas Kling
2020-02-28Kernel: Rename InodeVMObject => SharedInodeVMObjectAndreas Kling
2020-02-18Kernel: Use a FixedArray for a process's extra GIDsAndreas Kling
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-08Ext2FS: Fail with EMFILE if we would overflow i_links_countAndreas Kling
2020-02-01Kernel: Make Inode::lookup() return a RefPtr<Inode>Andreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-17Kernel: Let inodes provide pre-open file descriptionsSergey Bugaev
2020-01-17Kernel: Let symlinks resolve themselvesSergey Bugaev
2019-12-19Kernel: Rename vmo => vmobject everywhereAndreas Kling
2019-11-04Ext2FS: Don't uncache inodes while they are being watchedAndreas Kling
2019-09-06AK: Rename <AK/AKString.h> to <AK/String.h>Andreas Kling
2019-09-04Kernel: Rename "vmo" to "vmobject" everywhereAndreas Kling
2019-08-08Kernel: Turns global Custody and Inode tables into InlineLinkedListsAndreas Kling
2019-08-07Kernel: Split VMObject into two classes: Anonymous- and InodeVMObjectAndreas Kling
2019-07-22Kernel: Add a mechanism for listening for changes to an inode.Andreas Kling
2019-07-03AK: Rename the common integer typedefs to make it obvious what they are.Andreas Kling
2019-06-21AK: Rename Retainable.h => RefCounted.h.Andreas Kling
2019-06-21AK: Rename RetainPtr => RefPtr and Retained => NonnullRefPtr.Andreas Kling
2019-06-21AK: Rename Retainable => RefCounted.Andreas Kling
2019-06-09Kernel: Use StringView more in Inode and subclasses.Andreas Kling
2019-06-07Kernel: Rename FileDescriptor to FileDescription.Andreas Kling
2019-06-01FileSystem: Make Inode::lookup() take a StringView.Andreas Kling
2019-06-01FileSystem: Remove now-unused Inode::parent() and Inode::reverse_lookup().Andreas Kling
2019-05-31FileSystem: Pass mode_t to Inode::add_child().Andreas Kling
2019-05-28Add clang-format fileRobin Burchell
2019-05-16Kernel: Move Inode to its own files.Andreas Kling