[Ocfs2-commits] branch, master, updated. faeeafcf7eb65ac64ae2ba7b640f8dfc0f114087

svn-commits at oss.oracle.com svn-commits at oss.oracle.com
Wed Apr 14 16:15:03 PDT 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 "The ocfs2 filesystem version 1.6".

The branch, master has been updated
       via  faeeafcf7eb65ac64ae2ba7b640f8dfc0f114087 (commit)
       via  333b8674a67af0cb98c9a2b814c0f442b1685270 (commit)
       via  183a9a247f2463dab7020edbca1d2a158df2d868 (commit)
       via  d515a7cd28a7e5f172cb9b3a2f8742e3583db697 (commit)
       via  39ea81d2e8b6088aa62319566df18d8bf3b34412 (commit)
       via  ef6d9f7c3509f4b17f077f29d4c3142b8ce7de23 (commit)
       via  3a60f0535ef48380341a86d58bc799e7b7c2ad0c (commit)
       via  ffbc8b666f47bf640d2e5a2068ad7d704511994e (commit)
      from  526159694348d3f36767b1e66fdfeaf4beaabcc5 (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 faeeafcf7eb65ac64ae2ba7b640f8dfc0f114087
Author: Sunil Mushran <sunil.mushran at oracle.com>
Date:   Wed Apr 14 16:12:36 2010 -0700

    o2net: Print ipv4 addresses using the normal format %u.%u.%u.%u
    
    EL5 kernels are missing support for %pI in printk.
    
    Signed-off-by: Sunil Mushran <sunil.mushran at oracle.com>
    Acked-by: Joel Becker <joel.becker at oracle.com>

commit 333b8674a67af0cb98c9a2b814c0f442b1685270
Author: Sunil Mushran <sunil.mushran at oracle.com>
Date:   Tue Apr 13 18:02:13 2010 -0700

    ocfs2: Enable splice i/o
    
    Remove the SKIP_SPLICE #define as it is no longer required.
    
    Signed-off-by: Sunil Mushran <sunil.mushran at oracle.com>
    Acked-by: Sunil Mushran <sunil.mushran at oracle.com>

commit 183a9a247f2463dab7020edbca1d2a158df2d868
Author: Tiger Yang <tiger.yang at oracle.com>
Date:   Wed Apr 14 16:07:57 2010 -0700

    ocfs2: Add splice read/write support
    
    This patch copies splice code in mainline 2.6.29 to allow support for
    splice io with enterprise kernels based on 2.6.18.
    
    Signed-off-by: Tiger Yang <tiger.yang at oracle.com>
    Acked-by: Sunil Mushran <sunil.mushran at oracle.com>

commit d515a7cd28a7e5f172cb9b3a2f8742e3583db697
Author: Tiger Yang <tiger.yang at oracle.com>
Date:   Tue Apr 13 18:01:24 2010 -0700

    ocfs2: Add file_remove_suid()
    
    Mainline commit 2f1936b87783a3a56c9441b27b9ba7a747f11e8e changed remove_suid()
    to file_remove_suid() in vfs.
    
    Signed-off-by: Tiger Yang <tiger.yang at oracle.com>
    Acked-by: Sunil Mushran <sunil.mushran at oracle.com>

commit 39ea81d2e8b6088aa62319566df18d8bf3b34412
Author: Tiger Yang <tiger.yang at oracle.com>
Date:   Tue Apr 13 18:01:17 2010 -0700

    ocfs2: Add inode_double_lock()/unlock()
    
    Mainline commit 62752ee198dca9209b7dee504763e51b11e9e0ca added inode_double_lock()
    and inode_double_unlock().
    
    Signed-off-by: Tiger Yang <tiger.yang at oracle.com>
    Acked-by: Sunil Mushran <sunil.mushran at oracle.com>

commit ef6d9f7c3509f4b17f077f29d4c3142b8ce7de23
Author: Tiger Yang <tiger.yang at oracle.com>
Date:   Wed Apr 14 16:07:01 2010 -0700

    ocfs2: pipe operation pin() changes to confirm()
    
    Mainline commit cac36bb06efe4880234524e117e0e712b10b1f16 changed
    pipe_buf_operations->pin() to ->confirm().
    
    Signed-off-by: Tiger Yang <tiger.yang at oracle.com>
    Acked-by: Sunil Mushran <sunil.mushran at oracle.com>

commit 3a60f0535ef48380341a86d58bc799e7b7c2ad0c
Author: Sunil Mushran <sunil.mushran at oracle.com>
Date:   Wed Apr 14 16:12:04 2010 -0700

    ocfs2: Make nointr a default mount option
    
    OCFS2 has never really supported intr. This patch acknowledges this reality
    and makes nointr the default mount option. In a later patch, we intend to
    support intr.
    
    Signed-off-by: Sunil Mushran <sunil.mushran at oracle.com>
    Acked-by: Joel Becker <joel.becker at oracle.com>

commit ffbc8b666f47bf640d2e5a2068ad7d704511994e
Author: Sunil Mushran <sunil.mushran at oracle.com>
Date:   Wed Apr 14 16:11:52 2010 -0700

    ocfs2/dlm: Make o2dlm domain join/leave messages KERN_NOTICE
    
    o2dlm join and leave messages are more than informational as they are required
    is debugging locking issues. This patch changes them from KERN_INFO to KERN_NOTICE.
    
    Signed-off-by: Sunil Mushran <sunil.mushran at oracle.com>
    Acked-by: Joel Becker <joel.becker at oracle.com>

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

Summary of changes:
 Config.make.in                            |    5 +-
 Makefile                                  |    6 +-
 configure.in                              |   27 +++-
 fs/ocfs2/Makefile                         |   18 ++-
 fs/ocfs2/cluster/netdebug.c               |    8 +-
 fs/ocfs2/cluster/nodemanager.c            |    2 +-
 fs/ocfs2/cluster/tcp.c                    |   33 ++--
 fs/ocfs2/compat_splice.c                  |  251 +++++++++++++++++++++++++++++
 fs/ocfs2/dlm/dlmdomain.c                  |    6 +-
 fs/ocfs2/file.c                           |   96 +++--------
 fs/ocfs2/super.c                          |    1 +
 fs/ocfs2/xattr.c                          |    2 +-
 kapi-compat/include/file_remove_suid.h    |    8 +
 kapi-compat/include/inode_double_lock.h   |   36 ++++
 kapi-compat/include/pipe_buf_operations.h |    8 +
 kapi-compat/include/splice.h              |   18 ++
 16 files changed, 421 insertions(+), 104 deletions(-)
 create mode 100644 fs/ocfs2/compat_splice.c
 create mode 100644 kapi-compat/include/file_remove_suid.h
 create mode 100644 kapi-compat/include/inode_double_lock.h
 create mode 100644 kapi-compat/include/pipe_buf_operations.h
 create mode 100644 kapi-compat/include/splice.h


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



More information about the Ocfs2-commits mailing list