mirror of
https://github.com/ceph/ceph
synced 2025-03-11 02:39:05 +00:00
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> |
||
---|---|---|
.. | ||
CMakeLists.txt | ||
libradosstriper.cc | ||
MultiAioCompletionImpl.cc | ||
MultiAioCompletionImpl.h | ||
RadosStriperImpl.cc | ||
RadosStriperImpl.h |