summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem/Ext2FileSystem.cpp
AgeCommit message (Expand)Author
2019-11-03Ext2FS: Use KBuffers for the cached bitmap blocksAndreas Kling
2019-11-02Ext2FS: Resizing an Inode to its current size should do nothingAndreas Kling
2019-11-02Ext2FS: Inode resizing should fail with ENOSPC if we lack blocksAndreas Kling
2019-11-02Ext2FS: Use the bitmap block caching for Inode bitmaps as wellAndreas Kling
2019-11-02Ext2FS: Rename get_block_bitmap() => get_bitmap_block()Andreas Kling
2019-11-02Ext2FS: Cache block bitmaps instead of always reading/writing diskAndreas Kling
2019-11-02Ext2FS: Tidy up code related to the Ext2 super block a bitAndreas Kling
2019-11-02Ext2FS: Flush the super block and block group descriptors lazilyAndreas Kling
2019-10-02Ext2FS: Make Ext2FSInode::is_directory() fastAndreas Kling
2019-09-30Kernel: Convert the DiskBackedFS write API to take "const u8*"Andreas Kling
2019-09-30Kernel: Make DiskBackedFS::read_block() write to client-provided memoryAndreas Kling
2019-09-30ByteBuffer: Remove pointer() in favor of data()Andreas Kling
2019-09-28Kernel: Support writing doubly-indirect ext2 blocksConrad Pankoff
2019-09-22Ext2FS: Don't allocate blocks until we're committed to a new inodeAndreas Kling
2019-09-22Ext2FS: Oops, fix wrong ENOSPC in create_inode()Andreas Kling
2019-09-22Ext2FS: Fix two bugs in block allocation:Andreas Kling
2019-09-10Ext2FS: Trying to create a too-long directory entry should ENAMETOOLONGAndreas Kling
2019-08-25Ext2FS: Avoid a String allocation in lookup()Andreas Kling
2019-08-17Ext2FS: Clean up prepare_to_unmount() a little bitAndreas Kling
2019-08-17Kernel: Added unmount ability to VFSJesse Buhagiar
2019-08-01Ext2FS: Make some use of Vector::empend().Andreas Kling
2019-07-31Ext2FS: Fix fetching of the major/minor device numbers for st_rdev.Andreas Kling
2019-07-21Ext2FS: Put most debug logging behind EXT2_DEBUG.Andreas Kling
2019-07-11Kernel: Remove use of copy_ref() in favor of regular RefPtr copies.Andreas Kling
2019-07-08StringView: Rename characters() to characters_without_null_termination().Andreas Kling
2019-07-03AK: Rename the common integer typedefs to make it obvious what they are.Andreas Kling
2019-06-21AK: Rename RetainPtr => RefPtr and Retained => NonnullRefPtr.Andreas Kling
2019-06-21AK: Rename Retainable => RefCounted.Andreas Kling
2019-06-12Kernel: Fix comparing StringViews with strcmp().Sergey Bugaev
2019-06-09Ext2FS: The block numbers returned by allocate_blocks() should be 1-based.Andreas Kling
2019-06-09Ext2FS: Fix wrong file mode being passed from create_inode() to add_child().Andreas Kling
2019-06-09Ext2FS: Move directory writing logic into Ext2FSInode.Andreas Kling
2019-06-09Kernel: Use StringView more in Inode and subclasses.Andreas Kling
2019-06-07Kernel: Qualify a bunch of #include statements.Andreas Kling
2019-06-07Kernel: Run clang-format on everything.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-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-03Kernel+Userland: Implement mknod() syscall and add a /bin/mknod program.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-27Ext2FS: Fix accidental zero-fill when appending to a file.Andreas Kling
2019-04-25Ext2FS: Reduce debug spam in block allocation.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