X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9caf173e476622d309cc5653a83d224d05787cc7..1d17c885aa26ea6c36c1fc0c6ab39ddd5d509755:/src/surf/storage_n11.cpp diff --git a/src/surf/storage_n11.cpp b/src/surf/storage_n11.cpp index 897c3b7ab6..53b75032e7 100644 --- a/src/surf/storage_n11.cpp +++ b/src/surf/storage_n11.cpp @@ -6,11 +6,9 @@ #include "storage_n11.hpp" #include "simgrid/kernel/routing/NetPoint.hpp" #include "simgrid/s4u/Engine.hpp" -#include "simgrid/s4u/Host.hpp" -#include "src/surf/xml/platf.hpp" #include "src/kernel/lmm/maxmin.hpp" -#include "xbt/utility.hpp" -#include /*ceil*/ +#include "src/surf/xml/platf.hpp" +#include "surf/surf.hpp" XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_storage); @@ -19,7 +17,7 @@ XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_storage); *************/ extern std::map storage_types; -static void check_disk_attachment() +void check_disk_attachment() { for (auto const& s : simgrid::s4u::Engine::getInstance()->getAllStorages()) { simgrid::kernel::routing::NetPoint* host_elm = sg_netpoint_by_name_or_null(s->getImpl()->getHost().c_str()); @@ -31,12 +29,6 @@ static void check_disk_attachment() } } -void storage_register_callbacks() -{ - simgrid::s4u::onPlatformCreated.connect(check_disk_attachment); - instr_routing_define_callbacks(); -} - /********* * Model * *********/ @@ -106,12 +98,12 @@ StorageN11::StorageN11(StorageModel* model, std::string name, kernel::lmm::Syste StorageAction* StorageN11::read(sg_size_t size) { - return new StorageN11Action(model(), size, isOff(), this, READ); + return new StorageN11Action(get_model(), size, is_off(), this, READ); } StorageAction* StorageN11::write(sg_size_t size) { - return new StorageN11Action(model(), size, isOff(), this, WRITE); + return new StorageN11Action(get_model(), size, is_off(), this, WRITE); } /********** @@ -125,7 +117,7 @@ StorageN11Action::StorageN11Action(kernel::resource::Model* model, double cost, XBT_IN("(%s,%g", storage->get_cname(), cost); // Must be less than the max bandwidth for all actions - model->get_maxmin_system()->expand(storage->constraint(), get_variable(), 1.0); + model->get_maxmin_system()->expand(storage->get_constraint(), get_variable(), 1.0); switch(type) { case READ: model->get_maxmin_system()->expand(storage->constraintRead_, get_variable(), 1.0);