Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Added the lazy management improvement for network models.
[simgrid.git] / src / surf / network.c
index cfa1139..c69aaa4 100644 (file)
@@ -407,6 +407,8 @@ static double net_share_resources(double now)
     }
   }
 
+  DEBUG1("Min of share resources %f", min);
+
   return min;
 }
 
@@ -442,7 +444,7 @@ static void net_update_actions_state(double now, double delta)
     link_CM02_t link;
     unsigned int i;
     xbt_dynar_foreach(route, i, link) {
-      TRACE_surf_link_set_utilization(link,
+      TRACE_surf_link_set_utilization(link->lmm_resource.generic_resource.name,
                                       action->generic_action.data,
                                       (surf_action_t) action,
                                       lmm_variable_getvalue
@@ -506,7 +508,7 @@ static void net_update_resource_state(void *id,
                                 (nw_link->lmm_resource.power.peak *
                                  nw_link->lmm_resource.power.scale));
 #ifdef HAVE_TRACING
-    TRACE_surf_link_set_bandwidth(date, nw_link,
+    TRACE_surf_link_set_bandwidth(date, nw_link->lmm_resource.generic_resource.name,
                                   sg_bandwidth_factor *
                                   (nw_link->lmm_resource.power.peak *
                                    nw_link->lmm_resource.power.scale));