/* * Check if oid is in this nodes (if oid is in the wrong place, it will be moved * to the correct one after this call in a MD setup. */ bool default_exist(uint64_t oid, uint8_t ec_index) { char path[PATH_MAX]; get_store_path(oid, ec_index, path); return md_exist(oid, ec_index, path); }
/* * Check if oid is in this nodes (if oid is in the wrong place, it will be moved * to the correct one after this call in a MD setup. */ bool default_exist(uint64_t oid, uint8_t ec_index) { return md_exist(oid, ec_index); }
bool default_exist(uint64_t oid) { return md_exist(oid); }