]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
doc: Fixes the name of the CephFS snapshot directory. 18710/head
authorJordan Rodgers <com6056@gmail.com>
Fri, 3 Nov 2017 17:08:53 +0000 (13:08 -0400)
committerJordan Rodgers <com6056@gmail.com>
Fri, 3 Nov 2017 17:09:30 +0000 (13:09 -0400)
Signed-off-by: Jordan Rodgers <com6056@gmail.com>
doc/dev/cephfs-snapshots.rst

index 7954f6625c5f4fb48190ec3f35c0949ec4a67b44..67e680dedbdaf2d425fc4ea01449d29ffb98d38b 100644 (file)
@@ -34,7 +34,7 @@ Important Data Structures
 Creating a snapshot
 -------------------
 To make a snapshot on directory "/1/2/3/foo", the client invokes "mkdir" on
-"/1/2/3/foo/.snaps" directory. This is transmitted to the MDS Server as a
+"/1/2/3/foo/.snap" directory. This is transmitted to the MDS Server as a
 CEPH_MDS_OP_MKSNAP-tagged `MClientRequest`, and initially handled in
 Server::handle_client_mksnap(). It allocates a `snapid` from the `SnapServer`,
 projects a new inode with the new SnapRealm, and commits it to the MDLog as
@@ -89,7 +89,7 @@ pinned and in the journal.
 
 Deleting snapshots
 ------------------
-Snapshots are deleted by invoking "rmdir" on the ".snaps" directory they are
+Snapshots are deleted by invoking "rmdir" on the ".snap" directory they are
 rooted in. (Attempts to delete a directory which roots snapshots *will fail*;
 you must delete the snapshots first.) Once deleted, they are entered into the
 `OSDMap` list of deleted snapshots and the file data is removed by the OSDs.