From: xie xingguo Date: Tue, 15 Nov 2016 07:15:51 +0000 (+0800) Subject: os/bluestore: move comments to proper place X-Git-Tag: v11.1.0~289^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f7991aa6eaf42d5b514364ca54c061d9ec604046;p=ceph.git os/bluestore: move comments to proper place Signed-off-by: xie xingguo --- diff --git a/src/os/bluestore/BlueStore.cc b/src/os/bluestore/BlueStore.cc index a8c5d33408a43..6a8a0dc420013 100644 --- a/src/os/bluestore/BlueStore.cc +++ b/src/os/bluestore/BlueStore.cc @@ -102,6 +102,15 @@ const string PREFIX_SHARED_BLOB = "X"; // u64 offset -> shared_blob_t */ #define ONODE_KEY_SUFFIX 'o' +/* + * extent shard key + * + * object prefix key + * u32 + * 'x' + */ +#define EXTENT_SHARD_KEY_SUFFIX 'x' + /* * string encoding in the key * @@ -114,16 +123,6 @@ const string PREFIX_SHARED_BLOB = "X"; // u64 offset -> shared_blob_t * and will get escaped if it is present in the string. * */ - -/* - * extent shard key - * - * object prefix key - * u32 - * 'x' - */ -#define EXTENT_SHARD_KEY_SUFFIX 'x' - static void append_escaped(const string &in, string *out) { char hexbyte[8];