]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
kclient: signoff in patch series
authorSage Weil <sage@newdream.net>
Fri, 17 Jul 2009 21:20:18 +0000 (14:20 -0700)
committerSage Weil <sage@newdream.net>
Fri, 17 Jul 2009 21:20:18 +0000 (14:20 -0700)
src/kernel/import_patch_set_into_linux_git.sh

index 1bd28d405c04c576db150d5dbfe085cc7b71e693..99440028de3cee581e409341a2386274d48b86d5 100755 (executable)
@@ -26,7 +26,7 @@ git branch series_start
 #git cherry-pick 5556036065d8b04b2f7dd439fbf0d710e295cd44
 
 git add Documentation/filesystems/ceph.txt
-git commit -F - <<EOF
+git commit -s -F - <<EOF
 ceph: documentation
 
 Mount options, syntax.
@@ -36,7 +36,7 @@ EOF
 git add $target/ceph/ceph_fs.h
 git add $target/ceph/msgr.h
 git add $target/ceph/rados.h
-git commit -F - <<EOF
+git commit -s -F - <<EOF
 ceph: on-wire types
 
 These headers describe the types used to exchange messages between the
@@ -53,7 +53,7 @@ git add $target/ceph/types.h
 git add $target/ceph/super.h
 git add $target/ceph/ceph_ver.h
 git add $target/ceph/ceph_debug.h
-git commit -F - <<EOF
+git commit -s -F - <<EOF
 ceph: client types
 
 We first define constants, types, and prototypes for the kernel client
@@ -65,7 +65,7 @@ monitor clients, and the messaging layer.
 EOF
 
 git add $target/ceph/super.c
-git commit -F - <<EOF
+git commit -s -F - <<EOF
 ceph: super.c
 
 Mount option parsing, client setup and teardown, and a few odds and
@@ -75,7 +75,7 @@ EOF
 
 
 git add $target/ceph/inode.c
-git commit -F - <<EOF
+git commit -s -F - <<EOF
 ceph: inode operations
 
 Inode cache and inode operations.  We also include routines to
@@ -87,7 +87,7 @@ fill_trace().
 EOF
 
 git add $target/ceph/dir.c
-git commit -F - <<EOF
+git commit -s -F - <<EOF
 ceph: directory operations
 
 Directory operations, including lookup, are defined here.  We take
@@ -104,7 +104,7 @@ may be needed.
 EOF
 
 git add $target/ceph/file.c
-git commit -F - <<EOF
+git commit -s -F - <<EOF
 ceph: file operations
 
 File open and close operations, and read and write methods that ensure
@@ -116,7 +116,7 @@ back to the MDS.
 EOF
 
 git add $target/ceph/addr.c
-git commit -F - <<EOF
+git commit -s -F - <<EOF
 ceph: address space operations
 
 The ceph address space methods are concerned primarily with managing
@@ -135,7 +135,7 @@ git add $target/ceph/mds_client.h
 git add $target/ceph/mds_client.c
 git add $target/ceph/mdsmap.h
 git add $target/ceph/mdsmap.c
-git commit -F - <<EOF
+git commit -s -F - <<EOF
 ceph: MDS client
 
 The MDS client is responsible for submitting requests to the MDS
@@ -164,7 +164,7 @@ git add $target/ceph/osd_client.h
 git add $target/ceph/osd_client.c
 git add $target/ceph/osdmap.h
 git add $target/ceph/osdmap.c
-git commit -F - <<EOF
+git commit -s -F - <<EOF
 ceph: OSD client
 
 The OSD client is responsible for reading and writing data from/to the
@@ -185,7 +185,7 @@ git add $target/ceph/crush/crush.c
 git add $target/ceph/crush/mapper.h
 git add $target/ceph/crush/mapper.c
 git add $target/ceph/crush/hash.h
-git commit -F - <<EOF
+git commit -s -F - <<EOF
 ceph: CRUSH mapping algorithm
 
 CRUSH is a fancy hash function designed to map inputs onto a dynamic
@@ -204,7 +204,7 @@ EOF
 
 git add $target/ceph/mon_client.h
 git add $target/ceph/mon_client.c
-git commit -F - <<EOF
+git commit -s -F - <<EOF
 ceph: monitor client
 
 The monitor cluster is responsible for managing cluster membership
@@ -215,7 +215,7 @@ MDS and OSD maps, getting statfs() information, and unmounting.
 EOF
 
 git add $target/ceph/caps.c
-git commit -F - <<EOF
+git commit -s -F - <<EOF
 ceph: capability management
 
 The Ceph metadata servers control client access to inode metadata and
@@ -243,7 +243,7 @@ cluster to release server state.
 EOF
 
 git add $target/ceph/snap.c
-git commit -F - <<EOF
+git commit -s -F - <<EOF
 ceph: snapshot management
 
 Ceph snapshots rely on client cooperation in determining which
@@ -262,7 +262,7 @@ EOF
 git add $target/ceph/decode.h
 git add $target/ceph/messenger.h
 git add $target/ceph/messenger.c
-git commit -F - <<EOF
+git commit -s -F - <<EOF
 ceph: messenger library
 
 A generic message passing library is used to communicate with all
@@ -275,7 +275,7 @@ This implementation is based on TCP.
 EOF
 
 git add $target/ceph/export.c
-git commit -F - <<EOF
+git commit -s -F - <<EOF
 ceph: nfs re-export support
 
 Basic NFS re-export support is included.  This mostly works.  However,
@@ -286,7 +286,7 @@ EOF
 
 git add $target/ceph/ioctl.h
 git add $target/ceph/ioctl.c
-git commit -F - <<EOF
+git commit -s -F - <<EOF
 ceph: ioctls
 
 A few Ceph ioctls for getting and setting file layout (striping)
@@ -295,7 +295,7 @@ parameters.
 EOF
 
 git add $target/ceph/debugfs.c
-git commit -F - <<EOF
+git commit -s -F - <<EOF
 ceph: debugfs
 
 Basic state information is available via /debug/ceph, including
@@ -308,7 +308,7 @@ EOF
 git apply $cephtree/src/kernel/kbuild.patch
 git add $target/ceph/Makefile
 git add $target/ceph/Kconfig
-git commit -F - <<EOF $target/Kconfig $target/ceph/Kconfig $target/Makefile $target/ceph/Makefile
+git commit -s -F - <<EOF $target/Kconfig $target/ceph/Kconfig $target/Makefile $target/ceph/Makefile
 ceph: Kconfig, Makefile
 
 Kconfig options and Makefile.