X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f89671e0bd7450461d70d5ced6079123e73c2a63..bde09a7b53c62986d6f22b10de50dec039b4f96a:/src/surf/storage_n11.cpp diff --git a/src/surf/storage_n11.cpp b/src/surf/storage_n11.cpp index 22246c57d7..5293953422 100644 --- a/src/surf/storage_n11.cpp +++ b/src/surf/storage_n11.cpp @@ -21,7 +21,7 @@ extern std::map storage_ty void check_disk_attachment() { for (auto const& s : simgrid::s4u::Engine::get_instance()->get_all_storages()) { - simgrid::kernel::routing::NetPoint* host_elm = + const simgrid::kernel::routing::NetPoint* host_elm = simgrid::s4u::Engine::get_instance()->netpoint_by_name_or_null(s->get_impl()->get_host()); if (not host_elm) surf_parse_error(std::string("Unable to attach storage ") + s->get_cname() + ": host " + @@ -52,7 +52,7 @@ StorageN11Model::StorageN11Model() StorageImpl* StorageN11Model::createStorage(const std::string& id, const std::string& type_id, const std::string& content_name, const std::string& attach) { - StorageType* storage_type = storage_types.at(type_id); + const StorageType* storage_type = storage_types.at(type_id); double Bread = surf_parse_get_bandwidth(storage_type->model_properties->at("Bread").c_str(), "property Bread, storage", type_id); @@ -96,7 +96,7 @@ StorageN11::StorageN11(StorageModel* model, const std::string& name, lmm::System : StorageImpl(model, name, maxminSystem, bread, bwrite, type_id, content_name, size, attach) { XBT_DEBUG("Create resource with Bread '%f' Bwrite '%f' and Size '%llu'", bread, bwrite, size); - s4u::Storage::on_creation(this->piface_); + s4u::Storage::on_creation(*get_iface()); } StorageAction* StorageN11::io_start(sg_size_t size, s4u::Io::OpType type)