]> git.proxmox.com Git - ceph.git/blob - ceph/src/osd/recovery_types.cc
buildsys: switch source download to quincy
[ceph.git] / ceph / src / osd / recovery_types.cc
1 // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2 // vim: ts=8 sw=2 smarttab
3
4 #include "recovery_types.h"
5
6 ostream& operator<<(ostream& out, const BackfillInterval& bi)
7 {
8 out << "BackfillInfo(" << bi.begin << "-" << bi.end
9 << " " << bi.objects.size() << " objects";
10 if (!bi.objects.empty())
11 out << " " << bi.objects;
12 out << ")";
13 return out;
14 }
15
16