Signed-off-by: Sage Weil <sage@redhat.com>
string bluestore_blob_t::get_flags_string(unsigned flags)
{
string s;
- if (flags & FLAG_IMMUTABLE) {
+ if (flags & FLAG_MUTABLE) {
if (s.length())
s += '+';
- s += "immutable";
+ s += "mutable";
}
if (flags & FLAG_COMPRESSED) {
if (s.length())
/// blob: a piece of data on disk
struct bluestore_blob_t {
enum {
- FLAG_IMMUTABLE = 1, ///< blob cannot be overwritten or split
- FLAG_COMPRESSED = 2, ///< blob is compressed
+ FLAG_MUTABLE = 1, ///< blob can be overwritten or split
+ FLAG_COMPRESSED = 2, ///< blob is compressed
};
static string get_flags_string(unsigned flags);