vector<ghobject_t> objects;
ghobject_t max;
while (!max.is_max()) {
- r = collection_list(cid, max, ghobject_t::get_max(), 300, &objects, &max);
+ r = collection_list(cid, max, ghobject_t::get_max(), true,
+ 300, &objects, &max);
if (r < 0)
return r;
for (vector<ghobject_t>::iterator i = objects.begin();
vector<ghobject_t> ls;
collection_list_handle_t handle;
- r = index->collection_list_partial(ghobject_t(), ghobject_t::get_max(), 1, &ls, NULL);
+ r = index->collection_list_partial(ghobject_t(), ghobject_t::get_max(), true,
+ 1, &ls, NULL);
if (r < 0) {
assert(!m_filestore_fail_eio || r != -EIO);
return false;
collection_list(
cid,
next, ghobject_t::get_max(),
+ true,
get_ideal_list_max(),
&objects,
&next);
collection_list(
dest,
next, ghobject_t::get_max(),
+ true,
get_ideal_list_max(),
&objects,
&next);