| 364 | } |
| 365 | |
| 366 | void |
| 367 | StripeSM::vol_init_data_internal() |
| 368 | { |
| 369 | this->_buckets = |
| 370 | ((this->_len.count() * 8192 - (this->_content - this->_start)) / cache_config_min_average_object_size) / DIR_DEPTH; |
| 371 | this->_segments = (this->_buckets + (((1 << 16) - 1) / DIR_DEPTH)) / ((1 << 16) / DIR_DEPTH); |
| 372 | this->_buckets = (this->_buckets + this->_segments - 1) / this->_segments; |
| 373 | this->_content = this->_start + Bytes(2 * vol_dirlen()); |
| 374 | } |
| 375 | |
| 376 | void |
| 377 | StripeSM::vol_init_data() |