summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem
AgeCommit message (Expand)Author
2020-03-19Kernel: Resolve relative paths when there is a veil (#1474)Alex Muscar
2020-03-12Ext2FS: Reset the found_a_group flagmarprok
2020-03-10Kernel: Get rid of SmapDisabler in sys$fstat()Andreas Kling
2020-03-08Kernel: Add missing #includes now that <AK/StdLibExtras.h> is smallerAndreas Kling
2020-03-06Kernel: Fix syntax error in FIFO_DEBUGLiav A
2020-03-06Kernel: Simplify a bunch of dbg() and klog() callsAndreas Kling
2020-03-06Ext2FS: Remove unused allocate_block()Andreas Kling
2020-03-06Kernel: Change data in /proc/interrupts to be more richerLiav A
2020-03-06AK: Remove Optional::operator bool()Andreas Kling
2020-03-02Kernel: Run clang-format on various filesLiav A
2020-03-02Kernel: Use klog() instead of kprintf()Liav A
2020-02-29Kernel: Simplify some dbg() loggingAndreas Kling
2020-02-28Kernel: Expose the VMObject type of each Region in /proc/PID/vmAndreas Kling
2020-02-28Kernel: Implement basic support for sys$mmap() with MAP_PRIVATEAndreas Kling
2020-02-28Kernel: Remove some unnecessary indirection in InodeFile::mmap()Andreas Kling
2020-02-28Kernel: Rename InodeVMObject => SharedInodeVMObjectAndreas Kling
2020-02-27Ext2Filesystem: Use dbg() instead of dbgprintf()Liav A
2020-02-27ProcFS: Use dbg() instead of dbgprintf()Liav A
2020-02-27FIFO: Use dbg() instead of dbgprintf()Liav A
2020-02-26Kernel: Remove unused artifacts of the Custody cacheAndreas Kling
2020-02-25ProcFS: Expose the physical page map of each region in /proc/PID/vmAndreas Kling
2020-02-25AK: Make Vector use size_t for its size and capacityAndreas Kling
2020-02-24Kernel: Change get_sharing_devices_count() in GenericInterruptHandlerLiav A
2020-02-24Kernel: Create an entry for viewing interrupts in ProcFSLiav A
2020-02-24AK: Make Bitmap use size_t for its sizeAndreas Kling
2020-02-22Ext2FS: Add Missing HashMap.h includeAndreas Kling
2020-02-22Kernel: Make FileDescription slab-allocatedAndreas Kling
2020-02-22Kernel: Make Custody slab-allocatedAndreas Kling
2020-02-22Kernel+ProfileViewer: Move symbolication to userspace for time profilesAndreas Kling
2020-02-21Ext2FS: The max current block count of a file is size/block_sizeAndreas Kling
2020-02-21Ext2FS: Allow holes in block listsAndreas Kling
2020-02-20Kernel: Fix a panic in VFS::rename()Sergey Bugaev
2020-02-20Kernel: Support trailing slashes in VFS::mkdir()Sergey Bugaev
2020-02-20AK: Use size_t for ByteBuffer sizesAndreas Kling
2020-02-18Kernel: Use a FixedArray for a process's extra GIDsAndreas Kling
2020-02-17Kernel: Replace "current" with Thread::current and Process::currentAndreas Kling
2020-02-16Kernel: More header dependency reduction workAndreas Kling
2020-02-16Kernel: Reduce header dependencies of Process and ThreadAndreas Kling
2020-02-16Kernel: Add forward declaration headerAndreas Kling
2020-02-16Kernel: Move all code into the Kernel namespaceAndreas Kling
2020-02-10AK: Remove bitrotted Traits::dump() mechanismAndreas Kling
2020-02-09Kernel: Use VirtualAddress & PhysicalAddress classes from LibBareMetalLiav A
2020-02-09Kernel: Apply changes to use LibBareMetal definitionsLiav A
2020-02-08Kernel: Send SIGPIPE to the current thread on write to a broken pipeAndreas 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-08Ext2FS: Fail with EMFILE if we would overflow i_links_countAndreas Kling
2020-02-08Kernel: Merge unnecessary DiskDevice class into BlockDeviceAndreas Kling
2020-02-01Kernel: Make Inode::lookup() return a RefPtr<Inode>Andreas Kling