• Qu Wenruo's avatar
    btrfs: allow read-write for 4K sectorsize on 64K page size systems · 95ea0486
    Qu Wenruo authored
    Since now we support data and metadata read-write for subpage, remove
    the RO requirement for subpage mount.
    
    There are some extra limitations though:
    
    - For now, subpage RW mount is still considered experimental
      Thus that mount warning will still be there.
    
    - No compression support
      There are still quite some PAGE_SIZE hard coded and quite some call
      sites use extent_clear_unlock_delalloc() to unlock locked_page.
      This will screw up subpage helpers.
    
      Now for subpage RW mount, no matter what mount option or inode attr is
      set, all writes will not be compressed.  Although reading compressed
      data has no problem.
    
    - No defrag for subpage case
      The defrag support for subpage case will come in later patches, which
      will also rework the defrag workflow.
    
    - No inline extent will be created
      This is mostly due to the fact that filemap_fdatawrite_range() will
      trigger more write than the range specified.
      In fallocate calls, this behavior can make us to writeback which can
      be inlined, before we enlarge the i_size.
    
      This is a very special corner case, and even current btrfs check won't
      report error on such inline extent + regular extent.
      But considering how much effort has been put to prevent such inline +
      regular, I'd prefer to cut off inline extent completely until we have
      a good solution.
    Signed-off-by: default avatarQu Wenruo <wqu@suse.com>
    Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
    95ea0486
sysfs.c 53.3 KB