1. 23 9月, 2009 2 次提交
    • T
      ocfs2: Abstract extent split process. · 555936bf
      Tao Ma 提交于
      ocfs2_mark_extent_written actually does the following things:
      1. check the parameters.
      2. initialize the left_path and split_rec.
      3. call __ocfs2_mark_extent_written. it will do:
         1) check the flags of unwritten
         2) do the real split work.
      The whole process is packed tightly somehow. So this patch
      will abstract 2 different functions so that future b-tree
      operation can work with it.
      
      1. __ocfs2_split_extent will accept path and split_rec and do
        the real split work.
      2. ocfs2_change_extent_flag will accept a new flag and initialize
         path and split_rec.
      
      So now ocfs2_mark_extent_written will do:
      1. check the parameters.
      2. call ocfs2_change_extent_flag.
         1) initalize the left_path and split_rec.
         2) check whether the new flags conflict with the old one.
         3) call __ocfs2_split_extent to do the split.
      Signed-off-by: NTao Ma <tao.ma@oracle.com>
      555936bf
    • T
      ocfs2: Wrap ocfs2_extent_contig in ocfs2_extent_tree. · 853a3a14
      Tao Ma 提交于
      Add a new operation eo_ocfs2_extent_contig int the extent tree's
      operations vector. So that with the new refcount tree, We want
      this so that refcount trees can always return CONTIG_NONE and
      prevent extent merging.
      Signed-off-by: NTao Ma <tao.ma@oracle.com>
      853a3a14
  2. 05 9月, 2009 36 次提交
  3. 18 8月, 2009 1 次提交
  4. 24 7月, 2009 1 次提交
    • T
      ocfs2: Use ocfs2_rec_clusters in ocfs2_adjust_adjacent_records. · 82e12644
      Tao Ma 提交于
      In ocfs2_adjust_adjacent_records, we will adjust adjacent records
      according to the extent_list in the lower level. But actually
      the lower level tree will either be a leaf or a branch. If we only
      use ocfs2_is_empty_extent we will meet with some problem if the lower
      tree is a branch (tree_depth > 1). So use !ocfs2_rec_clusters instead.
      And actually only the leaf record can have holes. So add a BUG_ON
      for non-leaf branch.
      Signed-off-by: NTao Ma <tao.ma@oracle.com>
      Signed-off-by: NJoel Becker <joel.becker@oracle.com>
      82e12644