X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cdf6a962eb4e88efbed3df9c41343adabcf09e6c..131ea969cf91c332bd533b7e9d67c729149e9b4d:/src/plugins/vm/VmLiveMigration.cpp diff --git a/src/plugins/vm/VmLiveMigration.cpp b/src/plugins/vm/VmLiveMigration.cpp index 90b555321d..43f2629a5e 100644 --- a/src/plugins/vm/VmLiveMigration.cpp +++ b/src/plugins/vm/VmLiveMigration.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2013-2020. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -9,16 +9,16 @@ #include "src/plugins/vm/VirtualMachineImpl.hpp" #include "src/plugins/vm/VmHostExt.hpp" -XBT_LOG_NEW_DEFAULT_CATEGORY(vm_live_migration, "S4U virtual machines live migration"); +XBT_LOG_NEW_DEFAULT_SUBCATEGORY(vm_live_migration, s4u, "S4U virtual machines live migration"); namespace simgrid { namespace vm { -simgrid::xbt::Extension VmMigrationExt::EXTENSION_ID; +xbt::Extension VmMigrationExt::EXTENSION_ID; void VmMigrationExt::ensureVmMigrationExtInstalled() { if (not EXTENSION_ID.valid()) - EXTENSION_ID = simgrid::s4u::Host::extension_create(); + EXTENSION_ID = s4u::Host::extension_create(); } void MigrationRx::operator()() @@ -30,7 +30,7 @@ void MigrationRx::operator()() std::string("__mig_stage3:") + vm_->get_cname() + "(" + src_pm_->get_cname() + "-" + dst_pm_->get_cname() + ")"; while (not received_finalize) { - std::string* payload = static_cast(mbox->get()); + const std::string* payload = static_cast(mbox->get()); if (finalize_task_name == *payload) received_finalize = true; @@ -50,7 +50,7 @@ void MigrationRx::operator()() vm_->resume(); // Now the VM is running on the new host (the migration is completed) (even if the SRC crash) - vm_->get_impl()->is_migrating_ = false; + vm_->get_impl()->end_migration(); XBT_DEBUG("VM(%s) moved from PM(%s) to PM(%s)", vm_->get_cname(), src_pm_->get_cname(), dst_pm_->get_cname()); if (TRACE_vm_is_enabled()) { @@ -59,18 +59,18 @@ void MigrationRx::operator()() counter++; // start link - container_t msg = simgrid::instr::Container::by_name(vm_->get_name()); - simgrid::instr::Container::get_root()->get_link("VM_LINK")->start_event(msg, "M", key); + container_t msg = instr::Container::by_name(vm_->get_name()); + instr::Container::get_root()->get_link("VM_LINK")->start_event(msg, "M", key); // destroy existing container of this vm - simgrid::instr::Container::by_name(vm_->get_name())->remove_from_parent(); + instr::Container::by_name(vm_->get_name())->remove_from_parent(); // create new container on the new_host location - new simgrid::instr::Container(vm_->get_name(), "VM", simgrid::instr::Container::by_name(dst_pm_->get_name())); + new instr::Container(vm_->get_name(), "VM", instr::Container::by_name(dst_pm_->get_name())); // end link - msg = simgrid::instr::Container::by_name(vm_->get_name()); - simgrid::instr::Container::get_root()->get_link("VM_LINK")->end_event(msg, "M", key); + msg = instr::Container::by_name(vm_->get_name()); + instr::Container::get_root()->get_link("VM_LINK")->end_event(msg, "M", key); } // Inform the SRC that the migration has been correctly performed std::string* payload = new std::string("__mig_stage4:"); @@ -181,7 +181,6 @@ void MigrationTx::operator()() skip_stage2 = true; } else if (sent > ramsize) XBT_CRITICAL("bug"); - } catch (const Exception&) { // hostfailure (if you want to know whether this is the SRC or the DST check directly in send_migration_data code) // Stop the dirty page tracking an return (there is no memory space to release) @@ -203,7 +202,6 @@ void MigrationTx::operator()() /* Stage2: send update pages iteratively until the size of remaining states becomes smaller than threshold value. */ if (not skip_stage2) { - int stage2_round = 0; /* just after stage1, nothing has been updated. But, we have to send the data updated during stage1 */ sg_size_t updated_size = get_updated_size(computed_during_stage1, dp_rate, dp_cap); @@ -213,7 +211,6 @@ void MigrationTx::operator()() /* When the remaining size is below the threshold value, move to stage 3. */ while (threshold < remaining_size) { - XBT_DEBUG("mig-stage 2:%d updated_size %llu computed_during_stage1 %f dp_rate %f dp_cap %llu", stage2_round, updated_size, computed_during_stage1, dp_rate, dp_cap); @@ -277,16 +274,16 @@ void MigrationTx::operator()() // effectively the VM on the DST node. XBT_DEBUG("mig: tx_done"); } -} -} +} // namespace vm +} // namespace simgrid static void onVirtualMachineShutdown(simgrid::s4u::VirtualMachine const& vm) { - if (vm.get_impl()->is_migrating_) { + if (vm.get_impl()->is_migrating()) { vm.extension()->rx_->kill(); vm.extension()->tx_->kill(); vm.extension()->issuer_->kill(); - vm.get_impl()->is_migrating_ = false; + vm.get_impl()->end_migration(); } } @@ -314,9 +311,9 @@ simgrid::s4u::VirtualMachine* sg_vm_create_migratable(simgrid::s4u::Host* pm, co return vm; } -int sg_vm_is_migrating(simgrid::s4u::VirtualMachine* vm) +int sg_vm_is_migrating(const simgrid::s4u::VirtualMachine* vm) { - return vm->get_impl()->is_migrating_; + return vm->get_impl()->is_migrating(); } void sg_vm_migrate(simgrid::s4u::VirtualMachine* vm, simgrid::s4u::Host* dst_pm) @@ -335,12 +332,12 @@ void sg_vm_migrate(simgrid::s4u::VirtualMachine* vm, simgrid::s4u::Host* dst_pm) throw simgrid::VmFailureException( XBT_THROW_POINT, simgrid::xbt::string_printf("Cannot migrate VM '%s' that is not running yet.", vm->get_cname())); - if (vm->get_impl()->is_migrating_) + if (vm->get_impl()->is_migrating()) throw simgrid::VmFailureException( XBT_THROW_POINT, simgrid::xbt::string_printf("Cannot migrate VM '%s' that is already migrating.", vm->get_cname())); - vm->get_impl()->is_migrating_ = true; + vm->get_impl()->start_migration(); simgrid::s4u::VirtualMachine::on_migration_start(*vm); std::string rx_name = @@ -363,6 +360,6 @@ void sg_vm_migrate(simgrid::s4u::VirtualMachine* vm, simgrid::s4u::Host* dst_pm) tx->join(); rx->join(); - vm->get_impl()->is_migrating_ = false; + vm->get_impl()->end_migration(); simgrid::s4u::VirtualMachine::on_migration_end(*vm); }