Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix surf_storage execution
authornavarro <navarro@caraja.(none)>
Tue, 27 Mar 2012 11:59:17 +0000 (13:59 +0200)
committernavarro <navarro@caraja.(none)>
Tue, 27 Mar 2012 11:59:17 +0000 (13:59 +0200)
src/include/surf/surf.h
testsuite/surf/surf_usage.c

index 9566b4c..7ec4c48 100644 (file)
@@ -335,7 +335,9 @@ static inline void *surf_workstation_resource_by_name(const char *name){
        return xbt_lib_get_or_null(host_lib, name, SURF_WKS_LEVEL);
 }
 static inline void *surf_network_resource_by_name(const char *name){
        return xbt_lib_get_or_null(host_lib, name, SURF_WKS_LEVEL);
 }
 static inline void *surf_network_resource_by_name(const char *name){
-       return xbt_lib_get_or_null(link_lib, name, SURF_LINK_LEVEL);
+    network_element_t net_elm = xbt_lib_get_or_null(host_lib, name, ROUTING_HOST_LEVEL);
+    if(!net_elm) net_elm = xbt_lib_get_or_null(as_router_lib, name, ROUTING_ASR_LEVEL);
+       return net_elm;
 }
 static inline void *surf_storage_resource_by_name(const char *name){
     return xbt_lib_get_or_null(storage_lib, name, SURF_STORAGE_LEVEL);
 }
 static inline void *surf_storage_resource_by_name(const char *name){
     return xbt_lib_get_or_null(storage_lib, name, SURF_STORAGE_LEVEL);
index 3886c51..2e8c31a 100644 (file)
@@ -90,7 +90,7 @@ void test(char *platform)
   XBT_DEBUG("%s : %p", surf_resource_name(cardB), cardB);
 
   /* Let's do something on it */
   XBT_DEBUG("%s : %p", surf_resource_name(cardB), cardB);
 
   /* Let's do something on it */
-  surf_network_model->extension.network.communicate(cpuA, cpuB,
+  surf_network_model->extension.network.communicate(cardA, cardB,
                                                     150.0, -1.0);
 
   surf_solve(-1.0);                 /* Takes traces into account. Returns 0.0 */
                                                     150.0, -1.0);
 
   surf_solve(-1.0);                 /* Takes traces into account. Returns 0.0 */