summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem
AgeCommit message (Expand)Author
2019-05-28Add clang-format fileRobin Burchell
2019-05-26Kernel: Support O_APPENDRobin Burchell
2019-05-25Ext2FS: Block #0 can terminate an inode block list early.Andreas Kling
2019-05-25Ext2FS: Fix build with EXT2_DEBUG enabled, and tweak some variable names.Andreas Kling
2019-05-18Kernel: Don't page in entire file immediately on mmap().Andreas Kling
2019-05-18FileDescriptor: It's actually okay to seek past the end of a file. :^)Andreas Kling
2019-05-18Kernel: SharedMemory should implement mmap().Andreas Kling
2019-05-18Kernel: Tidy up FileDescriptor members a bit.Andreas Kling
2019-05-17Kernel: Factor out range allocation from Process::allocate_region*().Andreas Kling
2019-05-16FileSystem: fix errno on lseek() beyond the bounds of a fileRobin Burchell
2019-05-16Kernel: Move Inode to its own files.Andreas Kling
2019-05-14Kernel: Encapsulate the Region's COW map a bit better.Andreas Kling
2019-05-03Kernel+Userland: Implement mknod() syscall and add a /bin/mknod program.Andreas Kling
2019-05-03Kernel: Make Socket inherit from File.Andreas Kling
2019-05-03Kernel: Prepare Socket for becoming a File.Andreas Kling
2019-05-02Kernel: Remove unused Region::is_bitmap().Andreas Kling
2019-05-02Kernel: Assign Lock names in class member initializers.Andreas Kling
2019-04-30Kernel: Don't symbolicate symbol+offset for obvious non-kernel addresses.Andreas Kling
2019-04-29Kernel: Have File virtuals take a FileDescriptor& rather than a Process&.Andreas Kling
2019-04-29Kernel: Make FIFO inherit from File.Andreas Kling
2019-04-28VFS: Also respect the sticky bit of the new parent in rename().Andreas Kling
2019-04-28VFS: Implement sticky bit behavior for rename() and unlink().Andreas Kling
2019-04-28Kernel: Make SharedMemory inherit from File.Andreas Kling
2019-04-28Ext2FS: Put some debug spam behind EXT2_DEBUG.Andreas Kling
2019-04-28Ext2FS: Support shrinking inode to a smaller size.Andreas Kling
2019-04-28FileDescriptor: Let TTY handle its own absolute_path().Andreas Kling
2019-04-28Kernel: Make ProcessTracer inherit from File.Andreas Kling
2019-04-27Kernel: Fix rename() sometimes failing to move within the same directory.Andreas Kling
2019-04-27DiskBackedFS: Flush write cache if it reaches 32 entries before sync.Andreas Kling
2019-04-27Ext2FS: Fix accidental zero-fill when appending to a file.Andreas Kling
2019-04-25Kernel: Add a write cache to DiskBackedFS.Andreas Kling
2019-04-25Ext2FS: Reduce debug spam in block allocation.Andreas Kling
2019-04-25Kernel: Make it possible to look up FIFO's by ID.Andreas Kling
2019-04-24Kernel: Simplify Device::open().Andreas Kling
2019-04-23Ext2S: Fix off-by-one error in block allocation.Andreas Kling
2019-04-23Ext2FS: Bitmaps aren't always at full capacity.Andreas Kling
2019-04-23Ext2FS: More bitmap misunderstanding cleanups.Andreas Kling
2019-04-23Ext2FS: Simplify block bitmap stuff.Andreas Kling
2019-04-23Do a pass of compiler warning fixes.Andreas Kling
2019-04-22Kernel: Add a systrace() syscall and implement /bin/strace using it.Andreas Kling
2019-04-17Kernel+ProcessManager: Show per-process syscall counts.Andreas Kling
2019-04-16AK: Try to use StringViews more for substrings and splitting.Andreas Kling
2019-04-16Kernel: Reduce kmallocing in /proc/all and /proc/memstat.Andreas Kling
2019-04-15Kernel: Make it possible to have kmalloc() dump call stacks.Andreas Kling
2019-04-15Kernel+ProcessManager: Expose the number of kmalloc/kfree calls.Andreas Kling
2019-04-15Kernel: Start using StringView in the VFS class.Andreas Kling
2019-04-14Kernel: Add /proc/uptime file (number of seconds since boot.)Andreas Kling
2019-04-14AK: Improve smart pointer ergonomics a bit.Andreas Kling
2019-04-14Kernel: Remove system.h and make the uptime global a qword.Andreas Kling
2019-04-09Kernel: Yet more work on bringing up POSIX SHM.Andreas Kling