From: Loic Dachary <loic@dachary.org>
To: Janne Grunau <j@jannau.net>, ceph-devel@vger.kernel.org
Subject: Re: [PATCH v2 2/3] ec: use 32-byte aligned buffers
Date: Fri, 19 Sep 2014 11:47:22 +0200 [thread overview]
Message-ID: <541BFBAA.9070108@dachary.org> (raw)
In-Reply-To: <1411036435-18860-3-git-send-email-j@jannau.net>
[-- Attachment #1: Type: text/plain, Size: 5057 bytes --]
Hi Janne,
This looks good ! The 32 byte aligned buffer applies to the diff related to buffer.h though, could you update the title ? I tend to prefer erasure-code over ec : it is easier to grep / search ;-)
Cheers
On 18/09/2014 12:33, Janne Grunau wrote:
> Requiring page aligned buffers and realigning the input if necessary
> creates measurable oberhead. ceph_erasure_code_benchmark is ~30% faster
> with this change for technique=reed_sol_van,k=2,m=1.
>
> Also prevents a misaligned buffer when bufferlist::c_str(bufferlist)
> has to allocate a new buffer to provide continuous one. See bug #9408
>
> Signed-off-by: Janne Grunau <j@jannau.net>
> ---
> src/erasure-code/ErasureCode.cc | 57 ++++++++++++++++++++++++++++-------------
> src/erasure-code/ErasureCode.h | 3 ++-
> 2 files changed, 41 insertions(+), 19 deletions(-)
>
> diff --git a/src/erasure-code/ErasureCode.cc b/src/erasure-code/ErasureCode.cc
> index 5953f49..7aa5235 100644
> --- a/src/erasure-code/ErasureCode.cc
> +++ b/src/erasure-code/ErasureCode.cc
> @@ -54,22 +54,49 @@ int ErasureCode::minimum_to_decode_with_cost(const set<int> &want_to_read,
> }
>
> int ErasureCode::encode_prepare(const bufferlist &raw,
> - bufferlist *prepared) const
> + map<int, bufferlist> &encoded) const
> {
> unsigned int k = get_data_chunk_count();
> unsigned int m = get_chunk_count() - k;
> unsigned blocksize = get_chunk_size(raw.length());
> - unsigned padded_length = blocksize * k;
> - *prepared = raw;
> - if (padded_length - raw.length() > 0) {
> - bufferptr pad(padded_length - raw.length());
> - pad.zero();
> - prepared->push_back(pad);
> + unsigned pad_len = blocksize * k - raw.length();
> + unsigned padded_chunks = k - raw.length() / blocksize;
> + bufferlist prepared = raw;
> +
> + if (!prepared.is_aligned()) {
> + // splice padded chunks off to make the rebuild faster
> + if (padded_chunks)
> + prepared.splice((k - padded_chunks) * blocksize,
> + padded_chunks * blocksize - pad_len);
> + prepared.rebuild_aligned();
> + }
> +
> + for (unsigned int i = 0; i < k - padded_chunks; i++) {
> + int chunk_index = chunk_mapping.size() > 0 ? chunk_mapping[i] : i;
> + bufferlist &chunk = encoded[chunk_index];
> + chunk.substr_of(prepared, i * blocksize, blocksize);
> + }
> + if (padded_chunks) {
> + unsigned remainder = raw.length() - (k - padded_chunks) * blocksize;
> + bufferlist padded;
> + bufferptr buf(buffer::create_aligned(padded_chunks * blocksize));
> +
> + raw.copy((k - padded_chunks) * blocksize, remainder, buf.c_str());
> + buf.zero(remainder, pad_len);
> + padded.push_back(buf);
> +
> + for (unsigned int i = k - padded_chunks; i < k; i++) {
> + int chunk_index = chunk_mapping.size() > 0 ? chunk_mapping[i] : i;
> + bufferlist &chunk = encoded[chunk_index];
> + chunk.substr_of(padded, (i - (k - padded_chunks)) * blocksize, blocksize);
> + }
> + }
> + for (unsigned int i = k; i < k + m; i++) {
> + int chunk_index = chunk_mapping.size() > 0 ? chunk_mapping[i] : i;
> + bufferlist &chunk = encoded[chunk_index];
> + chunk.push_back(buffer::create_aligned(blocksize));
> }
> - unsigned coding_length = blocksize * m;
> - bufferptr coding(buffer::create_page_aligned(coding_length));
> - prepared->push_back(coding);
> - prepared->rebuild_page_aligned();
> +
> return 0;
> }
>
> @@ -80,15 +107,9 @@ int ErasureCode::encode(const set<int> &want_to_encode,
> unsigned int k = get_data_chunk_count();
> unsigned int m = get_chunk_count() - k;
> bufferlist out;
> - int err = encode_prepare(in, &out);
> + int err = encode_prepare(in, *encoded);
> if (err)
> return err;
> - unsigned blocksize = get_chunk_size(in.length());
> - for (unsigned int i = 0; i < k + m; i++) {
> - int chunk_index = chunk_mapping.size() > 0 ? chunk_mapping[i] : i;
> - bufferlist &chunk = (*encoded)[chunk_index];
> - chunk.substr_of(out, i * blocksize, blocksize);
> - }
> encode_chunks(want_to_encode, encoded);
> for (unsigned int i = 0; i < k + m; i++) {
> if (want_to_encode.count(i) == 0)
> diff --git a/src/erasure-code/ErasureCode.h b/src/erasure-code/ErasureCode.h
> index 7aaea95..62aa383 100644
> --- a/src/erasure-code/ErasureCode.h
> +++ b/src/erasure-code/ErasureCode.h
> @@ -46,7 +46,8 @@ namespace ceph {
> const map<int, int> &available,
> set<int> *minimum);
>
> - int encode_prepare(const bufferlist &raw, bufferlist *prepared) const;
> + int encode_prepare(const bufferlist &raw,
> + map<int, bufferlist> &encoded) const;
>
> virtual int encode(const set<int> &want_to_encode,
> const bufferlist &in,
>
--
Loïc Dachary, Artisan Logiciel Libre
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 263 bytes --]
next prev parent reply other threads:[~2014-09-19 9:47 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-15 15:55 [PATCH 1/3] buffer: add an aligned buffer with less alignment than a page Janne Grunau
2014-09-15 15:55 ` [PATCH 2/3] ec: make use of added aligned buffers Janne Grunau
2014-09-15 17:20 ` Loic Dachary
2014-09-15 23:56 ` Ma, Jianpeng
2014-09-16 0:02 ` Sage Weil
2014-09-16 0:08 ` Ma, Jianpeng
2014-09-16 6:47 ` Loic Dachary
2014-09-16 6:59 ` Ma, Jianpeng
2014-09-16 7:55 ` Loic Dachary
2014-09-16 8:23 ` Ma, Jianpeng
2014-09-15 15:55 ` [PATCH 3/3] ceph_erasure_code_benchmark: align the encoding input Janne Grunau
2014-09-15 16:46 ` [PATCH 1/3] buffer: add an aligned buffer with less alignment than a page Loic Dachary
2014-09-18 10:33 ` v2 aligned buffer changes for erasure codes Janne Grunau
2014-09-18 10:33 ` [PATCH v2 1/3] buffer: add an aligned buffer with less alignment than a page Janne Grunau
2014-09-18 10:33 ` [PATCH v2 2/3] ec: use 32-byte aligned buffers Janne Grunau
2014-09-19 9:47 ` Loic Dachary [this message]
2014-09-18 10:33 ` [PATCH v2 3/3] ceph_erasure_code_benchmark: align the encoding input Janne Grunau
2014-09-18 12:18 ` v2 aligned buffer changes for erasure codes Andreas Joachim Peters
2014-09-18 12:34 ` Andreas Joachim Peters
2014-09-18 12:53 ` Janne Grunau
2014-09-19 9:18 ` Loic Dachary
2014-09-18 12:40 ` Janne Grunau
2014-09-18 13:01 ` Andreas Joachim Peters
2014-09-18 13:23 ` Janne Grunau
2014-09-18 14:47 ` Andreas Joachim Peters
2014-09-29 12:34 ` [PATCH v3 0/4] buffer alignment for erasure code SIMD Janne Grunau
2014-09-29 12:34 ` [PATCH v3 1/4] buffer: add an aligned buffer with less alignment than a page Janne Grunau
2014-09-29 13:12 ` Loic Dachary
2014-10-02 12:09 ` Janne Grunau
2014-09-29 13:27 ` Loic Dachary
2014-10-02 12:12 ` Janne Grunau
2014-10-02 14:17 ` Loic Dachary
2014-09-29 12:34 ` [PATCH v3 2/4] erasure code: use a function for the chunk mapping index Janne Grunau
2014-09-29 12:34 ` [PATCH v3 3/4] erasure code: use 32-byte aligned buffers Janne Grunau
2014-09-29 12:34 ` [PATCH v3 4/4] ceph_erasure_code_benchmark: use 32-byte aligned input Janne Grunau
2014-09-29 13:15 ` [PATCH v3 0/4] buffer alignment for erasure code SIMD Loic Dachary
2014-09-29 15:18 ` Milosz Tanski
2014-09-29 15:24 ` C++11 Sage Weil
2014-09-29 15:44 ` C++11 Milosz Tanski
2014-09-29 17:56 ` C++11 Wido den Hollander
2014-10-02 12:15 ` [PATCH v3 0/4] buffer alignment for erasure code SIMD Janne Grunau
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=541BFBAA.9070108@dachary.org \
--to=loic@dachary.org \
--cc=ceph-devel@vger.kernel.org \
--cc=j@jannau.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox