summaryrefslogtreecommitdiffstats
path: root/src/ceph/doc/dev/rbd-export.rst
diff options
context:
space:
mode:
authorQiaowei Ren <qiaowei.ren@intel.com>2018-03-01 14:38:11 +0800
committerQiaowei Ren <qiaowei.ren@intel.com>2018-03-01 14:38:11 +0800
commit7da45d65be36d36b880cc55c5036e96c24b53f00 (patch)
treed4f944eb4f8f8de50a9a7584ffa408dc3a3185b2 /src/ceph/doc/dev/rbd-export.rst
parent691462d09d0987b47e112d6ee8740375df3c51b2 (diff)
remove ceph code
This patch removes initial ceph code, due to license issue. Change-Id: I092d44f601cdf34aed92300fe13214925563081c Signed-off-by: Qiaowei Ren <qiaowei.ren@intel.com>
Diffstat (limited to 'src/ceph/doc/dev/rbd-export.rst')
-rw-r--r--src/ceph/doc/dev/rbd-export.rst84
1 files changed, 0 insertions, 84 deletions
diff --git a/src/ceph/doc/dev/rbd-export.rst b/src/ceph/doc/dev/rbd-export.rst
deleted file mode 100644
index 0d34d61..0000000
--- a/src/ceph/doc/dev/rbd-export.rst
+++ /dev/null
@@ -1,84 +0,0 @@
-RBD Export & Import
-===================
-
-This is a file format of an RBD image or snapshot. It's a sparse format
-for the full image. There are three recording sections in the file.
-
-(1) Header.
-(2) Metadata.
-(3) Diffs.
-
-Header
-~~~~~~
-
-"rbd image v2\\n"
-
-Metadata records
-~~~~~~~~~~~~~~~~
-
-Every record has a one byte "tag" that identifies the record type,
-followed by length of data, and then some other data.
-
-Metadata records come in the first part of the image. Order is not
-important, as long as all the metadata records come before the data
-records.
-
-In v2, we have the following metadata in each section:
-(1 Bytes) tag.
-(8 Bytes) length.
-(n Bytes) data.
-
-In this way, we can skip the unrecognized tag.
-
-Image order
------------
-
-- u8: 'O'
-- le64: length of appending data (8)
-- le64: image order
-
-Image format
-------------
-
-- u8: 'F'
-- le64: length of appending data (8)
-- le64: image format
-
-Image Features
---------------
-
-- u8: 'T'
-- le64: length of appending data (8)
-- le64: image features
-
-Image Stripe unit
------------------
-
-- u8: 'U'
-- le64: length of appending data (8)
-- le64: image striping unit
-
-Image Stripe count
-------------------
-
-- u8: 'C'
-- le64: length of appending data (8)
-- le64: image striping count
-
-Final Record
-~~~~~~~~~~~~
-
-End
----
-
-- u8: 'E'
-
-
-Diffs records
-~~~~~~~~~~~~~~~~~
-Record the all snapshots and the HEAD in this section.
-
-- le64: number of diffs
-- Diffs ...
-
-Detail please refer to rbd-diff.rst