ceph/src/libradosstriper
Radoslaw Zarzynski d5e6db8c40 *: switch trivial users of bufferlist::copy{_in} to iterators.
This commits switches the most straightforward occurrences of:
  * ceph::bufferlist::copy(off, len, dst) and
  * ceph::bufferlist::copy_in(off, len, src)
to use iterators. After extending `bufferlist::begin()` with
the `offset` parameter and eradication of the `last_p` hint,
these method look rudimentary. There is no huge benefit from

  bl.copy_in(off, len, dst)

instead of:

  bl.begin(off).copy_in(len, dst)

especially when `off` is `0`.

Signed-off-by: Radoslaw Zarzynski <rzarzyns@redhat.com>
2020-01-26 16:22:24 +01:00
..
CMakeLists.txt
libradosstriper.cc *: switch trivial users of bufferlist::copy{_in} to iterators. 2020-01-26 16:22:24 +01:00
MultiAioCompletionImpl.cc
MultiAioCompletionImpl.h
RadosStriperImpl.cc
RadosStriperImpl.h