| 50 | } |
| 51 | |
| 52 | int ErasureCodeShec::init(ErasureCodeProfile &profile, |
| 53 | ostream *ss) |
| 54 | { |
| 55 | int err = 0; |
| 56 | err |= parse(profile); |
| 57 | if (err) |
| 58 | return err; |
| 59 | prepare(); |
| 60 | return ErasureCode::init(profile, ss); |
| 61 | } |
| 62 | |
| 63 | unsigned int ErasureCodeShec::get_chunk_size(unsigned int stripe_width) const |
| 64 | { |