1. 09 7月, 2016 8 次提交
  2. 07 7月, 2016 6 次提交
  3. 16 6月, 2016 1 次提交
  4. 14 6月, 2016 2 次提交
    • J
      f2fs: fix deadlock in add_link failure · c92737ce
      Jaegeuk Kim 提交于
      mkdir                        sync_dirty_inode
       - init_inode_metadata
         - lock_page(node)
         - make_empty_dir
                                   - filemap_fdatawrite()
                                    - do_writepages
                                    - lock_page(data)
                                    - write_page(data)
                                     - lock_page(node)
         - f2fs_init_acl
          - error
         - truncate_inode_pages
          - lock_page(data)
      
      So, we don't need to truncate data pages in this error case, which will
      be done by f2fs_evict_inode.
      Signed-off-by: NJaegeuk Kim <jaegeuk@kernel.org>
      c92737ce
    • J
      f2fs: introduce mode=lfs mount option · 36abef4e
      Jaegeuk Kim 提交于
      This mount option is to enable original log-structured filesystem forcefully.
      So, there should be no random writes for main area.
      
      Especially, this supports host-managed SMR device.
      Signed-off-by: NJaegeuk Kim <jaegeuk@kernel.org>
      36abef4e
  5. 09 6月, 2016 4 次提交
  6. 08 6月, 2016 6 次提交
  7. 03 6月, 2016 13 次提交