We will (eventually) export the contents of this object explicitly as
PG metadata.
Signed-off-by: Sage Weil <sage@redhat.com>
for (vector<ghobject_t>::iterator obj = list.begin();
obj != list.end();
++obj) {
+ if (obj->is_pgmeta())
+ continue;
bufferlist attr;
r = store->getattr(coll, *obj, OI_ATTR, attr);
if (r < 0) {
for (vector<ghobject_t>::iterator i = objects.begin();
i != objects.end();
++i) {
+ if (i->is_pgmeta()) {
+ continue;
+ }
r = export_file(store, coll, *i);
if (r < 0)
return r;