[Ocfs2-commits] branch, master, updated. ocfs2-1.4.0-38-gffae48e

svn-commits at oss.oracle.com svn-commits at oss.oracle.com
Thu May 29 10:51:52 PDT 2008


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 "The ocfs2 filesystem version 1.4".

The branch, master has been updated
       via  ffae48e79e56fe63589049a0bf3512bcbf7a4327 (commit)
       via  95ca9b99642e3e9c193f4f7015cd56403cf06683 (commit)
       via  73078b04f07694c5ce8a500defd9cb3d8aa780f4 (commit)
       via  6fd133e945eeeb94013e269424f463df412b2384 (commit)
       via  ea68eb33305c034ee31a4dc0174e782d6f20a43c (commit)
       via  89fa349c17eae2a06423b08f7e215e861ed05a7a (commit)
       via  8eb3021d691deb50c397ad1ca4e31efa71dcca1c (commit)
      from  014643e31ef9e535173246d392ca9c958629ee9b (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 ffae48e79e56fe63589049a0bf3512bcbf7a4327
Author: Jan Kara <jack at suse.cz>
Date:   Thu May 29 09:53:08 2008 -0700

    ocfs2/dlm: Increase o2dlm lockres hash size
    
    Hash size of 16KB is far too small for large filesystems (where we have
    hundreds of thousands of lock resources stored in the table). This patch
    increases it to 128KB.
    
    Signed-off-by: Jan Kara <jack at suse.cz>
    Signed-off-by: Sunil Mushran <sunil.mushran at oracle.com>

commit 95ca9b99642e3e9c193f4f7015cd56403cf06683
Author: Jeff Mahoney <jeffm at suse.com>
Date:   Thu May 29 09:47:06 2008 -0700

    ocfs2: Allow building with kernels not having kmem_cache_zalloc()
    
    Mainline commit 81cda6626178cd55297831296ba8ecedbfd8b52d introduced
    kmem_cache_zalloc(). This allows building the fs with kernels not
    having this function.
    
    Signed-off-by: Jeff Mahoney <jeffm at suse.com>
    Signed-off-by: Sunil Mushran <sunil.mushran at oracle.com>

commit 73078b04f07694c5ce8a500defd9cb3d8aa780f4
Author: Jeff Mahoney <jeffm at suse.com>
Date:   Thu May 29 09:47:04 2008 -0700

    ocfs2: Allow building with kernels not having inode.i_private
    
    Mainline commit 8e18e2941c53416aa219708e7dcad21fb4bd6794 replaced
    inode.u.generic_ip with inode.i_private. This patch allows building
    with older kernels.
    
    Signed-off-by: Jeff Mahoney <jeffm at suse.com>
    Signed-off-by: Sunil Mushran <sunil.mushran at oracle.com>

commit 6fd133e945eeeb94013e269424f463df412b2384
Author: Sunil Mushran <sunil.mushran at oracle.com>
Date:   Thu May 29 09:47:01 2008 -0700

    ocfs2: Removing unnecessary include
    
    linux/uaccess.h is not required in netdebug.c
    
    Signed-off-by: Sunil Mushran <sunil.mushran at oracle.com>

commit ea68eb33305c034ee31a4dc0174e782d6f20a43c
Author: Jeff Mahoney <jeffm at suse.com>
Date:   Thu May 29 09:46:59 2008 -0700

    ocfs2: Allow building with kernels not having dentry in statfs()
    
    Mainline commit 726c334223180e3c0197cc980a432681370d4baf changed sops->statfs()
    to require passing in a ptr to a dentry instead of a ptr to the super_block.
    This patch allows building the fs with kernels having the older function
    prototype.
    
    Signed-off-by: Jeff Mahoney <jeffm at suse.com>
    Signed-off-by: Sunil Mushran <sunil.mushran at oracle.com>

commit 89fa349c17eae2a06423b08f7e215e861ed05a7a
Author: Jeff Mahoney <jeffm at suse.com>
Date:   Thu May 29 09:46:57 2008 -0700

    ocfs2: Allow building with kernel not supporting splice io
    
    Mainline commit 5274f052e7b3dbd81935772eb551dfd0325dfa9d introduced
    the splice io syscall. This patch allows building with kernels not
    having support for the same.
    
    Signed-off-by: Jeff Mahoney <jeffm at suse.com>
    Signed-off-by: Sunil Mushran <sunil.mushran at oracle.com>

commit 8eb3021d691deb50c397ad1ca4e31efa71dcca1c
Author: Jeff Mahoney <jeffm at suse.com>
Date:   Thu May 29 09:46:55 2008 -0700

    ocfs2: Allow building with kernels missing lockdep support
    
    Mainline commit ef5d4707b9065c0cf8a69fa3716893f3b75201ba added
    mutex_lock_nested() as part of the lockdep changes. This patch
    allows building with kernel having/not having that function.
    
    Signed-off-by: Jeff Mahoney <jeffm at suse.com>
    Signed-off-by: Sunil Mushran <sunil.mushran at oracle.com>

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

Summary of changes:
 Config.make.in                          |    4 ++++
 Makefile                                |    4 +++-
 configure.in                            |   22 ++++++++++++++++++++++
 fs/ocfs2/Makefile                       |   16 ++++++++++++++++
 fs/ocfs2/cluster/netdebug.c             |    2 --
 fs/ocfs2/dlm/Makefile                   |    8 ++++++++
 fs/ocfs2/dlm/dlmcommon.h                |    2 +-
 fs/ocfs2/dlmglue.c                      |    7 +------
 fs/ocfs2/file.c                         |    4 ++++
 fs/ocfs2/super.c                        |   18 +++++++++++++++++-
 kapi-compat/include/i_private.h         |    8 ++++++++
 kapi-compat/include/mutex_lock_nested.h |    8 ++++++++
 kapi-compat/include/slab.h              |    7 +++++++
 kapi-compat/include/splice.h            |    4 ++++
 14 files changed, 103 insertions(+), 11 deletions(-)
 create mode 100644 kapi-compat/include/i_private.h
 create mode 100644 kapi-compat/include/mutex_lock_nested.h


hooks/post-receive
-- 
The ocfs2 filesystem version 1.4



More information about the Ocfs2-commits mailing list