[Ocfs2-tools-commits] branch, master, updated. ocfs2-tools-1.4.0-483-gd99fa8d

svn-commits at oss.oracle.com svn-commits at oss.oracle.com
Fri Mar 5 14:24:09 PST 2010


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Tools to manage the ocfs2 filesystem.".

The branch, master has been updated
       via  d99fa8ddfc2e8f3096674707468135cef444eac3 (commit)
       via  bcf45c7989dd879dbee8cd382bddcdf0cd7e2c01 (commit)
       via  391a4a220cfebdfbd34a535ab3b62eef4df7298f (commit)
       via  4bcb285d44cbbb287bd2f549e49c52acafa7cb20 (commit)
       via  ca59170fb5ade6e461e350e12c242090dba2eceb (commit)
       via  7d5fac7e627ab11b3b782a6f0078f78ba698214c (commit)
       via  c6d1eaa312518e8f47565b926c700ba345abe89a (commit)
      from  b23bebacf0d3f00a9b78693f134a9f28e860646f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit d99fa8ddfc2e8f3096674707468135cef444eac3
Author: Sunil Mushran <sunil.mushran at oracle.com>
Date:   Fri Mar 5 13:56:48 2010 -0800

    fsck.ocfs2: Freshen up some fsck messages
    
    Fixes the uuid print so as to make it consistent across all tools.
    
    Signed-off-by: Sunil Mushran <sunil.mushran at oracle.com>
    Signed-off-by: Joel Becker <joel.becker at oracle.com>

commit bcf45c7989dd879dbee8cd382bddcdf0cd7e2c01
Author: Sunil Mushran <sunil.mushran at oracle.com>
Date:   Fri Mar 5 14:08:41 2010 -0800

    mkfs.ocfs2: Add dry-run option
    
    Add a dry-run option to see the various values selected by mkfs.
    
    Signed-off-by: Sunil Mushran <sunil.mushran at oracle.com>
    Signed-off-by: Joel Becker <joel.becker at oracle.com>

commit 391a4a220cfebdfbd34a535ab3b62eef4df7298f
Author: Sunil Mushran <sunil.mushran at oracle.com>
Date:   Fri Mar 5 13:57:18 2010 -0800

    mkfs.ocfs2: Allocate groups to the extent allocator
    
    Extent allocator comes into play when an inode can no longer store all the
    data extent pointers in the inode block and needs an indirect block that is
    allocated from the extent allocator. This typically happens when the free
    space is very fragmented. However, when that is the case, the file system
    is also unable to find 4MB contiguous free space that is typically required
    to extend this allocator.
    
    To address this issue, we are now preallocating the extent allocator for
    all slots and also teaching the file system to steal extents from other
    slots when it is unable to extend its own slot allocator.
    
    Signed-off-by: Sunil Mushran <sunil.mushran at oracle.com>
    Signed-off-by: Joel Becker <joel.becker at oracle.com>

commit 4bcb285d44cbbb287bd2f549e49c52acafa7cb20
Author: Sunil Mushran <sunil.mushran at oracle.com>
Date:   Fri Mar 5 13:57:06 2010 -0800

    libocfs2: Add ocfs2_grow_chain_allocator()
    
    ocfs2_grow_chain_allocator() extends the inode and extent allocators.
    
    Signed-off-by: Sunil Mushran <sunil.mushran at oracle.com>
    Signed-off-by: Joel Becker <joel.becker at oracle.com>

commit ca59170fb5ade6e461e350e12c242090dba2eceb
Author: Sunil Mushran <sunil.mushran at oracle.com>
Date:   Fri Mar 5 13:56:38 2010 -0800

    libocfs2: ocfs2_chain_add_group() adds new groups to the next logical chain
    
    Teach ocfs2_chain_add_group() to add the new group to the appropriate chain.
    
    Signed-off-by: Sunil Mushran <sunil.mushran at oracle.com>
    Signed-off-by: Joel Becker <joel.becker at oracle.com>

commit 7d5fac7e627ab11b3b782a6f0078f78ba698214c
Author: Sunil Mushran <sunil.mushran at oracle.com>
Date:   Fri Mar 5 13:56:55 2010 -0800

    mounted.ocfs2: Add the stack/local to the output
    
    Device                FS     Stack  UUID                              Label
    /dev/sdb1             ocfs2  local  2D1C9636FE38462DB43A75D1DA592207  vmvol
    /dev/sdj1             ocfs2  o2cb   FF2E239B02D941FEAF25BDAE8DD553B9  dbstore
    
    Signed-off-by: Sunil Mushran <sunil.mushran at oracle.com>
    Signed-off-by: Joel Becker <joel.becker at oracle.com>

commit c6d1eaa312518e8f47565b926c700ba345abe89a
Author: Sunil Mushran <sunil.mushran at oracle.com>
Date:   Fri Mar 5 13:57:11 2010 -0800

    mounted.ocfs2: Display uuid in all caps
    
    The tool was displaying the uuid in the 1b4e28ba-2fa1-11d2-883f-b9a761bde3fb
    format. This patch makes it display in the all caps format.
    1B4E28BA2FA111D2883FB9A761BDE3FB. This is useful because we use this format
    when creating the names for the heartbeat region and the dlm domain.
    
    Signed-off-by: Sunil Mushran <sunil.mushran at oracle.com>
    Signed-off-by: Joel Becker <joel.becker at oracle.com>

-----------------------------------------------------------------------

Summary of changes:
 fsck.ocfs2/fsck.c          |   16 ++++----
 include/ocfs2/ocfs2.h      |    5 ++
 libocfs2/alloc.c           |   39 +++++++++++++++++
 libocfs2/chainalloc.c      |   24 ++++++++---
 libocfs2/checkhb.c         |   10 ++++
 mkfs.ocfs2/check.c         |    5 ++
 mkfs.ocfs2/mkfs.c          |   99 +++++++++++++++++++++++++++++++++++++++++--
 mkfs.ocfs2/mkfs.h          |    3 +
 mkfs.ocfs2/mkfs.ocfs2.8.in |    4 ++
 mounted.ocfs2/mounted.c    |   18 +++++---
 10 files changed, 197 insertions(+), 26 deletions(-)


hooks/post-receive
-- 
Tools to manage the ocfs2 filesystem.



More information about the Ocfs2-tools-commits mailing list