12 Sep, 2007

3 commits

  • In ocfs2_alloc_write_write_ctxt, the written clusters length is calculated
    by the byte length only. This may cause some problems if we start to write
    at some position in the end of one cluster and last to a second cluster
    while the "len" is smaller than a cluster size. In that case, we have to
    write 2 clusters actually.
    So we have to take the start position into consideration also.

    Signed-off-by: Tao Ma
    Signed-off-by: Mark Fasheh

    tao.ma@oracle.com
     
  • For some mount option types, ocfs2_parse_options() will try to access
    sb->s_fs_info to get at the ocfs2 private superblock. Unfortunately, that
    hasn't been allocated yet and will cause a kernel crash.

    Fix this by storing options in a struct which can then get pushed into the
    ocfs2_super once it's been allocated later. If we need more options which
    store to the ocfs2_super in the future, we can just fields to this struct.

    Signed-off-by: Tiger Yang
    Signed-off-by: Mark Fasheh

    Tiger Yang
     
  • Update documentation listing ocfs2 features to reflect the current state of
    the file system. Add missing descriptions for some mount options which ocfs2
    supports.

    Signed-off-by: Mark Fasheh

    Mark Fasheh
     

11 Sep, 2007

36 commits


10 Sep, 2007

1 commit