2011-12-16 00:04:31 +05:30
|
|
|
// Copyright (C) 2011 Red Hat, Inc. All rights reserved.
|
2011-12-06 19:23:05 +05:30
|
|
|
//
|
2011-12-06 19:13:56 +05:30
|
|
|
// This file is part of the thin-provisioning-tools source.
|
|
|
|
//
|
|
|
|
// thin-provisioning-tools is free software: you can redistribute it
|
|
|
|
// and/or modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation, either version 3 of
|
|
|
|
// the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// thin-provisioning-tools is distributed in the hope that it will be
|
|
|
|
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
|
|
|
|
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
|
|
// with thin-provisioning-tools. If not, see
|
|
|
|
// <http://www.gnu.org/licenses/>.
|
|
|
|
|
2020-06-15 11:29:16 +05:30
|
|
|
#include "base/math_utils.h"
|
2013-01-02 18:25:41 +05:30
|
|
|
#include "thin-provisioning/thin_pool.h"
|
2011-06-23 19:17:08 +05:30
|
|
|
|
|
|
|
#include <stdexcept>
|
|
|
|
|
2011-09-02 19:52:46 +05:30
|
|
|
using namespace base;
|
2011-08-23 16:25:37 +05:30
|
|
|
using namespace std;
|
2011-06-23 19:17:08 +05:30
|
|
|
using namespace persistent_data;
|
2011-07-22 20:39:56 +05:30
|
|
|
using namespace thin_provisioning;
|
2011-06-23 19:17:08 +05:30
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
2020-05-31 18:05:37 +05:30
|
|
|
thin::thin(thin_dev_t dev, thin_pool &pool)
|
2011-07-22 20:39:56 +05:30
|
|
|
: dev_(dev),
|
2020-05-31 17:44:42 +05:30
|
|
|
pool_(pool),
|
|
|
|
details_(pool.get_transaction_id(), pool.get_time()),
|
|
|
|
open_count_(1),
|
|
|
|
changed_(true)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
thin::thin(thin_dev_t dev, thin_pool &pool,
|
|
|
|
device_tree_detail::device_details const &details)
|
|
|
|
: dev_(dev),
|
|
|
|
pool_(pool),
|
|
|
|
details_(details),
|
|
|
|
open_count_(1),
|
|
|
|
changed_(false)
|
2011-07-22 20:39:56 +05:30
|
|
|
{
|
2011-06-23 19:17:08 +05:30
|
|
|
}
|
|
|
|
|
2011-07-22 20:39:56 +05:30
|
|
|
thin_dev_t
|
|
|
|
thin::get_dev_t() const
|
|
|
|
{
|
|
|
|
return dev_;
|
|
|
|
}
|
2011-06-23 19:17:08 +05:30
|
|
|
|
2011-07-22 20:39:56 +05:30
|
|
|
thin::maybe_address
|
|
|
|
thin::lookup(block_address thin_block)
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
|
|
|
uint64_t key[2] = {dev_, thin_block};
|
2020-06-01 22:33:01 +05:30
|
|
|
mapping_tree::maybe_value m = pool_.md_->mappings_->lookup(key);
|
|
|
|
if (!m)
|
|
|
|
return thin::maybe_address();
|
|
|
|
|
|
|
|
lookup_result r;
|
|
|
|
r.block_ = m->block_;
|
|
|
|
r.shared_ = m->time_ < details_.snapshotted_time_;
|
|
|
|
return r;
|
2011-06-23 19:17:08 +05:30
|
|
|
}
|
|
|
|
|
2016-08-10 21:10:48 +05:30
|
|
|
bool
|
2011-07-22 20:39:56 +05:30
|
|
|
thin::insert(block_address thin_block, block_address data_block)
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
|
|
|
uint64_t key[2] = {dev_, thin_block};
|
2020-05-31 17:44:42 +05:30
|
|
|
|
2013-05-20 22:07:46 +05:30
|
|
|
mapping_tree_detail::block_time bt;
|
2011-08-24 15:15:39 +05:30
|
|
|
bt.block_ = data_block;
|
2020-05-31 18:16:00 +05:30
|
|
|
bt.time_ = pool_.get_time();
|
2020-06-22 12:31:25 +05:30
|
|
|
bool inserted = pool_.md_->mappings_->insert(key, bt);
|
|
|
|
|
|
|
|
changed_ = true;
|
|
|
|
if (inserted)
|
|
|
|
++details_.mapped_blocks_;
|
|
|
|
|
|
|
|
return inserted;
|
2011-06-23 19:17:08 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-07-22 20:39:56 +05:30
|
|
|
thin::remove(block_address thin_block)
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
|
|
|
uint64_t key[2] = {dev_, thin_block};
|
2020-05-31 18:05:37 +05:30
|
|
|
pool_.md_->mappings_->remove(key);
|
2020-05-31 17:44:42 +05:30
|
|
|
|
|
|
|
--details_.mapped_blocks_;
|
|
|
|
changed_ = true;
|
2011-06-23 19:17:08 +05:30
|
|
|
}
|
2011-07-22 20:39:56 +05:30
|
|
|
|
|
|
|
void
|
|
|
|
thin::set_snapshot_time(uint32_t time)
|
|
|
|
{
|
2020-05-31 17:44:42 +05:30
|
|
|
details_.snapshotted_time_ = time;
|
|
|
|
changed_ = true;
|
2011-07-22 20:39:56 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
block_address
|
|
|
|
thin::get_mapped_blocks() const
|
|
|
|
{
|
2020-05-31 17:44:42 +05:30
|
|
|
return details_.mapped_blocks_;
|
2011-07-22 20:39:56 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
thin::set_mapped_blocks(block_address count)
|
|
|
|
{
|
2020-05-31 17:44:42 +05:30
|
|
|
details_.mapped_blocks_ = count;
|
|
|
|
changed_ = true;
|
2011-07-22 20:39:56 +05:30
|
|
|
}
|
|
|
|
|
2011-06-23 19:17:08 +05:30
|
|
|
//--------------------------------
|
|
|
|
|
2020-05-30 22:48:45 +05:30
|
|
|
thin_pool::thin_pool(block_manager::ptr bm)
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
2020-05-30 22:48:45 +05:30
|
|
|
md_ = metadata::ptr(new metadata(bm, true));
|
|
|
|
}
|
|
|
|
|
|
|
|
thin_pool::thin_pool(block_manager::ptr bm,
|
|
|
|
sector_t data_block_size,
|
|
|
|
block_address nr_data_blocks)
|
|
|
|
{
|
|
|
|
md_ = metadata::ptr(new metadata(bm,
|
|
|
|
metadata::CREATE,
|
|
|
|
data_block_size,
|
|
|
|
nr_data_blocks));
|
|
|
|
md_->commit();
|
2011-06-23 19:17:08 +05:30
|
|
|
}
|
|
|
|
|
2011-10-28 16:51:58 +05:30
|
|
|
thin_pool::~thin_pool()
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-10-28 16:51:58 +05:30
|
|
|
thin_pool::create_thin(thin_dev_t dev)
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
|
|
|
uint64_t key[1] = {dev};
|
|
|
|
|
|
|
|
if (device_exists(dev))
|
2020-05-31 17:44:42 +05:30
|
|
|
throw std::runtime_error("device already exists");
|
2011-06-23 19:17:08 +05:30
|
|
|
|
2014-08-26 15:44:49 +05:30
|
|
|
single_mapping_tree::ptr new_tree(new single_mapping_tree(*md_->tm_,
|
2013-05-20 22:07:46 +05:30
|
|
|
mapping_tree_detail::block_time_ref_counter(md_->data_sm_)));
|
2011-10-28 20:58:24 +05:30
|
|
|
md_->mappings_top_level_->insert(key, new_tree->get_root());
|
|
|
|
md_->mappings_->set_root(md_->mappings_top_level_->get_root()); // FIXME: ugly
|
2011-10-28 18:23:15 +05:30
|
|
|
|
2020-05-31 17:44:42 +05:30
|
|
|
thin::ptr r = create_device(dev);
|
|
|
|
close_device(r);
|
2011-06-23 19:17:08 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-10-28 16:51:58 +05:30
|
|
|
thin_pool::create_snap(thin_dev_t dev, thin_dev_t origin)
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
|
|
|
uint64_t snap_key[1] = {dev};
|
|
|
|
uint64_t origin_key[1] = {origin};
|
|
|
|
|
2020-05-31 20:28:59 +05:30
|
|
|
if (device_exists(dev))
|
|
|
|
throw std::runtime_error("device already exists");
|
|
|
|
|
|
|
|
// find the mapping tree of the origin
|
|
|
|
dev_tree::maybe_value mtree_root = md_->mappings_top_level_->lookup(origin_key);
|
2011-06-27 15:15:30 +05:30
|
|
|
if (!mtree_root)
|
2011-06-23 19:17:08 +05:30
|
|
|
throw std::runtime_error("unknown origin");
|
2014-08-26 15:44:49 +05:30
|
|
|
single_mapping_tree otree(*md_->tm_, *mtree_root,
|
2013-05-20 22:07:46 +05:30
|
|
|
mapping_tree_detail::block_time_ref_counter(md_->data_sm_));
|
2011-06-27 15:15:30 +05:30
|
|
|
|
2020-05-31 20:28:59 +05:30
|
|
|
// clone the origin
|
2011-06-27 15:15:30 +05:30
|
|
|
single_mapping_tree::ptr clone(otree.clone());
|
2011-10-28 20:58:24 +05:30
|
|
|
md_->mappings_top_level_->insert(snap_key, clone->get_root());
|
|
|
|
md_->mappings_->set_root(md_->mappings_top_level_->get_root()); // FIXME: ugly
|
2011-06-23 19:17:08 +05:30
|
|
|
|
2011-10-28 16:01:00 +05:30
|
|
|
md_->sb_.time_++;
|
2011-06-23 19:17:08 +05:30
|
|
|
|
2020-05-31 20:28:59 +05:30
|
|
|
// create details for the snapshot
|
|
|
|
thin::ptr s = create_device(dev);
|
|
|
|
set_snapshot_details(s, origin);
|
|
|
|
close_device(s);
|
2011-06-23 19:17:08 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-10-28 16:51:58 +05:30
|
|
|
thin_pool::del(thin_dev_t dev)
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
|
|
|
uint64_t key[1] = {dev};
|
2020-06-02 09:19:14 +05:30
|
|
|
|
|
|
|
thin::ptr td = open_device(dev);
|
|
|
|
if (td->open_count_ > 1) {
|
|
|
|
close_device(td);
|
|
|
|
throw std::runtime_error("device busy");
|
|
|
|
}
|
|
|
|
|
|
|
|
thin_devices_.erase(dev);
|
|
|
|
|
|
|
|
dev_tree::maybe_value mtree_root = md_->mappings_top_level_->lookup(key);
|
|
|
|
if (!device_exists(dev) || !mtree_root)
|
|
|
|
throw std::runtime_error("unknown device");
|
|
|
|
|
|
|
|
// TODO: trigger subtree deletion from the mtree_ref_counter,
|
|
|
|
// like the kenrel subtree_dec() does.
|
|
|
|
single_mapping_tree mtree(*md_->tm_, *mtree_root,
|
|
|
|
mapping_tree_detail::block_time_ref_counter(md_->data_sm_));
|
|
|
|
mtree.destroy();
|
|
|
|
|
|
|
|
md_->details_->remove(key);
|
2011-10-28 20:58:24 +05:30
|
|
|
md_->mappings_top_level_->remove(key);
|
2020-06-02 09:19:14 +05:30
|
|
|
md_->mappings_->set_root(md_->mappings_top_level_->get_root()); // FIXME: ugly
|
2011-06-23 19:17:08 +05:30
|
|
|
}
|
|
|
|
|
2020-05-31 17:44:42 +05:30
|
|
|
void
|
|
|
|
thin_pool::commit()
|
|
|
|
{
|
|
|
|
write_changed_details();
|
|
|
|
md_->commit();
|
|
|
|
}
|
|
|
|
|
2011-06-23 19:17:08 +05:30
|
|
|
void
|
2011-10-28 16:51:58 +05:30
|
|
|
thin_pool::set_transaction_id(uint64_t id)
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
2011-10-28 16:01:00 +05:30
|
|
|
md_->sb_.trans_id_ = id;
|
2011-06-23 19:17:08 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t
|
2011-10-28 16:51:58 +05:30
|
|
|
thin_pool::get_transaction_id() const
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
2011-10-28 16:01:00 +05:30
|
|
|
return md_->sb_.trans_id_;
|
2011-06-23 19:17:08 +05:30
|
|
|
}
|
|
|
|
|
2020-06-02 16:37:13 +05:30
|
|
|
void
|
|
|
|
thin_pool::reserve_metadata_snap()
|
|
|
|
{
|
|
|
|
if (md_->sb_.metadata_snap_)
|
|
|
|
throw std::runtime_error("pool metadata snapshot already exists.");
|
|
|
|
|
|
|
|
commit();
|
|
|
|
|
|
|
|
md_->metadata_sm_->inc(superblock_detail::SUPERBLOCK_LOCATION);
|
|
|
|
transaction_manager::write_ref wr = md_->tm_->shadow(
|
|
|
|
superblock_detail::SUPERBLOCK_LOCATION,
|
|
|
|
superblock_validator()).first;
|
|
|
|
|
|
|
|
superblock_detail::superblock sb;
|
|
|
|
superblock_detail::superblock_disk *sbd = reinterpret_cast<superblock_detail::superblock_disk *>(wr.data());
|
|
|
|
superblock_detail::superblock_traits::unpack(*sbd, sb);
|
|
|
|
|
|
|
|
memset(sb.data_space_map_root_, 0, superblock_detail::SPACE_MAP_ROOT_SIZE);
|
|
|
|
memset(sb.metadata_space_map_root_, 0, superblock_detail::SPACE_MAP_ROOT_SIZE);
|
|
|
|
md_->metadata_sm_->inc(sb.data_mapping_root_);
|
|
|
|
md_->metadata_sm_->inc(sb.device_details_root_);
|
|
|
|
|
|
|
|
superblock_detail::superblock_traits::pack(sb, *sbd);
|
|
|
|
|
|
|
|
md_->sb_.metadata_snap_ = wr.get_location();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
thin_pool::release_metadata_snap()
|
|
|
|
{
|
|
|
|
if (!md_->sb_.metadata_snap_)
|
|
|
|
throw std::runtime_error("No pool metadata snapshot found");
|
|
|
|
|
|
|
|
superblock_detail::superblock sb = read_superblock(md_->tm_->get_bm(),
|
|
|
|
md_->sb_.metadata_snap_);
|
|
|
|
device_tree dtree(*md_->tm_, sb.device_details_root_,
|
|
|
|
device_tree_detail::device_details_traits::ref_counter());
|
|
|
|
dtree.destroy();
|
|
|
|
mapping_tree mtree(*md_->tm_, sb.data_mapping_root_,
|
|
|
|
mapping_tree_detail::block_traits::ref_counter(md_->tm_->get_sm()));
|
|
|
|
mtree.destroy();
|
|
|
|
md_->metadata_sm_->dec(md_->sb_.metadata_snap_);
|
|
|
|
|
|
|
|
md_->sb_.metadata_snap_ = 0;
|
|
|
|
}
|
|
|
|
|
2011-06-23 19:17:08 +05:30
|
|
|
block_address
|
2012-05-17 17:33:10 +05:30
|
|
|
thin_pool::get_metadata_snap() const
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
2012-05-17 17:33:10 +05:30
|
|
|
return md_->sb_.metadata_snap_;
|
2011-06-23 19:17:08 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
block_address
|
2011-10-28 16:51:58 +05:30
|
|
|
thin_pool::alloc_data_block()
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
2020-06-02 08:52:44 +05:30
|
|
|
space_map::maybe_block mb = md_->data_sm_->new_block();
|
2011-11-16 18:23:37 +05:30
|
|
|
if (!mb)
|
|
|
|
throw runtime_error("couldn't allocate new block");
|
|
|
|
|
|
|
|
return *mb;
|
2011-06-23 19:17:08 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-10-28 16:51:58 +05:30
|
|
|
thin_pool::free_data_block(block_address b)
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
2011-10-28 16:01:00 +05:30
|
|
|
md_->data_sm_->dec(b);
|
2011-06-23 19:17:08 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
block_address
|
2011-10-28 16:51:58 +05:30
|
|
|
thin_pool::get_nr_free_data_blocks() const
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
2011-10-28 16:01:00 +05:30
|
|
|
return md_->data_sm_->get_nr_free();
|
2011-06-23 19:17:08 +05:30
|
|
|
}
|
|
|
|
|
2020-06-17 10:26:40 +05:30
|
|
|
sector_t
|
2011-10-28 16:51:58 +05:30
|
|
|
thin_pool::get_data_block_size() const
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
2011-10-28 16:01:00 +05:30
|
|
|
return md_->sb_.data_block_size_;
|
2011-06-23 19:17:08 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
block_address
|
2011-10-28 16:51:58 +05:30
|
|
|
thin_pool::get_data_dev_size() const
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
2011-10-28 16:01:00 +05:30
|
|
|
return md_->data_sm_->get_nr_blocks();
|
2011-07-22 20:39:56 +05:30
|
|
|
}
|
|
|
|
|
2020-05-31 17:44:42 +05:30
|
|
|
uint32_t
|
|
|
|
thin_pool::get_time() const
|
|
|
|
{
|
|
|
|
return md_->sb_.time_;
|
|
|
|
}
|
|
|
|
|
2011-07-22 20:39:56 +05:30
|
|
|
thin::ptr
|
2011-10-28 16:51:58 +05:30
|
|
|
thin_pool::open_thin(thin_dev_t dev)
|
2011-07-22 20:39:56 +05:30
|
|
|
{
|
2020-05-31 17:44:42 +05:30
|
|
|
return open_device(dev);
|
2011-06-23 19:17:08 +05:30
|
|
|
}
|
2011-07-22 20:39:56 +05:30
|
|
|
|
2020-06-02 10:13:55 +05:30
|
|
|
void
|
|
|
|
thin_pool::close_thin(thin::ptr td)
|
|
|
|
{
|
|
|
|
close_device(td);
|
|
|
|
}
|
|
|
|
|
2011-06-23 19:17:08 +05:30
|
|
|
bool
|
2011-10-28 16:51:58 +05:30
|
|
|
thin_pool::device_exists(thin_dev_t dev) const
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
|
|
|
uint64_t key[1] = {dev};
|
2016-02-04 14:32:42 +05:30
|
|
|
return !!md_->details_->lookup(key);
|
2011-06-23 19:17:08 +05:30
|
|
|
}
|
|
|
|
|
2020-05-31 17:44:42 +05:30
|
|
|
thin::ptr
|
|
|
|
thin_pool::create_device(thin_dev_t dev)
|
|
|
|
{
|
|
|
|
device_map::iterator it = thin_devices_.find(dev);
|
|
|
|
if (it != thin_devices_.end())
|
|
|
|
throw std::runtime_error("device already exists");
|
|
|
|
|
|
|
|
thin::ptr td(new thin(dev, *this));
|
|
|
|
thin_devices_[dev] = td;
|
|
|
|
return td;
|
|
|
|
}
|
|
|
|
|
|
|
|
thin::ptr
|
|
|
|
thin_pool::open_device(thin_dev_t dev)
|
|
|
|
{
|
|
|
|
device_map::iterator it = thin_devices_.find(dev);
|
|
|
|
if (it != thin_devices_.end()) {
|
|
|
|
thin::ptr td = it->second;
|
|
|
|
td->open_count_++;
|
|
|
|
return td;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t key[1] = {dev};
|
|
|
|
device_tree::maybe_value details = md_->details_->lookup(key);
|
|
|
|
if (!details)
|
|
|
|
throw std::runtime_error("no such device");
|
|
|
|
|
|
|
|
thin::ptr td(new thin(dev, *this, *details));
|
|
|
|
thin_devices_[dev] = td;
|
|
|
|
return td;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
thin_pool::close_device(thin::ptr td)
|
|
|
|
{
|
|
|
|
td->open_count_--;
|
|
|
|
}
|
|
|
|
|
2020-05-31 20:28:59 +05:30
|
|
|
void
|
|
|
|
thin_pool::set_snapshot_details(thin::ptr snap, thin_dev_t origin)
|
|
|
|
{
|
|
|
|
thin::ptr o = open_device(origin);
|
|
|
|
o->set_snapshot_time(md_->sb_.time_);
|
|
|
|
snap->set_snapshot_time(md_->sb_.time_);
|
|
|
|
snap->set_mapped_blocks(o->get_mapped_blocks());
|
|
|
|
close_device(o);
|
|
|
|
}
|
|
|
|
|
2020-05-31 17:44:42 +05:30
|
|
|
void
|
|
|
|
thin_pool::write_changed_details()
|
|
|
|
{
|
|
|
|
for (auto it = thin_devices_.cbegin(); it != thin_devices_.cend(); ) {
|
|
|
|
uint64_t key[1] = {it->first};
|
|
|
|
thin::ptr td = it->second;
|
|
|
|
|
|
|
|
if (td->changed_) {
|
|
|
|
md_->details_->insert(key, td->details_);
|
|
|
|
td->changed_ = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!td->open_count_)
|
|
|
|
it = thin_devices_.erase(it);
|
|
|
|
else
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-21 15:03:52 +05:30
|
|
|
void
|
|
|
|
thin_pool::set_needs_check()
|
|
|
|
{
|
|
|
|
md_->sb_.set_needs_check_flag(true);
|
|
|
|
}
|
|
|
|
|
2011-06-23 19:17:08 +05:30
|
|
|
//----------------------------------------------------------------
|
2020-06-01 22:46:38 +05:30
|
|
|
|
|
|
|
void
|
|
|
|
thin_provisioning::process_read(thin::ptr td, thin_pool::ptr tp,
|
|
|
|
sector_t offset)
|
|
|
|
{
|
|
|
|
block_address blocknr = base::div_up<sector_t>(offset, tp->get_data_block_size());
|
|
|
|
td->lookup(blocknr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
thin_provisioning::process_write(thin::ptr td, thin_pool::ptr tp,
|
|
|
|
sector_t offset)
|
|
|
|
{
|
|
|
|
block_address blocknr = base::div_up<sector_t>(offset, tp->get_data_block_size());
|
|
|
|
thin::maybe_address result = td->lookup(blocknr);
|
|
|
|
if (!!result && !result->shared_)
|
|
|
|
return;
|
|
|
|
// TODO: handle out-of-space errors
|
|
|
|
block_address data_block = tp->alloc_data_block();
|
|
|
|
td->insert(blocknr, data_block);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
thin_provisioning::process_discard(thin::ptr td, thin_pool::ptr tp,
|
|
|
|
sector_t offset)
|
|
|
|
{
|
|
|
|
block_address blocknr = base::div_up<sector_t>(offset, tp->get_data_block_size());
|
|
|
|
thin::maybe_address result = td->lookup(blocknr);
|
|
|
|
if (!result)
|
|
|
|
return;
|
|
|
|
td->remove(blocknr);
|
|
|
|
if (!result->shared_)
|
|
|
|
tp->free_data_block(result->block_);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|