From: Sage Weil Date: Mon, 27 Oct 2008 18:20:10 +0000 (-0700) Subject: kclient: include documentation in patch queue X-Git-Tag: v0.5~188 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=49416b8dc232bb7a88ea36e75151a39c546990b2;p=ceph.git kclient: include documentation in patch queue --- diff --git a/src/kernel/ceph.txt b/src/kernel/ceph.txt index 5c4954410972..ec7dbc222714 100644 --- a/src/kernel/ceph.txt +++ b/src/kernel/ceph.txt @@ -63,6 +63,24 @@ the identification of large disk space consumers relatively quick, as no 'du' or similar recursive scan of the file system is required. +Mount Syntax +============ + +The basic mount syntax is: + + # mount -t ceph monip[:port][,monip2[:port]...]:/[subdir] mnt + +You only need to specify a single monitor, as the client will get the +full list when it connects. (However, if the monitor you specify +happens to be down, the mount won't succeed.) The port can be left +off if the monitor is using the default. So if the monitor is at +1.2.3.4, + + # mount -t ceph 1.2.3.4:/ /mnt/ceph + +is sufficient. + + Mount Options ============= diff --git a/src/kernel/import_patch_set_into_linux_git.sh b/src/kernel/import_patch_set_into_linux_git.sh index efaffe5f946c..84199c334a1f 100755 --- a/src/kernel/import_patch_set_into_linux_git.sh +++ b/src/kernel/import_patch_set_into_linux_git.sh @@ -20,6 +20,14 @@ git apply $cephtree/src/kernel/kbuild.patch git branch -D series_start git branch series_start +git add Documentation/filesystems/ceph.txt +git commit -F - <