]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
osd: include buffer_extents in ObjectExtent operator<<
authorSage Weil <sage@inktank.com>
Mon, 8 Oct 2012 16:51:10 +0000 (09:51 -0700)
committerSage Weil <sage@inktank.com>
Mon, 15 Oct 2012 22:34:06 +0000 (15:34 -0700)
Signed-off-by: Sage Weil <sage@inktank.com>
src/osd/osd_types.h

index 8031095f035a4516787deeb2f8f76c1dd13d7bd6..e8962336776b8f2f5d26a53d0e86de5a517f4c87 100644 (file)
@@ -1564,6 +1564,7 @@ inline ostream& operator<<(ostream& out, const ObjectExtent &ex)
   return out << "extent(" 
              << ex.oid << " (" << ex.objectno << ") in " << ex.oloc
              << " " << ex.offset << "~" << ex.length
+            << " -> " << ex.buffer_extents
              << ")";
 }