From: Pierre Veyre Date: Wed, 14 Aug 2013 07:31:29 +0000 (+0200) Subject: Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid X-Git-Tag: v3_9_90~128 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/ee52f84fe512219acf534c4d4654c3df56659e91?hp=7dcc77d7a9bf7a4b8f667da338bbed3abd35be98 Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid --- diff --git a/ChangeLog b/ChangeLog index 0add88dfef..409ae178ca 100644 --- a/ChangeLog +++ b/ChangeLog @@ -41,9 +41,16 @@ SimGrid (3.10) NOT RELEASED; urgency=low happening inside a collective SMPI call. * Fix the behavior of complex datatypes handling * replace MPICH-1 test suite by the one from MPICH 3.0.4 + * Add all missing Fortran bindings, SMPI should work with Fortran 90 + (no privatization of global variables yet) + + SimDag: + * Allow to change SimGrid configuration (see --help) within the code + thanks to SD_config() as it can be done in MSG. + * Add a new function SD_task_set_amount() upon user request. PLATFORM: - * Handle units for values (10ms, 10kiloflops, 10Bps, ...) + * Handle units for values (10ms, 10kiloflops, 10Bps, 1GB, ...) * Remove rule based routing (no more pcre dependency) * Add a limiter_link option to cluster tag, to specify a maximum reachable bandwidth in fullduplex mode when it is < 2*nominal bw diff --git a/buildtools/Cmake/AddTests.cmake b/buildtools/Cmake/AddTests.cmake index e38d36e5af..b276f09b18 100644 --- a/buildtools/Cmake/AddTests.cmake +++ b/buildtools/Cmake/AddTests.cmake @@ -271,6 +271,7 @@ if(NOT enable_memcheck) ADD_TEST(simdag-test-dax-cycle ${CMAKE_BINARY_DIR}/bin/tesh ${TESH_OPTION} --setenv srcdir=${CMAKE_HOME_DIRECTORY}/examples/simdag/dax --cd ${CMAKE_BINARY_DIR}/examples/simdag/dax ${CMAKE_HOME_DIRECTORY}/examples/simdag/dax/simple_dax_with_cycle.tesh) ADD_TEST(simdag-test-prop ${CMAKE_BINARY_DIR}/bin/tesh ${TESH_OPTION} --setenv srcdir=${CMAKE_HOME_DIRECTORY}/examples/simdag --cd ${CMAKE_BINARY_DIR}/examples/simdag ${CMAKE_HOME_DIRECTORY}/examples/simdag/properties/test_prop.tesh) ADD_TEST(simdag-test-minmin-scheduling ${CMAKE_BINARY_DIR}/bin/tesh ${TESH_OPTION} --setenv bindir=${CMAKE_BINARY_DIR}/examples/simdag/scheduling --cd ${CMAKE_HOME_DIRECTORY}/examples/simdag/scheduling test_minmin.tesh) + ADD_TEST(simdag-test-io ${CMAKE_BINARY_DIR}/bin/tesh ${TESH_OPTION} --setenv bindir=${CMAKE_BINARY_DIR}/examples/simdag/ --setenv srcdir=${CMAKE_HOME_DIRECTORY}/ --cd ${CMAKE_HOME_DIRECTORY}/examples/ ${CMAKE_HOME_DIRECTORY}/examples/simdag/io/io.tesh) ADD_TEST(msg-gtnets-crosstraffic-thread ${CMAKE_BINARY_DIR}/bin/tesh ${TESH_OPTION} --cfg contexts/factory:thread --setenv srcdir=${CMAKE_HOME_DIRECTORY}/examples/msg --cd ${CMAKE_BINARY_DIR}/examples/msg ${CMAKE_HOME_DIRECTORY}/examples/msg/gtnets/gtnets-crosstraffic.tesh) if(CONTEXT_UCONTEXT) @@ -465,7 +466,11 @@ if(NOT enable_memcheck) ADD_TEST(smpi-mpich3-group-raw ${CMAKE_COMMAND} -E chdir ${CMAKE_BINARY_DIR}/teshsuite/smpi/mpich3-test/group ${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/mpich3-test/runtests -mpiexec=${CMAKE_BINARY_DIR}/smpi_script/bin/smpirun -srcdir=${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/mpich3-test/group -tests=testlist -execarg=--cfg=contexts/factory:raw) ADD_TEST(smpi-mpich3-pt2pt-raw ${CMAKE_COMMAND} -E chdir ${CMAKE_BINARY_DIR}/teshsuite/smpi/mpich3-test/pt2pt ${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/mpich3-test/runtests -mpiexec=${CMAKE_BINARY_DIR}/smpi_script/bin/smpirun -srcdir=${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/mpich3-test/pt2pt -tests=testlist -execarg=--cfg=contexts/factory:raw) ADD_TEST(smpi-mpich3-thread-f77 ${CMAKE_COMMAND} -E chdir ${CMAKE_BINARY_DIR}/teshsuite/smpi/mpich3-test/f77/ ${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/mpich3-test/runtests -mpiexec=${CMAKE_BINARY_DIR}/smpi_script/bin/smpirun -srcdir=${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/mpich3-test/f77/ -tests=testlist -execarg=--cfg=contexts/factory:thread) - set_tests_properties(smpi-mpich3-thread-f77 smpi-mpich3-attr-raw smpi-mpich3-coll-thread smpi-mpich3-coll-ompi-thread smpi-mpich3-coll-mpich-thread smpi-mpich3-comm-raw smpi-mpich3-init-raw smpi-mpich3-datatype-raw smpi-mpich3-pt2pt-raw smpi-mpich3-group-raw PROPERTIES PASS_REGULAR_EXPRESSION "tests passed!") + if(NOT HAVE_MC) + ADD_TEST(smpi-mpich3-thread-f90 ${CMAKE_COMMAND} -E chdir ${CMAKE_BINARY_DIR}/teshsuite/smpi/mpich3-test/f90/ ${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/mpich3-test/runtests -mpiexec=${CMAKE_BINARY_DIR}/smpi_script/bin/smpirun -srcdir=${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/mpich3-test/f90/ -tests=testlist -execarg=--cfg=contexts/factory:thread) + set_tests_properties(smpi-mpich3-thread-f90 PROPERTIES PASS_REGULAR_EXPRESSION "tests passed!") +endif() + set_tests_properties( smpi-mpich3-thread-f77 smpi-mpich3-attr-raw smpi-mpich3-coll-thread smpi-mpich3-coll-ompi-thread smpi-mpich3-coll-mpich-thread smpi-mpich3-comm-raw smpi-mpich3-init-raw smpi-mpich3-datatype-raw smpi-mpich3-pt2pt-raw smpi-mpich3-group-raw PROPERTIES PASS_REGULAR_EXPRESSION "tests passed!") endif() endif() diff --git a/buildtools/Cmake/DefinePackages.cmake b/buildtools/Cmake/DefinePackages.cmake index a6b4b421d2..dab01cd7bf 100644 --- a/buildtools/Cmake/DefinePackages.cmake +++ b/buildtools/Cmake/DefinePackages.cmake @@ -204,6 +204,7 @@ set(SMPI_SRC src/smpi/colls/gather-ompi.c src/smpi/colls/reduce_scatter-ompi.c src/smpi/colls/reduce_scatter-mpich.c + src/smpi/colls/smpi_automatic_selector.c src/smpi/colls/scatter-ompi.c src/smpi/colls/barrier-ompi.c ) @@ -894,6 +895,7 @@ set(EXAMPLES_CMAKEFILES_TXT examples/simdag/dax/CMakeLists.txt examples/simdag/dot/CMakeLists.txt examples/simdag/goal/CMakeLists.txt + examples/simdag/io/CMakeLists.txt examples/simdag/metaxml/CMakeLists.txt examples/simdag/properties/CMakeLists.txt examples/simdag/scheduling/CMakeLists.txt @@ -934,6 +936,10 @@ if(SMPI_F2C) teshsuite/smpi/mpich3-test/f77/datatype/CMakeLists.txt teshsuite/smpi/mpich3-test/f77/ext/CMakeLists.txt teshsuite/smpi/mpich3-test/f77/init/CMakeLists.txt + teshsuite/smpi/mpich3-test/f90/coll/CMakeLists.txt + teshsuite/smpi/mpich3-test/f90/pt2pt/CMakeLists.txt + teshsuite/smpi/mpich3-test/f90/datatype/CMakeLists.txt + teshsuite/smpi/mpich3-test/f90/init/CMakeLists.txt ) endif() diff --git a/buildtools/Cmake/MakeExe.cmake b/buildtools/Cmake/MakeExe.cmake index fac59a6a1c..2ae21da4ac 100644 --- a/buildtools/Cmake/MakeExe.cmake +++ b/buildtools/Cmake/MakeExe.cmake @@ -68,6 +68,7 @@ add_subdirectory(${CMAKE_HOME_DIRECTORY}/examples/simdag) add_subdirectory(${CMAKE_HOME_DIRECTORY}/examples/simdag/dax) add_subdirectory(${CMAKE_HOME_DIRECTORY}/examples/simdag/dot) add_subdirectory(${CMAKE_HOME_DIRECTORY}/examples/simdag/goal) +add_subdirectory(${CMAKE_HOME_DIRECTORY}/examples/simdag/io) add_subdirectory(${CMAKE_HOME_DIRECTORY}/examples/simdag/metaxml) add_subdirectory(${CMAKE_HOME_DIRECTORY}/examples/simdag/properties) add_subdirectory(${CMAKE_HOME_DIRECTORY}/examples/simdag/scheduling) @@ -93,12 +94,18 @@ add_subdirectory(${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/mpich3-test/datatype) add_subdirectory(${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/mpich3-test/group) add_subdirectory(${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/mpich3-test/init) add_subdirectory(${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/mpich3-test/pt2pt) +if(SMPI_F2C) add_subdirectory(${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/mpich3-test/f77/comm) add_subdirectory(${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/mpich3-test/f77/coll) add_subdirectory(${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/mpich3-test/f77/pt2pt) add_subdirectory(${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/mpich3-test/f77/ext) add_subdirectory(${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/mpich3-test/f77/datatype) add_subdirectory(${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/mpich3-test/f77/init) +add_subdirectory(${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/mpich3-test/f90/coll) +add_subdirectory(${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/mpich3-test/f90/pt2pt) +add_subdirectory(${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/mpich3-test/f90/datatype) +add_subdirectory(${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/mpich3-test/f90/init) +endif() add_subdirectory(${CMAKE_HOME_DIRECTORY}/teshsuite/xbt) add_subdirectory(${CMAKE_HOME_DIRECTORY}/testsuite/surf) add_subdirectory(${CMAKE_HOME_DIRECTORY}/testsuite/xbt) diff --git a/examples/msg/chord/chord.c b/examples/msg/chord/chord.c index ca921a785b..e2aa9d0310 100644 --- a/examples/msg/chord/chord.c +++ b/examples/msg/chord/chord.c @@ -10,6 +10,7 @@ #include "xbt/log.h" #include "xbt/asserts.h" #include "simgrid/modelchecker.h" +#include /** @addtogroup MSG_examples * @@ -21,7 +22,7 @@ */ - XBT_LOG_NEW_DEFAULT_CATEGORY(msg_chord, +XBT_LOG_NEW_DEFAULT_CATEGORY(msg_chord, "Messages specific for this msg example"); #define COMM_SIZE 10 @@ -59,6 +60,7 @@ typedef struct s_node { int next_finger_to_fix; // index of the next finger to fix in fix_fingers() msg_comm_t comm_receive; // current communication to receive double last_change_date; // last time I changed a finger or my predecessor + RngStream stream; //RngStream for } s_node_t, *node_t; /** @@ -71,7 +73,9 @@ typedef enum { TASK_GET_PREDECESSOR_ANSWER, TASK_NOTIFY, TASK_SUCCESSOR_LEAVING, - TASK_PREDECESSOR_LEAVING + TASK_PREDECESSOR_LEAVING, + TASK_PREDECESSOR_ALIVE, + TASK_PREDECESSOR_ALIVE_ANSWER } e_task_type_t; /* @@ -289,6 +293,12 @@ int node(int argc, char *argv[]) double next_check_predecessor_date = init_time + periodic_check_predecessor_delay; double next_lookup_date = init_time + periodic_lookup_delay; + #ifdef HAVE_MC + int listen = 0; + int no_op = 0; + int sub_protocol = 0; + #endif + xbt_assert(argc == 3 || argc == 5, "Wrong number of arguments for this node"); // initialize my node @@ -335,67 +345,68 @@ int node(int argc, char *argv[]) // FIXME: do not make MSG_task_irecv() calls from several functions } + //XBT_INFO("Node %d is ring member : %d", node.id, is_ring_member(known_id, node.id) != -1); + if (!MSG_comm_test(node.comm_receive)) { // no task was received: make some periodic calls - #ifdef HAVE_MC - if(MC_is_active()){ - if(MC_random()){ +#ifdef HAVE_MC + if(MC_is_active()){ + if(!MC_visited_reduction() && no_op){ + MC_cut(); + } + if(listen == 0 && (sub_protocol = MC_random(0, 4)) > 0){ + if(sub_protocol == 1) stabilize(&node); - }else if(MC_random()){ + else if(sub_protocol == 2) fix_fingers(&node); - }else if(MC_random()){ + else if(sub_protocol == 3) check_predecessor(&node); - }else if(MC_random()){ + else random_lookup(&node); - }else{ - MSG_process_sleep(5); - } + listen = 1; }else{ - if (MSG_get_clock() >= next_stabilize_date) { - stabilize(&node); - next_stabilize_date = MSG_get_clock() + periodic_stabilize_delay; - } - else if (MSG_get_clock() >= next_fix_fingers_date) { - fix_fingers(&node); - next_fix_fingers_date = MSG_get_clock() + periodic_fix_fingers_delay; - } - else if (MSG_get_clock() >= next_check_predecessor_date) { - check_predecessor(&node); - next_check_predecessor_date = MSG_get_clock() + periodic_check_predecessor_delay; - } - else if (MSG_get_clock() >= next_lookup_date) { - random_lookup(&node); - next_lookup_date = MSG_get_clock() + periodic_lookup_delay; - } - else { - // nothing to do: sleep for a while - MSG_process_sleep(5); - } + MSG_process_sleep(5); + if(!MC_visited_reduction()) + no_op = 1; } - #else + }else{ if (MSG_get_clock() >= next_stabilize_date) { stabilize(&node); next_stabilize_date = MSG_get_clock() + periodic_stabilize_delay; - } - else if (MSG_get_clock() >= next_fix_fingers_date) { + }else if (MSG_get_clock() >= next_fix_fingers_date) { fix_fingers(&node); next_fix_fingers_date = MSG_get_clock() + periodic_fix_fingers_delay; - } - else if (MSG_get_clock() >= next_check_predecessor_date) { + }else if (MSG_get_clock() >= next_check_predecessor_date) { check_predecessor(&node); next_check_predecessor_date = MSG_get_clock() + periodic_check_predecessor_delay; - } - else if (MSG_get_clock() >= next_lookup_date) { + }else if (MSG_get_clock() >= next_lookup_date) { random_lookup(&node); next_lookup_date = MSG_get_clock() + periodic_lookup_delay; - } - else { + }else { // nothing to do: sleep for a while MSG_process_sleep(5); } - #endif + } +#else + if (MSG_get_clock() >= next_stabilize_date) { + stabilize(&node); + next_stabilize_date = MSG_get_clock() + periodic_stabilize_delay; + }else if (MSG_get_clock() >= next_fix_fingers_date) { + fix_fingers(&node); + next_fix_fingers_date = MSG_get_clock() + periodic_fix_fingers_delay; + }else if (MSG_get_clock() >= next_check_predecessor_date) { + check_predecessor(&node); + next_check_predecessor_date = MSG_get_clock() + periodic_check_predecessor_delay; + }else if (MSG_get_clock() >= next_lookup_date) { + random_lookup(&node); + next_lookup_date = MSG_get_clock() + periodic_lookup_delay; + }else { + // nothing to do: sleep for a while + MSG_process_sleep(5); + } +#endif } else { // a transfer has occurred @@ -445,74 +456,85 @@ static void handle_task(node_t node, msg_task_t task) { switch (type) { - case TASK_FIND_SUCCESSOR: - XBT_DEBUG("Receiving a 'Find Successor' request from %s for id %d", - task_data->issuer_host_name, task_data->request_id); - // is my successor the successor? - if (is_in_interval(task_data->request_id, node->id + 1, node->fingers[0].id)) { - task_data->type = TASK_FIND_SUCCESSOR_ANSWER; - task_data->answer_id = node->fingers[0].id; - XBT_DEBUG("Sending back a 'Find Successor Answer' to %s (mailbox %s): the successor of %d is %d", - task_data->issuer_host_name, - task_data->answer_to, - task_data->request_id, task_data->answer_id); - MSG_task_dsend(task, task_data->answer_to, task_free); - } - else { - // otherwise, forward the request to the closest preceding finger in my table - int closest = closest_preceding_node(node, task_data->request_id); - XBT_DEBUG("Forwarding the 'Find Successor' request for id %d to my closest preceding finger %d", - task_data->request_id, closest); - get_mailbox(closest, mailbox); - MSG_task_dsend(task, mailbox, task_free); - } - break; - - case TASK_GET_PREDECESSOR: - XBT_DEBUG("Receiving a 'Get Predecessor' request from %s", task_data->issuer_host_name); - task_data->type = TASK_GET_PREDECESSOR_ANSWER; - task_data->answer_id = node->pred_id; - XBT_DEBUG("Sending back a 'Get Predecessor Answer' to %s via mailbox '%s': my predecessor is %d", - task_data->issuer_host_name, - task_data->answer_to, task_data->answer_id); + case TASK_FIND_SUCCESSOR: + XBT_DEBUG("Receiving a 'Find Successor' request from %s for id %d", + task_data->issuer_host_name, task_data->request_id); + // is my successor the successor? + if (is_in_interval(task_data->request_id, node->id + 1, node->fingers[0].id)) { + task_data->type = TASK_FIND_SUCCESSOR_ANSWER; + task_data->answer_id = node->fingers[0].id; + XBT_DEBUG("Sending back a 'Find Successor Answer' to %s (mailbox %s): the successor of %d is %d", + task_data->issuer_host_name, + task_data->answer_to, + task_data->request_id, task_data->answer_id); MSG_task_dsend(task, task_data->answer_to, task_free); - break; - - case TASK_NOTIFY: - // someone is telling me that he may be my new predecessor - XBT_DEBUG("Receiving a 'Notify' request from %s", task_data->issuer_host_name); - notify(node, task_data->request_id); - task_free(task); - break; - - case TASK_PREDECESSOR_LEAVING: - // my predecessor is about to quit - XBT_DEBUG("Receiving a 'Predecessor Leaving' message from %s", task_data->issuer_host_name); - // modify my predecessor - set_predecessor(node, task_data->request_id); - task_free(task); - /*TODO : + } + else { + // otherwise, forward the request to the closest preceding finger in my table + int closest = closest_preceding_node(node, task_data->request_id); + XBT_DEBUG("Forwarding the 'Find Successor' request for id %d to my closest preceding finger %d", + task_data->request_id, closest); + get_mailbox(closest, mailbox); + MSG_task_dsend(task, mailbox, task_free); + } + break; + + case TASK_GET_PREDECESSOR: + XBT_DEBUG("Receiving a 'Get Predecessor' request from %s", task_data->issuer_host_name); + task_data->type = TASK_GET_PREDECESSOR_ANSWER; + task_data->answer_id = node->pred_id; + XBT_DEBUG("Sending back a 'Get Predecessor Answer' to %s via mailbox '%s': my predecessor is %d", + task_data->issuer_host_name, + task_data->answer_to, task_data->answer_id); + MSG_task_dsend(task, task_data->answer_to, task_free); + break; + + case TASK_NOTIFY: + // someone is telling me that he may be my new predecessor + XBT_DEBUG("Receiving a 'Notify' request from %s", task_data->issuer_host_name); + notify(node, task_data->request_id); + task_free(task); + break; + + case TASK_PREDECESSOR_LEAVING: + // my predecessor is about to quit + XBT_DEBUG("Receiving a 'Predecessor Leaving' message from %s", task_data->issuer_host_name); + // modify my predecessor + set_predecessor(node, task_data->request_id); + task_free(task); + /*TODO : >> notify my new predecessor >> send a notify_predecessors !! - */ - break; - - case TASK_SUCCESSOR_LEAVING: - // my successor is about to quit - XBT_DEBUG("Receiving a 'Successor Leaving' message from %s", task_data->issuer_host_name); - // modify my successor FIXME : this should be implicit ? - set_finger(node, 0, task_data->request_id); - task_free(task); - /* TODO - >> notify my new successor - >> update my table & predecessors table */ - break; - - case TASK_FIND_SUCCESSOR_ANSWER: - case TASK_GET_PREDECESSOR_ANSWER: - XBT_DEBUG("Ignoring unexpected task of type %d (%p)", (int)type, task); - task_free(task); - break; + */ + break; + + case TASK_SUCCESSOR_LEAVING: + // my successor is about to quit + XBT_DEBUG("Receiving a 'Successor Leaving' message from %s", task_data->issuer_host_name); + // modify my successor FIXME : this should be implicit ? + set_finger(node, 0, task_data->request_id); + task_free(task); + /* TODO + >> notify my new successor + >> update my table & predecessors table */ + break; + + case TASK_FIND_SUCCESSOR_ANSWER: + case TASK_GET_PREDECESSOR_ANSWER: + case TASK_PREDECESSOR_ALIVE_ANSWER: + XBT_DEBUG("Ignoring unexpected task of type %d (%p)", (int)type, task); + task_free(task); + break; + + case TASK_PREDECESSOR_ALIVE: + XBT_DEBUG("Receiving a 'Predecessor Alive' request from %s", task_data->issuer_host_name); + task_data->type = TASK_PREDECESSOR_ALIVE_ANSWER; + XBT_DEBUG("Sending back a 'Predecessor Alive Answer' to %s (mailbox %s)", + task_data->issuer_host_name, + task_data->answer_to); + MSG_task_dsend(task, task_data->answer_to, task_free); + break; + } } @@ -566,9 +588,10 @@ static void leave(node_t node) { XBT_DEBUG("Well Guys! I Think it's time for me to quit ;)"); quit_notify(node); + RngStream_DeleteStream(&node->stream); } -/* +/** * \brief Notifies the successor and the predecessor of the current node * of the departure * \param node the current node @@ -765,9 +788,9 @@ static int remote_get_predecessor(node_t node, int ask_to) msg_task_t task_received = MSG_comm_get_task(node->comm_receive); task_data_t ans_data = MSG_task_get_data(task_received); - if (MC_is_active()) { + /*if (MC_is_active()) { MC_assert(task_received == task_sent); - } + }*/ if (task_received != task_sent) { MSG_comm_destroy(node->comm_receive); @@ -904,7 +927,65 @@ static void fix_fingers(node_t node) { static void check_predecessor(node_t node) { XBT_DEBUG("Checking whether my predecessor is alive"); - // TODO + + if(node->pred_id == -1) + return; + + int stop = 0; + + char mailbox[MAILBOX_NAME_SIZE]; + get_mailbox(node->pred_id, mailbox); + task_data_t req_data = xbt_new0(s_task_data_t,1); + req_data->type = TASK_PREDECESSOR_ALIVE; + req_data->request_id = node->pred_id; + get_mailbox(node->id, req_data->answer_to); + req_data->issuer_host_name = MSG_host_get_name(MSG_host_self()); + + msg_task_t task_sent = MSG_task_create(NULL, COMP_SIZE, COMM_SIZE, req_data); + XBT_DEBUG("Sending a 'Predecessor Alive' request to my predecessor %d", node->pred_id); + + msg_error_t res = MSG_task_send_with_timeout(task_sent, mailbox, timeout); + + if (res != MSG_OK) { + XBT_DEBUG("Failed to send the 'Predecessor Alive' request (task %p) to %d", task_sent, node->pred_id); + task_free(task_sent); + }else{ + + // receive the answer + XBT_DEBUG("Sent 'Predecessor Alive' request (task %p) to %d, waiting for the answer on my mailbox '%s'", + task_sent, node->pred_id, req_data->answer_to); + + do { + if (node->comm_receive == NULL) { // FIXME simplify this + msg_task_t task_received = NULL; + node->comm_receive = MSG_task_irecv(&task_received, node->mailbox); + } + + res = MSG_comm_wait(node->comm_receive, timeout); + + if (res != MSG_OK) { + XBT_DEBUG("Failed to receive the answer to my 'Predecessor Alive' request (task %p): %d", + task_sent, (int)res); + stop = 1; + MSG_comm_destroy(node->comm_receive); + node->comm_receive = NULL; + node->pred_id = -1; + }else { + msg_task_t task_received = MSG_comm_get_task(node->comm_receive); + if (task_received != task_sent) { + MSG_comm_destroy(node->comm_receive); + node->comm_receive = NULL; + handle_task(node, task_received); + }else{ + XBT_DEBUG("Received the answer to my 'Predecessor Alive' request (task %p) : my predecessor %d is alive", task_received, node->pred_id); + stop = 1; + MSG_comm_destroy(node->comm_receive); + node->comm_receive = NULL; + task_free(task_received); + } + } + } while (!stop); + } } /** @@ -913,9 +994,19 @@ static void check_predecessor(node_t node) */ static void random_lookup(node_t node) { - int id = 1337; // TODO pick a pseudorandom id - XBT_DEBUG("Making a lookup request for id %d", id); + + int id = 1337; find_successor(node, id); + + /*** Random lookup disabled for tesh examples ***/ + /*if(node->stream == NULL) + node->stream = RngStream_CreateStream(""); + int random_index = RngStream_RandInt (node->stream, 0, nb_bits - 1); + int random_id = node->fingers[random_index].id; + XBT_DEBUG("Making a lookup request for id %d", random_id); + int res = find_successor(node, random_id); + XBT_DEBUG("The successor of node %d is %d", random_id, res);*/ + } /** diff --git a/examples/msg/chord/chord.tesh b/examples/msg/chord/chord.tesh index d266b29241..e2c44d903b 100644 --- a/examples/msg/chord/chord.tesh +++ b/examples/msg/chord/chord.tesh @@ -129,314 +129,296 @@ $ $SG_TEST_EXENV ${bindir:=.}/chord$EXEEXT -nb_bits=6 ${srcdir:=.}/../msg_platfo > [141.383330] (1:node@Gatien) 0 | 48 > [141.383330] (1:node@Gatien) 16 | 48 > [141.383330] (1:node@Gatien) Predecessor: 42 -> [187.430809] (2:node@McGee) My finger table: -> [187.430809] (2:node@McGee) Start | Succ -> [187.430809] (2:node@McGee) 43 | 48 -> [187.430809] (2:node@McGee) 44 | 42 -> [187.430809] (2:node@McGee) 46 | 42 -> [187.430809] (2:node@McGee) 50 | 42 -> [187.430809] (2:node@McGee) 58 | 42 -> [187.430809] (2:node@McGee) 10 | 42 -> [187.430809] (2:node@McGee) Predecessor: 8 -> [224.180932] (2:node@McGee) My finger table: -> [224.180932] (2:node@McGee) Start | Succ -> [224.180932] (2:node@McGee) 43 | 48 -> [224.180932] (2:node@McGee) 44 | 42 -> [224.180932] (2:node@McGee) 46 | 42 -> [224.180932] (2:node@McGee) 50 | 42 -> [224.180932] (2:node@McGee) 58 | 42 -> [224.180932] (2:node@McGee) 10 | 42 -> [224.180932] (2:node@McGee) Predecessor: 38 -> [238.097182] (7:node@Boivin) My finger table: -> [238.097182] (7:node@Boivin) Start | Succ -> [238.097182] (7:node@Boivin) 9 | 38 -> [238.097182] (7:node@Boivin) 10 | 8 -> [238.097182] (7:node@Boivin) 12 | 8 -> [238.097182] (7:node@Boivin) 16 | 8 -> [238.097182] (7:node@Boivin) 24 | 8 -> [238.097182] (7:node@Boivin) 40 | 8 -> [238.097182] (7:node@Boivin) Predecessor: 1 -> [244.544616] (1:node@Gatien) My finger table: -> [244.544616] (1:node@Gatien) Start | Succ -> [244.544616] (1:node@Gatien) 49 | 1 -> [244.544616] (1:node@Gatien) 50 | 1 -> [244.544616] (1:node@Gatien) 52 | 48 -> [244.544616] (1:node@Gatien) 56 | 48 -> [244.544616] (1:node@Gatien) 0 | 48 -> [244.544616] (1:node@Gatien) 16 | 48 -> [244.544616] (1:node@Gatien) Predecessor: 42 -> [251.309962] (7:node@Boivin) My finger table: -> [251.309962] (7:node@Boivin) Start | Succ -> [251.309962] (7:node@Boivin) 9 | 38 -> [251.309962] (7:node@Boivin) 10 | 38 -> [251.309962] (7:node@Boivin) 12 | 8 -> [251.309962] (7:node@Boivin) 16 | 8 -> [251.309962] (7:node@Boivin) 24 | 8 -> [251.309962] (7:node@Boivin) 40 | 8 -> [251.309962] (7:node@Boivin) Predecessor: 1 -> [252.819541] (2:node@McGee) My finger table: -> [252.819541] (2:node@McGee) Start | Succ -> [252.819541] (2:node@McGee) 43 | 48 -> [252.819541] (2:node@McGee) 44 | 48 -> [252.819541] (2:node@McGee) 46 | 42 -> [252.819541] (2:node@McGee) 50 | 42 -> [252.819541] (2:node@McGee) 58 | 42 -> [252.819541] (2:node@McGee) 10 | 42 -> [252.819541] (2:node@McGee) Predecessor: 38 -> [268.906930] (6:node@Jean_Yves) My finger table: -> [268.906930] (6:node@Jean_Yves) Start | Succ -> [268.906930] (6:node@Jean_Yves) 15 | 38 -> [268.906930] (6:node@Jean_Yves) 16 | 38 -> [268.906930] (6:node@Jean_Yves) 18 | 14 -> [268.906930] (6:node@Jean_Yves) 22 | 14 -> [268.906930] (6:node@Jean_Yves) 30 | 14 -> [268.906930] (6:node@Jean_Yves) 46 | 14 -> [268.906930] (6:node@Jean_Yves) Predecessor: -1 -> [272.587457] (3:node@iRMX) My finger table: -> [272.587457] (3:node@iRMX) Start | Succ -> [272.587457] (3:node@iRMX) 39 | 42 -> [272.587457] (3:node@iRMX) 40 | 38 -> [272.587457] (3:node@iRMX) 42 | 38 -> [272.587457] (3:node@iRMX) 46 | 38 -> [272.587457] (3:node@iRMX) 54 | 38 -> [272.587457] (3:node@iRMX) 6 | 38 -> [272.587457] (3:node@iRMX) Predecessor: 8 -> [275.995469] (8:node@Jacquelin) My finger table: -> [275.995469] (8:node@Jacquelin) Start | Succ -> [275.995469] (8:node@Jacquelin) 2 | 8 -> [275.995469] (8:node@Jacquelin) 3 | 8 -> [275.995469] (8:node@Jacquelin) 5 | 1 -> [275.995469] (8:node@Jacquelin) 9 | 1 -> [275.995469] (8:node@Jacquelin) 17 | 1 -> [275.995469] (8:node@Jacquelin) 33 | 1 -> [275.995469] (8:node@Jacquelin) Predecessor: 48 -> [278.895042] (3:node@iRMX) My finger table: -> [278.895042] (3:node@iRMX) Start | Succ -> [278.895042] (3:node@iRMX) 39 | 42 -> [278.895042] (3:node@iRMX) 40 | 38 -> [278.895042] (3:node@iRMX) 42 | 38 -> [278.895042] (3:node@iRMX) 46 | 38 -> [278.895042] (3:node@iRMX) 54 | 38 -> [278.895042] (3:node@iRMX) 6 | 38 -> [278.895042] (3:node@iRMX) Predecessor: 14 -> [285.028728] (3:node@iRMX) My finger table: -> [285.028728] (3:node@iRMX) Start | Succ -> [285.028728] (3:node@iRMX) 39 | 42 -> [285.028728] (3:node@iRMX) 40 | 42 -> [285.028728] (3:node@iRMX) 42 | 38 -> [285.028728] (3:node@iRMX) 46 | 38 -> [285.028728] (3:node@iRMX) 54 | 38 -> [285.028728] (3:node@iRMX) 6 | 38 -> [285.028728] (3:node@iRMX) Predecessor: 14 -> [299.124575] (4:node@Geoff) My finger table: -> [299.124575] (4:node@Geoff) Start | Succ -> [299.124575] (4:node@Geoff) 33 | 38 -> [299.124575] (4:node@Geoff) 34 | 38 -> [299.124575] (4:node@Geoff) 36 | 32 -> [299.124575] (4:node@Geoff) 40 | 32 -> [299.124575] (4:node@Geoff) 48 | 32 -> [299.124575] (4:node@Geoff) 0 | 32 -> [299.124575] (4:node@Geoff) Predecessor: -1 -> [302.471250] (5:node@TeX) My finger table: -> [302.471250] (5:node@TeX) Start | Succ -> [302.471250] (5:node@TeX) 22 | 38 -> [302.471250] (5:node@TeX) 23 | 38 -> [302.471250] (5:node@TeX) 25 | 21 -> [302.471250] (5:node@TeX) 29 | 21 -> [302.471250] (5:node@TeX) 37 | 21 -> [302.471250] (5:node@TeX) 53 | 21 -> [302.471250] (5:node@TeX) Predecessor: -1 -> [309.606629] (3:node@iRMX) My finger table: -> [309.606629] (3:node@iRMX) Start | Succ -> [309.606629] (3:node@iRMX) 39 | 42 -> [309.606629] (3:node@iRMX) 40 | 42 -> [309.606629] (3:node@iRMX) 42 | 38 -> [309.606629] (3:node@iRMX) 46 | 38 -> [309.606629] (3:node@iRMX) 54 | 38 -> [309.606629] (3:node@iRMX) 6 | 38 -> [309.606629] (3:node@iRMX) Predecessor: 32 -> [352.254124] (6:node@Jean_Yves) My finger table: -> [352.254124] (6:node@Jean_Yves) Start | Succ -> [352.254124] (6:node@Jean_Yves) 15 | 32 -> [352.254124] (6:node@Jean_Yves) 16 | 38 -> [352.254124] (6:node@Jean_Yves) 18 | 14 -> [352.254124] (6:node@Jean_Yves) 22 | 14 -> [352.254124] (6:node@Jean_Yves) 30 | 14 -> [352.254124] (6:node@Jean_Yves) 46 | 14 -> [352.254124] (6:node@Jean_Yves) Predecessor: 8 -> [367.424268] (4:node@Geoff) My finger table: -> [367.424268] (4:node@Geoff) Start | Succ -> [367.424268] (4:node@Geoff) 33 | 38 -> [367.424268] (4:node@Geoff) 34 | 38 -> [367.424268] (4:node@Geoff) 36 | 32 -> [367.424268] (4:node@Geoff) 40 | 32 -> [367.424268] (4:node@Geoff) 48 | 32 -> [367.424268] (4:node@Geoff) 0 | 32 -> [367.424268] (4:node@Geoff) Predecessor: 14 -> [368.585330] (1:node@Gatien) My finger table: -> [368.585330] (1:node@Gatien) Start | Succ -> [368.585330] (1:node@Gatien) 49 | 1 -> [368.585330] (1:node@Gatien) 50 | 1 -> [368.585330] (1:node@Gatien) 52 | 1 -> [368.585330] (1:node@Gatien) 56 | 48 -> [368.585330] (1:node@Gatien) 0 | 48 -> [368.585330] (1:node@Gatien) 16 | 48 -> [368.585330] (1:node@Gatien) Predecessor: 42 -> [374.895586] (2:node@McGee) My finger table: -> [374.895586] (2:node@McGee) Start | Succ -> [374.895586] (2:node@McGee) 43 | 48 -> [374.895586] (2:node@McGee) 44 | 48 -> [374.895586] (2:node@McGee) 46 | 48 -> [374.895586] (2:node@McGee) 50 | 42 -> [374.895586] (2:node@McGee) 58 | 42 -> [374.895586] (2:node@McGee) 10 | 42 -> [374.895586] (2:node@McGee) Predecessor: 38 -> [392.072163] (7:node@Boivin) My finger table: -> [392.072163] (7:node@Boivin) Start | Succ -> [392.072163] (7:node@Boivin) 9 | 14 -> [392.072163] (7:node@Boivin) 10 | 38 -> [392.072163] (7:node@Boivin) 12 | 14 -> [392.072163] (7:node@Boivin) 16 | 8 -> [392.072163] (7:node@Boivin) 24 | 8 -> [392.072163] (7:node@Boivin) 40 | 8 -> [392.072163] (7:node@Boivin) Predecessor: 1 -> [398.554276] (4:node@Geoff) My finger table: -> [398.554276] (4:node@Geoff) Start | Succ -> [398.554276] (4:node@Geoff) 33 | 38 -> [398.554276] (4:node@Geoff) 34 | 38 -> [398.554276] (4:node@Geoff) 36 | 32 -> [398.554276] (4:node@Geoff) 40 | 32 -> [398.554276] (4:node@Geoff) 48 | 32 -> [398.554276] (4:node@Geoff) 0 | 32 -> [398.554276] (4:node@Geoff) Predecessor: 21 -> [400.952003] (6:node@Jean_Yves) My finger table: -> [400.952003] (6:node@Jean_Yves) Start | Succ -> [400.952003] (6:node@Jean_Yves) 15 | 21 -> [400.952003] (6:node@Jean_Yves) 16 | 38 -> [400.952003] (6:node@Jean_Yves) 18 | 21 -> [400.952003] (6:node@Jean_Yves) 22 | 14 -> [400.952003] (6:node@Jean_Yves) 30 | 14 -> [400.952003] (6:node@Jean_Yves) 46 | 14 -> [400.952003] (6:node@Jean_Yves) Predecessor: 8 -> [405.305407] (8:node@Jacquelin) My finger table: -> [405.305407] (8:node@Jacquelin) Start | Succ -> [405.305407] (8:node@Jacquelin) 2 | 8 -> [405.305407] (8:node@Jacquelin) 3 | 8 -> [405.305407] (8:node@Jacquelin) 5 | 8 -> [405.305407] (8:node@Jacquelin) 9 | 1 -> [405.305407] (8:node@Jacquelin) 17 | 1 -> [405.305407] (8:node@Jacquelin) 33 | 1 -> [405.305407] (8:node@Jacquelin) Predecessor: 48 -> [410.451746] (3:node@iRMX) My finger table: -> [410.451746] (3:node@iRMX) Start | Succ -> [410.451746] (3:node@iRMX) 39 | 42 -> [410.451746] (3:node@iRMX) 40 | 42 -> [410.451746] (3:node@iRMX) 42 | 42 -> [410.451746] (3:node@iRMX) 46 | 38 -> [410.451746] (3:node@iRMX) 54 | 38 -> [410.451746] (3:node@iRMX) 6 | 38 -> [410.451746] (3:node@iRMX) Predecessor: 32 -> [420.675292] (4:node@Geoff) My finger table: -> [420.675292] (4:node@Geoff) Start | Succ -> [420.675292] (4:node@Geoff) 33 | 38 -> [420.675292] (4:node@Geoff) 34 | 38 -> [420.675292] (4:node@Geoff) 36 | 38 -> [420.675292] (4:node@Geoff) 40 | 32 -> [420.675292] (4:node@Geoff) 48 | 32 -> [420.675292] (4:node@Geoff) 0 | 32 -> [420.675292] (4:node@Geoff) Predecessor: 21 -> [423.624135] (5:node@TeX) My finger table: -> [423.624135] (5:node@TeX) Start | Succ -> [423.624135] (5:node@TeX) 22 | 32 -> [423.624135] (5:node@TeX) 23 | 38 -> [423.624135] (5:node@TeX) 25 | 32 -> [423.624135] (5:node@TeX) 29 | 21 -> [423.624135] (5:node@TeX) 37 | 21 -> [423.624135] (5:node@TeX) 53 | 21 -> [423.624135] (5:node@TeX) Predecessor: -1 -> [437.092117] (5:node@TeX) My finger table: -> [437.092117] (5:node@TeX) Start | Succ -> [437.092117] (5:node@TeX) 22 | 32 -> [437.092117] (5:node@TeX) 23 | 38 -> [437.092117] (5:node@TeX) 25 | 32 -> [437.092117] (5:node@TeX) 29 | 21 -> [437.092117] (5:node@TeX) 37 | 21 -> [437.092117] (5:node@TeX) 53 | 21 -> [437.092117] (5:node@TeX) Predecessor: 14 -> [492.679220] (1:node@Gatien) My finger table: -> [492.679220] (1:node@Gatien) Start | Succ -> [492.679220] (1:node@Gatien) 49 | 1 -> [492.679220] (1:node@Gatien) 50 | 1 -> [492.679220] (1:node@Gatien) 52 | 1 -> [492.679220] (1:node@Gatien) 56 | 1 -> [492.679220] (1:node@Gatien) 0 | 48 -> [492.679220] (1:node@Gatien) 16 | 48 -> [492.679220] (1:node@Gatien) Predecessor: 42 -> [518.542734] (7:node@Boivin) My finger table: -> [518.542734] (7:node@Boivin) Start | Succ -> [518.542734] (7:node@Boivin) 9 | 14 -> [518.542734] (7:node@Boivin) 10 | 38 -> [518.542734] (7:node@Boivin) 12 | 14 -> [518.542734] (7:node@Boivin) 16 | 21 -> [518.542734] (7:node@Boivin) 24 | 8 -> [518.542734] (7:node@Boivin) 40 | 8 -> [518.542734] (7:node@Boivin) Predecessor: 1 -> [535.761185] (2:node@McGee) My finger table: -> [535.761185] (2:node@McGee) Start | Succ -> [535.761185] (2:node@McGee) 43 | 48 -> [535.761185] (2:node@McGee) 44 | 48 -> [535.761185] (2:node@McGee) 46 | 48 -> [535.761185] (2:node@McGee) 50 | 1 -> [535.761185] (2:node@McGee) 58 | 42 -> [535.761185] (2:node@McGee) 10 | 42 -> [535.761185] (2:node@McGee) Predecessor: 38 -> [536.972553] (8:node@Jacquelin) My finger table: -> [536.972553] (8:node@Jacquelin) Start | Succ -> [536.972553] (8:node@Jacquelin) 2 | 8 -> [536.972553] (8:node@Jacquelin) 3 | 8 -> [536.972553] (8:node@Jacquelin) 5 | 8 -> [536.972553] (8:node@Jacquelin) 9 | 14 -> [536.972553] (8:node@Jacquelin) 17 | 1 -> [536.972553] (8:node@Jacquelin) 33 | 1 -> [536.972553] (8:node@Jacquelin) Predecessor: 48 -> [549.045384] (3:node@iRMX) My finger table: -> [549.045384] (3:node@iRMX) Start | Succ -> [549.045384] (3:node@iRMX) 39 | 42 -> [549.045384] (3:node@iRMX) 40 | 42 -> [549.045384] (3:node@iRMX) 42 | 42 -> [549.045384] (3:node@iRMX) 46 | 48 -> [549.045384] (3:node@iRMX) 54 | 38 -> [549.045384] (3:node@iRMX) 6 | 38 -> [549.045384] (3:node@iRMX) Predecessor: 32 -> [555.217155] (6:node@Jean_Yves) My finger table: -> [555.217155] (6:node@Jean_Yves) Start | Succ -> [555.217155] (6:node@Jean_Yves) 15 | 21 -> [555.217155] (6:node@Jean_Yves) 16 | 38 -> [555.217155] (6:node@Jean_Yves) 18 | 21 -> [555.217155] (6:node@Jean_Yves) 22 | 32 -> [555.217155] (6:node@Jean_Yves) 30 | 14 -> [555.217155] (6:node@Jean_Yves) 46 | 14 -> [555.217155] (6:node@Jean_Yves) Predecessor: 8 -> [560.036388] (5:node@TeX) My finger table: -> [560.036388] (5:node@TeX) Start | Succ -> [560.036388] (5:node@TeX) 22 | 32 -> [560.036388] (5:node@TeX) 23 | 38 -> [560.036388] (5:node@TeX) 25 | 32 -> [560.036388] (5:node@TeX) 29 | 32 -> [560.036388] (5:node@TeX) 37 | 21 -> [560.036388] (5:node@TeX) 53 | 21 -> [560.036388] (5:node@TeX) Predecessor: 14 -> [577.866928] (4:node@Geoff) My finger table: -> [577.866928] (4:node@Geoff) Start | Succ -> [577.866928] (4:node@Geoff) 33 | 38 -> [577.866928] (4:node@Geoff) 34 | 38 -> [577.866928] (4:node@Geoff) 36 | 38 -> [577.866928] (4:node@Geoff) 40 | 42 -> [577.866928] (4:node@Geoff) 48 | 32 -> [577.866928] (4:node@Geoff) 0 | 32 -> [577.866928] (4:node@Geoff) Predecessor: 21 -> [803.668927] (0:@) Messages created: 768 -> [803.668927] (0:@) Simulated time: 803.669 +> [193.730889] (2:node@McGee) My finger table: +> [193.730889] (2:node@McGee) Start | Succ +> [193.730889] (2:node@McGee) 43 | 48 +> [193.730889] (2:node@McGee) 44 | 42 +> [193.730889] (2:node@McGee) 46 | 42 +> [193.730889] (2:node@McGee) 50 | 42 +> [193.730889] (2:node@McGee) 58 | 42 +> [193.730889] (2:node@McGee) 10 | 42 +> [193.730889] (2:node@McGee) Predecessor: 8 +> [242.028885] (1:node@Gatien) My finger table: +> [242.028885] (1:node@Gatien) Start | Succ +> [242.028885] (1:node@Gatien) 49 | 1 +> [242.028885] (1:node@Gatien) 50 | 1 +> [242.028885] (1:node@Gatien) 52 | 48 +> [242.028885] (1:node@Gatien) 56 | 48 +> [242.028885] (1:node@Gatien) 0 | 48 +> [242.028885] (1:node@Gatien) 16 | 48 +> [242.028885] (1:node@Gatien) Predecessor: 42 +> [242.939649] (2:node@McGee) My finger table: +> [242.939649] (2:node@McGee) Start | Succ +> [242.939649] (2:node@McGee) 43 | 48 +> [242.939649] (2:node@McGee) 44 | 42 +> [242.939649] (2:node@McGee) 46 | 42 +> [242.939649] (2:node@McGee) 50 | 42 +> [242.939649] (2:node@McGee) 58 | 42 +> [242.939649] (2:node@McGee) 10 | 42 +> [242.939649] (2:node@McGee) Predecessor: 38 +> [246.478479] (2:node@McGee) My finger table: +> [246.478479] (2:node@McGee) Start | Succ +> [246.478479] (2:node@McGee) 43 | 48 +> [246.478479] (2:node@McGee) 44 | 48 +> [246.478479] (2:node@McGee) 46 | 42 +> [246.478479] (2:node@McGee) 50 | 42 +> [246.478479] (2:node@McGee) 58 | 42 +> [246.478479] (2:node@McGee) 10 | 42 +> [246.478479] (2:node@McGee) Predecessor: 38 +> [248.768494] (7:node@Boivin) My finger table: +> [248.768494] (7:node@Boivin) Start | Succ +> [248.768494] (7:node@Boivin) 9 | 38 +> [248.768494] (7:node@Boivin) 10 | 38 +> [248.768494] (7:node@Boivin) 12 | 8 +> [248.768494] (7:node@Boivin) 16 | 8 +> [248.768494] (7:node@Boivin) 24 | 8 +> [248.768494] (7:node@Boivin) 40 | 8 +> [248.768494] (7:node@Boivin) Predecessor: -1 +> [255.578776] (4:node@Geoff) My finger table: +> [255.578776] (4:node@Geoff) Start | Succ +> [255.578776] (4:node@Geoff) 33 | 42 +> [255.578776] (4:node@Geoff) 34 | 42 +> [255.578776] (4:node@Geoff) 36 | 32 +> [255.578776] (4:node@Geoff) 40 | 32 +> [255.578776] (4:node@Geoff) 48 | 32 +> [255.578776] (4:node@Geoff) 0 | 32 +> [255.578776] (4:node@Geoff) Predecessor: -1 +> [268.081369] (8:node@Jacquelin) My finger table: +> [268.081369] (8:node@Jacquelin) Start | Succ +> [268.081369] (8:node@Jacquelin) 2 | 8 +> [268.081369] (8:node@Jacquelin) 3 | 8 +> [268.081369] (8:node@Jacquelin) 5 | 1 +> [268.081369] (8:node@Jacquelin) 9 | 1 +> [268.081369] (8:node@Jacquelin) 17 | 1 +> [268.081369] (8:node@Jacquelin) 33 | 1 +> [268.081369] (8:node@Jacquelin) Predecessor: 48 +> [269.130254] (7:node@Boivin) My finger table: +> [269.130254] (7:node@Boivin) Start | Succ +> [269.130254] (7:node@Boivin) 9 | 38 +> [269.130254] (7:node@Boivin) 10 | 38 +> [269.130254] (7:node@Boivin) 12 | 8 +> [269.130254] (7:node@Boivin) 16 | 8 +> [269.130254] (7:node@Boivin) 24 | 8 +> [269.130254] (7:node@Boivin) 40 | 8 +> [269.130254] (7:node@Boivin) Predecessor: 1 +> [272.405875] (3:node@iRMX) My finger table: +> [272.405875] (3:node@iRMX) Start | Succ +> [272.405875] (3:node@iRMX) 39 | 42 +> [272.405875] (3:node@iRMX) 40 | 42 +> [272.405875] (3:node@iRMX) 42 | 38 +> [272.405875] (3:node@iRMX) 46 | 38 +> [272.405875] (3:node@iRMX) 54 | 38 +> [272.405875] (3:node@iRMX) 6 | 38 +> [272.405875] (3:node@iRMX) Predecessor: -1 +> [284.571172] (5:node@TeX) My finger table: +> [284.571172] (5:node@TeX) Start | Succ +> [284.571172] (5:node@TeX) 22 | 38 +> [284.571172] (5:node@TeX) 23 | 38 +> [284.571172] (5:node@TeX) 25 | 21 +> [284.571172] (5:node@TeX) 29 | 21 +> [284.571172] (5:node@TeX) 37 | 21 +> [284.571172] (5:node@TeX) 53 | 21 +> [284.571172] (5:node@TeX) Predecessor: -1 +> [289.289425] (3:node@iRMX) My finger table: +> [289.289425] (3:node@iRMX) Start | Succ +> [289.289425] (3:node@iRMX) 39 | 42 +> [289.289425] (3:node@iRMX) 40 | 42 +> [289.289425] (3:node@iRMX) 42 | 38 +> [289.289425] (3:node@iRMX) 46 | 38 +> [289.289425] (3:node@iRMX) 54 | 38 +> [289.289425] (3:node@iRMX) 6 | 38 +> [289.289425] (3:node@iRMX) Predecessor: 21 +> [305.097098] (6:node@Jean_Yves) My finger table: +> [305.097098] (6:node@Jean_Yves) Start | Succ +> [305.097098] (6:node@Jean_Yves) 15 | 21 +> [305.097098] (6:node@Jean_Yves) 16 | 21 +> [305.097098] (6:node@Jean_Yves) 18 | 14 +> [305.097098] (6:node@Jean_Yves) 22 | 14 +> [305.097098] (6:node@Jean_Yves) 30 | 14 +> [305.097098] (6:node@Jean_Yves) 46 | 14 +> [305.097098] (6:node@Jean_Yves) Predecessor: -1 +> [313.745063] (3:node@iRMX) My finger table: +> [313.745063] (3:node@iRMX) Start | Succ +> [313.745063] (3:node@iRMX) 39 | 42 +> [313.745063] (3:node@iRMX) 40 | 42 +> [313.745063] (3:node@iRMX) 42 | 38 +> [313.745063] (3:node@iRMX) 46 | 38 +> [313.745063] (3:node@iRMX) 54 | 38 +> [313.745063] (3:node@iRMX) 6 | 38 +> [313.745063] (3:node@iRMX) Predecessor: 32 +> [338.951991] (5:node@TeX) My finger table: +> [338.951991] (5:node@TeX) Start | Succ +> [338.951991] (5:node@TeX) 22 | 32 +> [338.951991] (5:node@TeX) 23 | 38 +> [338.951991] (5:node@TeX) 25 | 21 +> [338.951991] (5:node@TeX) 29 | 21 +> [338.951991] (5:node@TeX) 37 | 21 +> [338.951991] (5:node@TeX) 53 | 21 +> [338.951991] (5:node@TeX) Predecessor: 14 +> [359.463119] (4:node@Geoff) My finger table: +> [359.463119] (4:node@Geoff) Start | Succ +> [359.463119] (4:node@Geoff) 33 | 38 +> [359.463119] (4:node@Geoff) 34 | 42 +> [359.463119] (4:node@Geoff) 36 | 32 +> [359.463119] (4:node@Geoff) 40 | 32 +> [359.463119] (4:node@Geoff) 48 | 32 +> [359.463119] (4:node@Geoff) 0 | 32 +> [359.463119] (4:node@Geoff) Predecessor: 21 +> [365.649491] (1:node@Gatien) My finger table: +> [365.649491] (1:node@Gatien) Start | Succ +> [365.649491] (1:node@Gatien) 49 | 1 +> [365.649491] (1:node@Gatien) 50 | 1 +> [365.649491] (1:node@Gatien) 52 | 1 +> [365.649491] (1:node@Gatien) 56 | 48 +> [365.649491] (1:node@Gatien) 0 | 48 +> [365.649491] (1:node@Gatien) 16 | 48 +> [365.649491] (1:node@Gatien) Predecessor: 42 +> [367.870511] (2:node@McGee) My finger table: +> [367.870511] (2:node@McGee) Start | Succ +> [367.870511] (2:node@McGee) 43 | 48 +> [367.870511] (2:node@McGee) 44 | 48 +> [367.870511] (2:node@McGee) 46 | 48 +> [367.870511] (2:node@McGee) 50 | 42 +> [367.870511] (2:node@McGee) 58 | 42 +> [367.870511] (2:node@McGee) 10 | 42 +> [367.870511] (2:node@McGee) Predecessor: 38 +> [371.550204] (7:node@Boivin) My finger table: +> [371.550204] (7:node@Boivin) Start | Succ +> [371.550204] (7:node@Boivin) 9 | 21 +> [371.550204] (7:node@Boivin) 10 | 38 +> [371.550204] (7:node@Boivin) 12 | 21 +> [371.550204] (7:node@Boivin) 16 | 8 +> [371.550204] (7:node@Boivin) 24 | 8 +> [371.550204] (7:node@Boivin) 40 | 8 +> [371.550204] (7:node@Boivin) Predecessor: 1 +> [388.564124] (4:node@Geoff) My finger table: +> [388.564124] (4:node@Geoff) Start | Succ +> [388.564124] (4:node@Geoff) 33 | 38 +> [388.564124] (4:node@Geoff) 34 | 42 +> [388.564124] (4:node@Geoff) 36 | 38 +> [388.564124] (4:node@Geoff) 40 | 32 +> [388.564124] (4:node@Geoff) 48 | 32 +> [388.564124] (4:node@Geoff) 0 | 32 +> [388.564124] (4:node@Geoff) Predecessor: 21 +> [389.021710] (8:node@Jacquelin) My finger table: +> [389.021710] (8:node@Jacquelin) Start | Succ +> [389.021710] (8:node@Jacquelin) 2 | 8 +> [389.021710] (8:node@Jacquelin) 3 | 8 +> [389.021710] (8:node@Jacquelin) 5 | 8 +> [389.021710] (8:node@Jacquelin) 9 | 1 +> [389.021710] (8:node@Jacquelin) 17 | 1 +> [389.021710] (8:node@Jacquelin) 33 | 1 +> [389.021710] (8:node@Jacquelin) Predecessor: 48 +> [393.088734] (3:node@iRMX) My finger table: +> [393.088734] (3:node@iRMX) Start | Succ +> [393.088734] (3:node@iRMX) 39 | 42 +> [393.088734] (3:node@iRMX) 40 | 42 +> [393.088734] (3:node@iRMX) 42 | 42 +> [393.088734] (3:node@iRMX) 46 | 38 +> [393.088734] (3:node@iRMX) 54 | 38 +> [393.088734] (3:node@iRMX) 6 | 38 +> [393.088734] (3:node@iRMX) Predecessor: 32 +> [412.961674] (5:node@TeX) My finger table: +> [412.961674] (5:node@TeX) Start | Succ +> [412.961674] (5:node@TeX) 22 | 32 +> [412.961674] (5:node@TeX) 23 | 38 +> [412.961674] (5:node@TeX) 25 | 32 +> [412.961674] (5:node@TeX) 29 | 21 +> [412.961674] (5:node@TeX) 37 | 21 +> [412.961674] (5:node@TeX) 53 | 21 +> [412.961674] (5:node@TeX) Predecessor: 14 +> [434.596478] (6:node@Jean_Yves) My finger table: +> [434.596478] (6:node@Jean_Yves) Start | Succ +> [434.596478] (6:node@Jean_Yves) 15 | 21 +> [434.596478] (6:node@Jean_Yves) 16 | 21 +> [434.596478] (6:node@Jean_Yves) 18 | 14 +> [434.596478] (6:node@Jean_Yves) 22 | 14 +> [434.596478] (6:node@Jean_Yves) 30 | 14 +> [434.596478] (6:node@Jean_Yves) 46 | 14 +> [434.596478] (6:node@Jean_Yves) Predecessor: 8 +> [443.806924] (6:node@Jean_Yves) My finger table: +> [443.806924] (6:node@Jean_Yves) Start | Succ +> [443.806924] (6:node@Jean_Yves) 15 | 21 +> [443.806924] (6:node@Jean_Yves) 16 | 21 +> [443.806924] (6:node@Jean_Yves) 18 | 21 +> [443.806924] (6:node@Jean_Yves) 22 | 14 +> [443.806924] (6:node@Jean_Yves) 30 | 14 +> [443.806924] (6:node@Jean_Yves) 46 | 14 +> [443.806924] (6:node@Jean_Yves) Predecessor: 8 +> [488.763595] (1:node@Gatien) My finger table: +> [488.763595] (1:node@Gatien) Start | Succ +> [488.763595] (1:node@Gatien) 49 | 1 +> [488.763595] (1:node@Gatien) 50 | 1 +> [488.763595] (1:node@Gatien) 52 | 1 +> [488.763595] (1:node@Gatien) 56 | 1 +> [488.763595] (1:node@Gatien) 0 | 48 +> [488.763595] (1:node@Gatien) 16 | 48 +> [488.763595] (1:node@Gatien) Predecessor: 42 +> [502.910439] (2:node@McGee) My finger table: +> [502.910439] (2:node@McGee) Start | Succ +> [502.910439] (2:node@McGee) 43 | 48 +> [502.910439] (2:node@McGee) 44 | 48 +> [502.910439] (2:node@McGee) 46 | 48 +> [502.910439] (2:node@McGee) 50 | 1 +> [502.910439] (2:node@McGee) 58 | 42 +> [502.910439] (2:node@McGee) 10 | 42 +> [502.910439] (2:node@McGee) Predecessor: 38 +> [511.133077] (8:node@Jacquelin) My finger table: +> [511.133077] (8:node@Jacquelin) Start | Succ +> [511.133077] (8:node@Jacquelin) 2 | 8 +> [511.133077] (8:node@Jacquelin) 3 | 8 +> [511.133077] (8:node@Jacquelin) 5 | 8 +> [511.133077] (8:node@Jacquelin) 9 | 14 +> [511.133077] (8:node@Jacquelin) 17 | 1 +> [511.133077] (8:node@Jacquelin) 33 | 1 +> [511.133077] (8:node@Jacquelin) Predecessor: 48 +> [528.169747] (7:node@Boivin) My finger table: +> [528.169747] (7:node@Boivin) Start | Succ +> [528.169747] (7:node@Boivin) 9 | 14 +> [528.169747] (7:node@Boivin) 10 | 38 +> [528.169747] (7:node@Boivin) 12 | 21 +> [528.169747] (7:node@Boivin) 16 | 21 +> [528.169747] (7:node@Boivin) 24 | 8 +> [528.169747] (7:node@Boivin) 40 | 8 +> [528.169747] (7:node@Boivin) Predecessor: 1 +> [538.778175] (3:node@iRMX) My finger table: +> [538.778175] (3:node@iRMX) Start | Succ +> [538.778175] (3:node@iRMX) 39 | 42 +> [538.778175] (3:node@iRMX) 40 | 42 +> [538.778175] (3:node@iRMX) 42 | 42 +> [538.778175] (3:node@iRMX) 46 | 48 +> [538.778175] (3:node@iRMX) 54 | 38 +> [538.778175] (3:node@iRMX) 6 | 38 +> [538.778175] (3:node@iRMX) Predecessor: 32 +> [561.853791] (5:node@TeX) My finger table: +> [561.853791] (5:node@TeX) Start | Succ +> [561.853791] (5:node@TeX) 22 | 32 +> [561.853791] (5:node@TeX) 23 | 38 +> [561.853791] (5:node@TeX) 25 | 32 +> [561.853791] (5:node@TeX) 29 | 32 +> [561.853791] (5:node@TeX) 37 | 21 +> [561.853791] (5:node@TeX) 53 | 21 +> [561.853791] (5:node@TeX) Predecessor: 14 +> [564.892126] (4:node@Geoff) My finger table: +> [564.892126] (4:node@Geoff) Start | Succ +> [564.892126] (4:node@Geoff) 33 | 38 +> [564.892126] (4:node@Geoff) 34 | 42 +> [564.892126] (4:node@Geoff) 36 | 38 +> [564.892126] (4:node@Geoff) 40 | 42 +> [564.892126] (4:node@Geoff) 48 | 32 +> [564.892126] (4:node@Geoff) 0 | 32 +> [564.892126] (4:node@Geoff) Predecessor: 21 +> [580.440450] (6:node@Jean_Yves) My finger table: +> [580.440450] (6:node@Jean_Yves) Start | Succ +> [580.440450] (6:node@Jean_Yves) 15 | 21 +> [580.440450] (6:node@Jean_Yves) 16 | 21 +> [580.440450] (6:node@Jean_Yves) 18 | 21 +> [580.440450] (6:node@Jean_Yves) 22 | 32 +> [580.440450] (6:node@Jean_Yves) 30 | 14 +> [580.440450] (6:node@Jean_Yves) 46 | 14 +> [580.440450] (6:node@Jean_Yves) Predecessor: 8 +> [805.312574] (0:@) Messages created: 789 +> [805.312574] (0:@) Simulated time: 805.313 ! output sort $ $SG_TEST_EXENV ${bindir:=.}/chord$EXEEXT ${srcdir:=.}/../../platforms/cluster.xml ${srcdir:=.}/chord10.xml --cfg=network/crosstraffic:0 --log=msg_chord.thres:verbose "--log=root.fmt:[%11.6r]%e(%i:%P@%h)%e%m%n" --cfg=network/model:Constant @@ -1046,1976 +1028,1949 @@ $ $SG_TEST_EXENV ${bindir:=.}/chord$EXEEXT ${srcdir:=.}/../../platforms/cluster. > [ 110.000000] (9:node@c-8.me) 10713112 | 6518808 > [ 110.000000] (9:node@c-8.me) 14907416 | 6518808 > [ 110.000000] (9:node@c-8.me) Predecessor: 1319738 -> [ 145.000000] (1:node@c-0.me) My finger table: -> [ 145.000000] (1:node@c-0.me) Start | Succ -> [ 145.000000] (1:node@c-0.me) 43 | 1319738 -> [ 145.000000] (1:node@c-0.me) 44 | 42 -> [ 145.000000] (1:node@c-0.me) 46 | 42 -> [ 145.000000] (1:node@c-0.me) 50 | 42 -> [ 145.000000] (1:node@c-0.me) 58 | 42 -> [ 145.000000] (1:node@c-0.me) 74 | 42 -> [ 145.000000] (1:node@c-0.me) 106 | 42 -> [ 145.000000] (1:node@c-0.me) 170 | 42 -> [ 145.000000] (1:node@c-0.me) 298 | 42 -> [ 145.000000] (1:node@c-0.me) 554 | 42 -> [ 145.000000] (1:node@c-0.me) 1066 | 42 -> [ 145.000000] (1:node@c-0.me) 2090 | 42 -> [ 145.000000] (1:node@c-0.me) 4138 | 42 -> [ 145.000000] (1:node@c-0.me) 8234 | 42 -> [ 145.000000] (1:node@c-0.me) 16426 | 42 -> [ 145.000000] (1:node@c-0.me) 32810 | 42 -> [ 145.000000] (1:node@c-0.me) 65578 | 42 -> [ 145.000000] (1:node@c-0.me) 131114 | 42 -> [ 145.000000] (1:node@c-0.me) 262186 | 42 -> [ 145.000000] (1:node@c-0.me) 524330 | 42 -> [ 145.000000] (1:node@c-0.me) 1048618 | 42 -> [ 145.000000] (1:node@c-0.me) 2097194 | 42 -> [ 145.000000] (1:node@c-0.me) 4194346 | 42 -> [ 145.000000] (1:node@c-0.me) 8388650 | 42 -> [ 145.000000] (1:node@c-0.me) Predecessor: 16728096 -> [ 157.000000] (4:node@c-3.me) My finger table: -> [ 157.000000] (4:node@c-3.me) Start | Succ -> [ 157.000000] (4:node@c-3.me) 1319739 | 6518808 -> [ 157.000000] (4:node@c-3.me) 1319740 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1319742 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1319746 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1319754 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1319770 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1319802 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1319866 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1319994 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1320250 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1320762 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1321786 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1323834 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1327930 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1336122 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1352506 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1385274 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1450810 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1581882 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1844026 | 1319738 -> [ 157.000000] (4:node@c-3.me) 2368314 | 1319738 -> [ 157.000000] (4:node@c-3.me) 3416890 | 1319738 -> [ 157.000000] (4:node@c-3.me) 5514042 | 1319738 -> [ 157.000000] (4:node@c-3.me) 9708346 | 1319738 -> [ 157.000000] (4:node@c-3.me) Predecessor: 366680 -> [ 184.000000] (7:node@c-6.me) My finger table: -> [ 184.000000] (7:node@c-6.me) Start | Succ -> [ 184.000000] (7:node@c-6.me) 16728097 | 42 -> [ 184.000000] (7:node@c-6.me) 16728098 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16728100 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16728104 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16728112 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16728128 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16728160 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16728224 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16728352 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16728608 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16729120 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16730144 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16732192 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16736288 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16744480 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16760864 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16416 | 16728096 -> [ 184.000000] (7:node@c-6.me) 81952 | 16728096 -> [ 184.000000] (7:node@c-6.me) 213024 | 16728096 -> [ 184.000000] (7:node@c-6.me) 475168 | 16728096 -> [ 184.000000] (7:node@c-6.me) 999456 | 16728096 -> [ 184.000000] (7:node@c-6.me) 2048032 | 16728096 -> [ 184.000000] (7:node@c-6.me) 4145184 | 16728096 -> [ 184.000000] (7:node@c-6.me) 8339488 | 16728096 -> [ 184.000000] (7:node@c-6.me) Predecessor: 6518808 -> [ 202.000000] (2:node@c-1.me) My finger table: -> [ 202.000000] (2:node@c-1.me) Start | Succ -> [ 202.000000] (2:node@c-1.me) 366681 | 1319738 -> [ 202.000000] (2:node@c-1.me) 366682 | 366680 -> [ 202.000000] (2:node@c-1.me) 366684 | 366680 -> [ 202.000000] (2:node@c-1.me) 366688 | 366680 -> [ 202.000000] (2:node@c-1.me) 366696 | 366680 -> [ 202.000000] (2:node@c-1.me) 366712 | 366680 -> [ 202.000000] (2:node@c-1.me) 366744 | 366680 -> [ 202.000000] (2:node@c-1.me) 366808 | 366680 -> [ 202.000000] (2:node@c-1.me) 366936 | 366680 -> [ 202.000000] (2:node@c-1.me) 367192 | 366680 -> [ 202.000000] (2:node@c-1.me) 367704 | 366680 -> [ 202.000000] (2:node@c-1.me) 368728 | 366680 -> [ 202.000000] (2:node@c-1.me) 370776 | 366680 -> [ 202.000000] (2:node@c-1.me) 374872 | 366680 -> [ 202.000000] (2:node@c-1.me) 383064 | 366680 -> [ 202.000000] (2:node@c-1.me) 399448 | 366680 -> [ 202.000000] (2:node@c-1.me) 432216 | 366680 -> [ 202.000000] (2:node@c-1.me) 497752 | 366680 -> [ 202.000000] (2:node@c-1.me) 628824 | 366680 -> [ 202.000000] (2:node@c-1.me) 890968 | 366680 -> [ 202.000000] (2:node@c-1.me) 1415256 | 366680 -> [ 202.000000] (2:node@c-1.me) 2463832 | 366680 -> [ 202.000000] (2:node@c-1.me) 4560984 | 366680 -> [ 202.000000] (2:node@c-1.me) 8755288 | 366680 -> [ 202.000000] (2:node@c-1.me) Predecessor: 42 -> [ 221.000000] (9:node@c-8.me) My finger table: -> [ 221.000000] (9:node@c-8.me) Start | Succ -> [ 221.000000] (9:node@c-8.me) 6518809 | 16728096 -> [ 221.000000] (9:node@c-8.me) 6518810 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6518812 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6518816 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6518824 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6518840 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6518872 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6518936 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6519064 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6519320 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6519832 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6520856 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6522904 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6527000 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6535192 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6551576 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6584344 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6649880 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6780952 | 6518808 -> [ 221.000000] (9:node@c-8.me) 7043096 | 6518808 -> [ 221.000000] (9:node@c-8.me) 7567384 | 6518808 -> [ 221.000000] (9:node@c-8.me) 8615960 | 6518808 -> [ 221.000000] (9:node@c-8.me) 10713112 | 6518808 -> [ 221.000000] (9:node@c-8.me) 14907416 | 6518808 -> [ 221.000000] (9:node@c-8.me) Predecessor: 2015253 -> [ 240.000000] (6:node@c-5.me) My finger table: -> [ 240.000000] (6:node@c-5.me) Start | Succ -> [ 240.000000] (6:node@c-5.me) 10874877 | 533744 -> [ 240.000000] (6:node@c-5.me) 10874878 | 533744 -> [ 240.000000] (6:node@c-5.me) 10874880 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10874884 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10874892 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10874908 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10874940 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10875004 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10875132 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10875388 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10875900 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10876924 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10878972 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10883068 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10891260 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10907644 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10940412 | 10874876 -> [ 240.000000] (6:node@c-5.me) 11005948 | 10874876 -> [ 240.000000] (6:node@c-5.me) 11137020 | 10874876 -> [ 240.000000] (6:node@c-5.me) 11399164 | 10874876 -> [ 240.000000] (6:node@c-5.me) 11923452 | 10874876 -> [ 240.000000] (6:node@c-5.me) 12972028 | 10874876 -> [ 240.000000] (6:node@c-5.me) 15069180 | 10874876 -> [ 240.000000] (6:node@c-5.me) 2486268 | 10874876 -> [ 240.000000] (6:node@c-5.me) Predecessor: -1 -> [ 247.000000] (5:node@c-4.me) My finger table: -> [ 247.000000] (5:node@c-4.me) Start | Succ -> [ 247.000000] (5:node@c-4.me) 16509406 | 16728096 -> [ 247.000000] (5:node@c-4.me) 16509407 | 16728096 -> [ 247.000000] (5:node@c-4.me) 16509409 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16509413 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16509421 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16509437 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16509469 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16509533 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16509661 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16509917 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16510429 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16511453 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16513501 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16517597 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16525789 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16542173 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16574941 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16640477 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16771549 | 16509405 -> [ 247.000000] (5:node@c-4.me) 256477 | 16509405 -> [ 247.000000] (5:node@c-4.me) 780765 | 16509405 -> [ 247.000000] (5:node@c-4.me) 1829341 | 16509405 -> [ 247.000000] (5:node@c-4.me) 3926493 | 16509405 -> [ 247.000000] (5:node@c-4.me) 8120797 | 16509405 -> [ 247.000000] (5:node@c-4.me) Predecessor: 10004760 -> [ 250.000000] (1:node@c-0.me) My finger table: -> [ 250.000000] (1:node@c-0.me) Start | Succ -> [ 250.000000] (1:node@c-0.me) 43 | 366680 -> [ 250.000000] (1:node@c-0.me) 44 | 366680 -> [ 250.000000] (1:node@c-0.me) 46 | 42 -> [ 250.000000] (1:node@c-0.me) 50 | 42 -> [ 250.000000] (1:node@c-0.me) 58 | 42 -> [ 250.000000] (1:node@c-0.me) 74 | 42 -> [ 250.000000] (1:node@c-0.me) 106 | 42 -> [ 250.000000] (1:node@c-0.me) 170 | 42 -> [ 250.000000] (1:node@c-0.me) 298 | 42 -> [ 250.000000] (1:node@c-0.me) 554 | 42 -> [ 250.000000] (1:node@c-0.me) 1066 | 42 -> [ 250.000000] (1:node@c-0.me) 2090 | 42 -> [ 250.000000] (1:node@c-0.me) 4138 | 42 -> [ 250.000000] (1:node@c-0.me) 8234 | 42 -> [ 250.000000] (1:node@c-0.me) 16426 | 42 -> [ 250.000000] (1:node@c-0.me) 32810 | 42 -> [ 250.000000] (1:node@c-0.me) 65578 | 42 -> [ 250.000000] (1:node@c-0.me) 131114 | 42 -> [ 250.000000] (1:node@c-0.me) 262186 | 42 -> [ 250.000000] (1:node@c-0.me) 524330 | 42 -> [ 250.000000] (1:node@c-0.me) 1048618 | 42 -> [ 250.000000] (1:node@c-0.me) 2097194 | 42 -> [ 250.000000] (1:node@c-0.me) 4194346 | 42 -> [ 250.000000] (1:node@c-0.me) 8388650 | 42 -> [ 250.000000] (1:node@c-0.me) Predecessor: 16728096 -> [ 251.000000] (3:node@c-2.me) My finger table: -> [ 251.000000] (3:node@c-2.me) Start | Succ -> [ 251.000000] (3:node@c-2.me) 533745 | 10004760 -> [ 251.000000] (3:node@c-2.me) 533746 | 10004760 -> [ 251.000000] (3:node@c-2.me) 533748 | 533744 -> [ 251.000000] (3:node@c-2.me) 533752 | 533744 -> [ 251.000000] (3:node@c-2.me) 533760 | 533744 -> [ 251.000000] (3:node@c-2.me) 533776 | 533744 -> [ 251.000000] (3:node@c-2.me) 533808 | 533744 -> [ 251.000000] (3:node@c-2.me) 533872 | 533744 -> [ 251.000000] (3:node@c-2.me) 534000 | 533744 -> [ 251.000000] (3:node@c-2.me) 534256 | 533744 -> [ 251.000000] (3:node@c-2.me) 534768 | 533744 -> [ 251.000000] (3:node@c-2.me) 535792 | 533744 -> [ 251.000000] (3:node@c-2.me) 537840 | 533744 -> [ 251.000000] (3:node@c-2.me) 541936 | 533744 -> [ 251.000000] (3:node@c-2.me) 550128 | 533744 -> [ 251.000000] (3:node@c-2.me) 566512 | 533744 -> [ 251.000000] (3:node@c-2.me) 599280 | 533744 -> [ 251.000000] (3:node@c-2.me) 664816 | 533744 -> [ 251.000000] (3:node@c-2.me) 795888 | 533744 -> [ 251.000000] (3:node@c-2.me) 1058032 | 533744 -> [ 251.000000] (3:node@c-2.me) 1582320 | 533744 -> [ 251.000000] (3:node@c-2.me) 2630896 | 533744 -> [ 251.000000] (3:node@c-2.me) 4728048 | 533744 -> [ 251.000000] (3:node@c-2.me) 8922352 | 533744 -> [ 251.000000] (3:node@c-2.me) Predecessor: 10874876 -> [ 253.000000] (8:node@c-7.me) My finger table: -> [ 253.000000] (8:node@c-7.me) Start | Succ -> [ 253.000000] (8:node@c-7.me) 10004761 | 16509405 -> [ 253.000000] (8:node@c-7.me) 10004762 | 16509405 -> [ 253.000000] (8:node@c-7.me) 10004764 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10004768 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10004776 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10004792 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10004824 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10004888 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10005016 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10005272 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10005784 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10006808 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10008856 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10012952 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10021144 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10037528 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10070296 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10135832 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10266904 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10529048 | 10004760 -> [ 253.000000] (8:node@c-7.me) 11053336 | 10004760 -> [ 253.000000] (8:node@c-7.me) 12101912 | 10004760 -> [ 253.000000] (8:node@c-7.me) 14199064 | 10004760 -> [ 253.000000] (8:node@c-7.me) 1616152 | 10004760 -> [ 253.000000] (8:node@c-7.me) Predecessor: 533744 -> [ 263.000000] (2:node@c-1.me) My finger table: -> [ 263.000000] (2:node@c-1.me) Start | Succ -> [ 263.000000] (2:node@c-1.me) 366681 | 1319738 -> [ 263.000000] (2:node@c-1.me) 366682 | 1319738 -> [ 263.000000] (2:node@c-1.me) 366684 | 366680 -> [ 263.000000] (2:node@c-1.me) 366688 | 366680 -> [ 263.000000] (2:node@c-1.me) 366696 | 366680 -> [ 263.000000] (2:node@c-1.me) 366712 | 366680 -> [ 263.000000] (2:node@c-1.me) 366744 | 366680 -> [ 263.000000] (2:node@c-1.me) 366808 | 366680 -> [ 263.000000] (2:node@c-1.me) 366936 | 366680 -> [ 263.000000] (2:node@c-1.me) 367192 | 366680 -> [ 263.000000] (2:node@c-1.me) 367704 | 366680 -> [ 263.000000] (2:node@c-1.me) 368728 | 366680 -> [ 263.000000] (2:node@c-1.me) 370776 | 366680 -> [ 263.000000] (2:node@c-1.me) 374872 | 366680 -> [ 263.000000] (2:node@c-1.me) 383064 | 366680 -> [ 263.000000] (2:node@c-1.me) 399448 | 366680 -> [ 263.000000] (2:node@c-1.me) 432216 | 366680 -> [ 263.000000] (2:node@c-1.me) 497752 | 366680 -> [ 263.000000] (2:node@c-1.me) 628824 | 366680 -> [ 263.000000] (2:node@c-1.me) 890968 | 366680 -> [ 263.000000] (2:node@c-1.me) 1415256 | 366680 -> [ 263.000000] (2:node@c-1.me) 2463832 | 366680 -> [ 263.000000] (2:node@c-1.me) 4560984 | 366680 -> [ 263.000000] (2:node@c-1.me) 8755288 | 366680 -> [ 263.000000] (2:node@c-1.me) Predecessor: 42 -> [ 268.000000] (4:node@c-3.me) My finger table: -> [ 268.000000] (4:node@c-3.me) Start | Succ -> [ 268.000000] (4:node@c-3.me) 1319739 | 2015253 -> [ 268.000000] (4:node@c-3.me) 1319740 | 2015253 -> [ 268.000000] (4:node@c-3.me) 1319742 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1319746 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1319754 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1319770 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1319802 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1319866 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1319994 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1320250 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1320762 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1321786 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1323834 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1327930 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1336122 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1352506 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1385274 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1450810 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1581882 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1844026 | 1319738 -> [ 268.000000] (4:node@c-3.me) 2368314 | 1319738 -> [ 268.000000] (4:node@c-3.me) 3416890 | 1319738 -> [ 268.000000] (4:node@c-3.me) 5514042 | 1319738 -> [ 268.000000] (4:node@c-3.me) 9708346 | 1319738 -> [ 268.000000] (4:node@c-3.me) Predecessor: 366680 -> [ 269.000000] (10:node@c-9.me) My finger table: -> [ 269.000000] (10:node@c-9.me) Start | Succ -> [ 269.000000] (10:node@c-9.me) 2015254 | 6518808 -> [ 269.000000] (10:node@c-9.me) 2015255 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2015257 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2015261 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2015269 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2015285 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2015317 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2015381 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2015509 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2015765 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2016277 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2017301 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2019349 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2023445 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2031637 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2048021 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2080789 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2146325 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2277397 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2539541 | 2015253 -> [ 269.000000] (10:node@c-9.me) 3063829 | 2015253 -> [ 269.000000] (10:node@c-9.me) 4112405 | 2015253 -> [ 269.000000] (10:node@c-9.me) 6209557 | 2015253 -> [ 269.000000] (10:node@c-9.me) 10403861 | 2015253 -> [ 269.000000] (10:node@c-9.me) Predecessor: 1319738 -> [ 274.000000] (10:node@c-9.me) My finger table: -> [ 274.000000] (10:node@c-9.me) Start | Succ -> [ 274.000000] (10:node@c-9.me) 2015254 | 6518808 -> [ 274.000000] (10:node@c-9.me) 2015255 | 6518808 -> [ 274.000000] (10:node@c-9.me) 2015257 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2015261 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2015269 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2015285 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2015317 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2015381 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2015509 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2015765 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2016277 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2017301 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2019349 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2023445 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2031637 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2048021 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2080789 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2146325 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2277397 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2539541 | 2015253 -> [ 274.000000] (10:node@c-9.me) 3063829 | 2015253 -> [ 274.000000] (10:node@c-9.me) 4112405 | 2015253 -> [ 274.000000] (10:node@c-9.me) 6209557 | 2015253 -> [ 274.000000] (10:node@c-9.me) 10403861 | 2015253 -> [ 274.000000] (10:node@c-9.me) Predecessor: 1319738 -> [ 274.000000] (9:node@c-8.me) My finger table: -> [ 274.000000] (9:node@c-8.me) Start | Succ -> [ 274.000000] (9:node@c-8.me) 6518809 | 16728096 -> [ 274.000000] (9:node@c-8.me) 6518810 | 16728096 -> [ 274.000000] (9:node@c-8.me) 6518812 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6518816 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6518824 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6518840 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6518872 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6518936 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6519064 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6519320 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6519832 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6520856 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6522904 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6527000 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6535192 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6551576 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6584344 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6649880 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6780952 | 6518808 -> [ 274.000000] (9:node@c-8.me) 7043096 | 6518808 -> [ 274.000000] (9:node@c-8.me) 7567384 | 6518808 -> [ 274.000000] (9:node@c-8.me) 8615960 | 6518808 -> [ 274.000000] (9:node@c-8.me) 10713112 | 6518808 -> [ 274.000000] (9:node@c-8.me) 14907416 | 6518808 -> [ 274.000000] (9:node@c-8.me) Predecessor: 2015253 -> [ 275.000000] (7:node@c-6.me) My finger table: -> [ 275.000000] (7:node@c-6.me) Start | Succ -> [ 275.000000] (7:node@c-6.me) 16728097 | 42 -> [ 275.000000] (7:node@c-6.me) 16728098 | 42 -> [ 275.000000] (7:node@c-6.me) 16728100 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16728104 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16728112 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16728128 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16728160 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16728224 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16728352 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16728608 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16729120 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16730144 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16732192 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16736288 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16744480 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16760864 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16416 | 16728096 -> [ 275.000000] (7:node@c-6.me) 81952 | 16728096 -> [ 275.000000] (7:node@c-6.me) 213024 | 16728096 -> [ 275.000000] (7:node@c-6.me) 475168 | 16728096 -> [ 275.000000] (7:node@c-6.me) 999456 | 16728096 -> [ 275.000000] (7:node@c-6.me) 2048032 | 16728096 -> [ 275.000000] (7:node@c-6.me) 4145184 | 16728096 -> [ 275.000000] (7:node@c-6.me) 8339488 | 16728096 -> [ 275.000000] (7:node@c-6.me) Predecessor: 6518808 -> [ 288.000000] (7:node@c-6.me) My finger table: -> [ 288.000000] (7:node@c-6.me) Start | Succ -> [ 288.000000] (7:node@c-6.me) 16728097 | 42 -> [ 288.000000] (7:node@c-6.me) 16728098 | 42 -> [ 288.000000] (7:node@c-6.me) 16728100 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16728104 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16728112 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16728128 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16728160 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16728224 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16728352 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16728608 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16729120 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16730144 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16732192 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16736288 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16744480 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16760864 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16416 | 16728096 -> [ 288.000000] (7:node@c-6.me) 81952 | 16728096 -> [ 288.000000] (7:node@c-6.me) 213024 | 16728096 -> [ 288.000000] (7:node@c-6.me) 475168 | 16728096 -> [ 288.000000] (7:node@c-6.me) 999456 | 16728096 -> [ 288.000000] (7:node@c-6.me) 2048032 | 16728096 -> [ 288.000000] (7:node@c-6.me) 4145184 | 16728096 -> [ 288.000000] (7:node@c-6.me) 8339488 | 16728096 -> [ 288.000000] (7:node@c-6.me) Predecessor: 16509405 -> [ 361.000000] (8:node@c-7.me) My finger table: -> [ 361.000000] (8:node@c-7.me) Start | Succ -> [ 361.000000] (8:node@c-7.me) 10004761 | 16509405 -> [ 361.000000] (8:node@c-7.me) 10004762 | 16509405 -> [ 361.000000] (8:node@c-7.me) 10004764 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10004768 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10004776 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10004792 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10004824 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10004888 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10005016 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10005272 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10005784 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10006808 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10008856 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10012952 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10021144 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10037528 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10070296 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10135832 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10266904 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10529048 | 10004760 -> [ 361.000000] (8:node@c-7.me) 11053336 | 10004760 -> [ 361.000000] (8:node@c-7.me) 12101912 | 10004760 -> [ 361.000000] (8:node@c-7.me) 14199064 | 10004760 -> [ 361.000000] (8:node@c-7.me) 1616152 | 10004760 -> [ 361.000000] (8:node@c-7.me) Predecessor: 6518808 -> [ 364.000000] (6:node@c-5.me) My finger table: -> [ 364.000000] (6:node@c-5.me) Start | Succ -> [ 364.000000] (6:node@c-5.me) 10874877 | 533744 -> [ 364.000000] (6:node@c-5.me) 10874878 | 533744 -> [ 364.000000] (6:node@c-5.me) 10874880 | 533744 -> [ 364.000000] (6:node@c-5.me) 10874884 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10874892 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10874908 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10874940 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10875004 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10875132 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10875388 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10875900 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10876924 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10878972 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10883068 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10891260 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10907644 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10940412 | 10874876 -> [ 364.000000] (6:node@c-5.me) 11005948 | 10874876 -> [ 364.000000] (6:node@c-5.me) 11137020 | 10874876 -> [ 364.000000] (6:node@c-5.me) 11399164 | 10874876 -> [ 364.000000] (6:node@c-5.me) 11923452 | 10874876 -> [ 364.000000] (6:node@c-5.me) 12972028 | 10874876 -> [ 364.000000] (6:node@c-5.me) 15069180 | 10874876 -> [ 364.000000] (6:node@c-5.me) 2486268 | 10874876 -> [ 364.000000] (6:node@c-5.me) Predecessor: -1 -> [ 371.000000] (3:node@c-2.me) My finger table: -> [ 371.000000] (3:node@c-2.me) Start | Succ -> [ 371.000000] (3:node@c-2.me) 533745 | 10004760 -> [ 371.000000] (3:node@c-2.me) 533746 | 10004760 -> [ 371.000000] (3:node@c-2.me) 533748 | 10004760 -> [ 371.000000] (3:node@c-2.me) 533752 | 533744 -> [ 371.000000] (3:node@c-2.me) 533760 | 533744 -> [ 371.000000] (3:node@c-2.me) 533776 | 533744 -> [ 371.000000] (3:node@c-2.me) 533808 | 533744 -> [ 371.000000] (3:node@c-2.me) 533872 | 533744 -> [ 371.000000] (3:node@c-2.me) 534000 | 533744 -> [ 371.000000] (3:node@c-2.me) 534256 | 533744 -> [ 371.000000] (3:node@c-2.me) 534768 | 533744 -> [ 371.000000] (3:node@c-2.me) 535792 | 533744 -> [ 371.000000] (3:node@c-2.me) 537840 | 533744 -> [ 371.000000] (3:node@c-2.me) 541936 | 533744 -> [ 371.000000] (3:node@c-2.me) 550128 | 533744 -> [ 371.000000] (3:node@c-2.me) 566512 | 533744 -> [ 371.000000] (3:node@c-2.me) 599280 | 533744 -> [ 371.000000] (3:node@c-2.me) 664816 | 533744 -> [ 371.000000] (3:node@c-2.me) 795888 | 533744 -> [ 371.000000] (3:node@c-2.me) 1058032 | 533744 -> [ 371.000000] (3:node@c-2.me) 1582320 | 533744 -> [ 371.000000] (3:node@c-2.me) 2630896 | 533744 -> [ 371.000000] (3:node@c-2.me) 4728048 | 533744 -> [ 371.000000] (3:node@c-2.me) 8922352 | 533744 -> [ 371.000000] (3:node@c-2.me) Predecessor: 10874876 -> [ 372.000000] (1:node@c-0.me) My finger table: -> [ 372.000000] (1:node@c-0.me) Start | Succ -> [ 372.000000] (1:node@c-0.me) 43 | 366680 -> [ 372.000000] (1:node@c-0.me) 44 | 366680 -> [ 372.000000] (1:node@c-0.me) 46 | 366680 -> [ 372.000000] (1:node@c-0.me) 50 | 42 -> [ 372.000000] (1:node@c-0.me) 58 | 42 -> [ 372.000000] (1:node@c-0.me) 74 | 42 -> [ 372.000000] (1:node@c-0.me) 106 | 42 -> [ 372.000000] (1:node@c-0.me) 170 | 42 -> [ 372.000000] (1:node@c-0.me) 298 | 42 -> [ 372.000000] (1:node@c-0.me) 554 | 42 -> [ 372.000000] (1:node@c-0.me) 1066 | 42 -> [ 372.000000] (1:node@c-0.me) 2090 | 42 -> [ 372.000000] (1:node@c-0.me) 4138 | 42 -> [ 372.000000] (1:node@c-0.me) 8234 | 42 -> [ 372.000000] (1:node@c-0.me) 16426 | 42 -> [ 372.000000] (1:node@c-0.me) 32810 | 42 -> [ 372.000000] (1:node@c-0.me) 65578 | 42 -> [ 372.000000] (1:node@c-0.me) 131114 | 42 -> [ 372.000000] (1:node@c-0.me) 262186 | 42 -> [ 372.000000] (1:node@c-0.me) 524330 | 42 -> [ 372.000000] (1:node@c-0.me) 1048618 | 42 -> [ 372.000000] (1:node@c-0.me) 2097194 | 42 -> [ 372.000000] (1:node@c-0.me) 4194346 | 42 -> [ 372.000000] (1:node@c-0.me) 8388650 | 42 -> [ 372.000000] (1:node@c-0.me) Predecessor: 16728096 -> [ 374.000000] (8:node@c-7.me) My finger table: -> [ 374.000000] (8:node@c-7.me) Start | Succ -> [ 374.000000] (8:node@c-7.me) 10004761 | 16509405 -> [ 374.000000] (8:node@c-7.me) 10004762 | 16509405 -> [ 374.000000] (8:node@c-7.me) 10004764 | 16509405 -> [ 374.000000] (8:node@c-7.me) 10004768 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10004776 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10004792 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10004824 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10004888 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10005016 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10005272 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10005784 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10006808 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10008856 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10012952 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10021144 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10037528 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10070296 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10135832 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10266904 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10529048 | 10004760 -> [ 374.000000] (8:node@c-7.me) 11053336 | 10004760 -> [ 374.000000] (8:node@c-7.me) 12101912 | 10004760 -> [ 374.000000] (8:node@c-7.me) 14199064 | 10004760 -> [ 374.000000] (8:node@c-7.me) 1616152 | 10004760 -> [ 374.000000] (8:node@c-7.me) Predecessor: 6518808 -> [ 375.000000] (5:node@c-4.me) My finger table: -> [ 375.000000] (5:node@c-4.me) Start | Succ -> [ 375.000000] (5:node@c-4.me) 16509406 | 16728096 -> [ 375.000000] (5:node@c-4.me) 16509407 | 16728096 -> [ 375.000000] (5:node@c-4.me) 16509409 | 16728096 -> [ 375.000000] (5:node@c-4.me) 16509413 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16509421 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16509437 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16509469 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16509533 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16509661 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16509917 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16510429 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16511453 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16513501 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16517597 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16525789 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16542173 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16574941 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16640477 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16771549 | 16509405 -> [ 375.000000] (5:node@c-4.me) 256477 | 16509405 -> [ 375.000000] (5:node@c-4.me) 780765 | 16509405 -> [ 375.000000] (5:node@c-4.me) 1829341 | 16509405 -> [ 375.000000] (5:node@c-4.me) 3926493 | 16509405 -> [ 375.000000] (5:node@c-4.me) 8120797 | 16509405 -> [ 375.000000] (5:node@c-4.me) Predecessor: 10004760 -> [ 395.000000] (9:node@c-8.me) My finger table: -> [ 395.000000] (9:node@c-8.me) Start | Succ -> [ 395.000000] (9:node@c-8.me) 6518809 | 10004760 -> [ 395.000000] (9:node@c-8.me) 6518810 | 16728096 -> [ 395.000000] (9:node@c-8.me) 6518812 | 10004760 -> [ 395.000000] (9:node@c-8.me) 6518816 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6518824 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6518840 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6518872 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6518936 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6519064 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6519320 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6519832 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6520856 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6522904 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6527000 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6535192 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6551576 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6584344 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6649880 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6780952 | 6518808 -> [ 395.000000] (9:node@c-8.me) 7043096 | 6518808 -> [ 395.000000] (9:node@c-8.me) 7567384 | 6518808 -> [ 395.000000] (9:node@c-8.me) 8615960 | 6518808 -> [ 395.000000] (9:node@c-8.me) 10713112 | 6518808 -> [ 395.000000] (9:node@c-8.me) 14907416 | 6518808 -> [ 395.000000] (9:node@c-8.me) Predecessor: 2015253 -> [ 398.000000] (7:node@c-6.me) My finger table: -> [ 398.000000] (7:node@c-6.me) Start | Succ -> [ 398.000000] (7:node@c-6.me) 16728097 | 42 -> [ 398.000000] (7:node@c-6.me) 16728098 | 42 -> [ 398.000000] (7:node@c-6.me) 16728100 | 42 -> [ 398.000000] (7:node@c-6.me) 16728104 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16728112 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16728128 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16728160 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16728224 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16728352 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16728608 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16729120 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16730144 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16732192 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16736288 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16744480 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16760864 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16416 | 16728096 -> [ 398.000000] (7:node@c-6.me) 81952 | 16728096 -> [ 398.000000] (7:node@c-6.me) 213024 | 16728096 -> [ 398.000000] (7:node@c-6.me) 475168 | 16728096 -> [ 398.000000] (7:node@c-6.me) 999456 | 16728096 -> [ 398.000000] (7:node@c-6.me) 2048032 | 16728096 -> [ 398.000000] (7:node@c-6.me) 4145184 | 16728096 -> [ 398.000000] (7:node@c-6.me) 8339488 | 16728096 -> [ 398.000000] (7:node@c-6.me) Predecessor: 16509405 -> [ 405.000000] (4:node@c-3.me) My finger table: -> [ 405.000000] (4:node@c-3.me) Start | Succ -> [ 405.000000] (4:node@c-3.me) 1319739 | 2015253 -> [ 405.000000] (4:node@c-3.me) 1319740 | 2015253 -> [ 405.000000] (4:node@c-3.me) 1319742 | 2015253 -> [ 405.000000] (4:node@c-3.me) 1319746 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1319754 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1319770 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1319802 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1319866 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1319994 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1320250 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1320762 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1321786 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1323834 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1327930 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1336122 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1352506 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1385274 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1450810 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1581882 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1844026 | 1319738 -> [ 405.000000] (4:node@c-3.me) 2368314 | 1319738 -> [ 405.000000] (4:node@c-3.me) 3416890 | 1319738 -> [ 405.000000] (4:node@c-3.me) 5514042 | 1319738 -> [ 405.000000] (4:node@c-3.me) 9708346 | 1319738 -> [ 405.000000] (4:node@c-3.me) Predecessor: 366680 -> [ 411.000000] (2:node@c-1.me) My finger table: -> [ 411.000000] (2:node@c-1.me) Start | Succ -> [ 411.000000] (2:node@c-1.me) 366681 | 1319738 -> [ 411.000000] (2:node@c-1.me) 366682 | 1319738 -> [ 411.000000] (2:node@c-1.me) 366684 | 1319738 -> [ 411.000000] (2:node@c-1.me) 366688 | 366680 -> [ 411.000000] (2:node@c-1.me) 366696 | 366680 -> [ 411.000000] (2:node@c-1.me) 366712 | 366680 -> [ 411.000000] (2:node@c-1.me) 366744 | 366680 -> [ 411.000000] (2:node@c-1.me) 366808 | 366680 -> [ 411.000000] (2:node@c-1.me) 366936 | 366680 -> [ 411.000000] (2:node@c-1.me) 367192 | 366680 -> [ 411.000000] (2:node@c-1.me) 367704 | 366680 -> [ 411.000000] (2:node@c-1.me) 368728 | 366680 -> [ 411.000000] (2:node@c-1.me) 370776 | 366680 -> [ 411.000000] (2:node@c-1.me) 374872 | 366680 -> [ 411.000000] (2:node@c-1.me) 383064 | 366680 -> [ 411.000000] (2:node@c-1.me) 399448 | 366680 -> [ 411.000000] (2:node@c-1.me) 432216 | 366680 -> [ 411.000000] (2:node@c-1.me) 497752 | 366680 -> [ 411.000000] (2:node@c-1.me) 628824 | 366680 -> [ 411.000000] (2:node@c-1.me) 890968 | 366680 -> [ 411.000000] (2:node@c-1.me) 1415256 | 366680 -> [ 411.000000] (2:node@c-1.me) 2463832 | 366680 -> [ 411.000000] (2:node@c-1.me) 4560984 | 366680 -> [ 411.000000] (2:node@c-1.me) 8755288 | 366680 -> [ 411.000000] (2:node@c-1.me) Predecessor: 42 -> [ 426.000000] (10:node@c-9.me) My finger table: -> [ 426.000000] (10:node@c-9.me) Start | Succ -> [ 426.000000] (10:node@c-9.me) 2015254 | 6518808 -> [ 426.000000] (10:node@c-9.me) 2015255 | 6518808 -> [ 426.000000] (10:node@c-9.me) 2015257 | 6518808 -> [ 426.000000] (10:node@c-9.me) 2015261 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2015269 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2015285 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2015317 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2015381 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2015509 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2015765 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2016277 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2017301 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2019349 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2023445 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2031637 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2048021 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2080789 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2146325 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2277397 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2539541 | 2015253 -> [ 426.000000] (10:node@c-9.me) 3063829 | 2015253 -> [ 426.000000] (10:node@c-9.me) 4112405 | 2015253 -> [ 426.000000] (10:node@c-9.me) 6209557 | 2015253 -> [ 426.000000] (10:node@c-9.me) 10403861 | 2015253 -> [ 426.000000] (10:node@c-9.me) Predecessor: 1319738 -> [ 486.000000] (6:node@c-5.me) My finger table: -> [ 486.000000] (6:node@c-5.me) Start | Succ -> [ 486.000000] (6:node@c-5.me) 10874877 | 533744 -> [ 486.000000] (6:node@c-5.me) 10874878 | 533744 -> [ 486.000000] (6:node@c-5.me) 10874880 | 533744 -> [ 486.000000] (6:node@c-5.me) 10874884 | 533744 -> [ 486.000000] (6:node@c-5.me) 10874892 | 10874876 -> [ 486.000000] (6:node@c-5.me) 10874908 | 10874876 -> [ 486.000000] (6:node@c-5.me) 10874940 | 10874876 -> [ 486.000000] (6:node@c-5.me) 10875004 | 10874876 -> [ 486.000000] (6:node@c-5.me) 10875132 | 10874876 -> [ 486.000000] (6:node@c-5.me) 10875388 | 10874876 -> [ 486.000000] (6:node@c-5.me) 10875900 | 10874876 -> [ 486.000000] (6:node@c-5.me) 10876924 | 10874876 -> [ 486.000000] (6:node@c-5.me) 10878972 | 10874876 -> [ 486.000000] (6:node@c-5.me) 10883068 | 10874876 -> [ 486.000000] (6:node@c-5.me) 10891260 | 10874876 -> [ 486.000000] (6:node@c-5.me) 10907644 | 10874876 -> [ 486.000000] (6:node@c-5.me) 10940412 | 10874876 -> [ 486.000000] (6:node@c-5.me) 11005948 | 10874876 -> [ 486.000000] (6:node@c-5.me) 11137020 | 10874876 -> [ 486.000000] (6:node@c-5.me) 11399164 | 10874876 -> [ 486.000000] (6:node@c-5.me) 11923452 | 10874876 -> [ 486.000000] (6:node@c-5.me) 12972028 | 10874876 -> [ 486.000000] (6:node@c-5.me) 15069180 | 10874876 -> [ 486.000000] (6:node@c-5.me) 2486268 | 10874876 -> [ 486.000000] (6:node@c-5.me) Predecessor: -1 -> [ 491.000000] (4:node@c-3.me) My finger table: -> [ 491.000000] (4:node@c-3.me) Start | Succ -> [ 491.000000] (4:node@c-3.me) 1319739 | 2015253 -> [ 491.000000] (4:node@c-3.me) 1319740 | 2015253 -> [ 491.000000] (4:node@c-3.me) 1319742 | 2015253 -> [ 491.000000] (4:node@c-3.me) 1319746 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1319754 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1319770 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1319802 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1319866 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1319994 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1320250 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1320762 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1321786 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1323834 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1327930 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1336122 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1352506 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1385274 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1450810 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1581882 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1844026 | 1319738 -> [ 491.000000] (4:node@c-3.me) 2368314 | 1319738 -> [ 491.000000] (4:node@c-3.me) 3416890 | 1319738 -> [ 491.000000] (4:node@c-3.me) 5514042 | 1319738 -> [ 491.000000] (4:node@c-3.me) 9708346 | 1319738 -> [ 491.000000] (4:node@c-3.me) Predecessor: 533744 -> [ 492.000000] (1:node@c-0.me) My finger table: -> [ 492.000000] (1:node@c-0.me) Start | Succ -> [ 492.000000] (1:node@c-0.me) 43 | 366680 -> [ 492.000000] (1:node@c-0.me) 44 | 366680 -> [ 492.000000] (1:node@c-0.me) 46 | 366680 -> [ 492.000000] (1:node@c-0.me) 50 | 366680 -> [ 492.000000] (1:node@c-0.me) 58 | 42 -> [ 492.000000] (1:node@c-0.me) 74 | 42 -> [ 492.000000] (1:node@c-0.me) 106 | 42 -> [ 492.000000] (1:node@c-0.me) 170 | 42 -> [ 492.000000] (1:node@c-0.me) 298 | 42 -> [ 492.000000] (1:node@c-0.me) 554 | 42 -> [ 492.000000] (1:node@c-0.me) 1066 | 42 -> [ 492.000000] (1:node@c-0.me) 2090 | 42 -> [ 492.000000] (1:node@c-0.me) 4138 | 42 -> [ 492.000000] (1:node@c-0.me) 8234 | 42 -> [ 492.000000] (1:node@c-0.me) 16426 | 42 -> [ 492.000000] (1:node@c-0.me) 32810 | 42 -> [ 492.000000] (1:node@c-0.me) 65578 | 42 -> [ 492.000000] (1:node@c-0.me) 131114 | 42 -> [ 492.000000] (1:node@c-0.me) 262186 | 42 -> [ 492.000000] (1:node@c-0.me) 524330 | 42 -> [ 492.000000] (1:node@c-0.me) 1048618 | 42 -> [ 492.000000] (1:node@c-0.me) 2097194 | 42 -> [ 492.000000] (1:node@c-0.me) 4194346 | 42 -> [ 492.000000] (1:node@c-0.me) 8388650 | 42 -> [ 492.000000] (1:node@c-0.me) Predecessor: 16728096 -> [ 495.000000] (3:node@c-2.me) My finger table: -> [ 495.000000] (3:node@c-2.me) Start | Succ -> [ 495.000000] (3:node@c-2.me) 533745 | 1319738 -> [ 495.000000] (3:node@c-2.me) 533746 | 10004760 -> [ 495.000000] (3:node@c-2.me) 533748 | 10004760 -> [ 495.000000] (3:node@c-2.me) 533752 | 1319738 -> [ 495.000000] (3:node@c-2.me) 533760 | 533744 -> [ 495.000000] (3:node@c-2.me) 533776 | 533744 -> [ 495.000000] (3:node@c-2.me) 533808 | 533744 -> [ 495.000000] (3:node@c-2.me) 533872 | 533744 -> [ 495.000000] (3:node@c-2.me) 534000 | 533744 -> [ 495.000000] (3:node@c-2.me) 534256 | 533744 -> [ 495.000000] (3:node@c-2.me) 534768 | 533744 -> [ 495.000000] (3:node@c-2.me) 535792 | 533744 -> [ 495.000000] (3:node@c-2.me) 537840 | 533744 -> [ 495.000000] (3:node@c-2.me) 541936 | 533744 -> [ 495.000000] (3:node@c-2.me) 550128 | 533744 -> [ 495.000000] (3:node@c-2.me) 566512 | 533744 -> [ 495.000000] (3:node@c-2.me) 599280 | 533744 -> [ 495.000000] (3:node@c-2.me) 664816 | 533744 -> [ 495.000000] (3:node@c-2.me) 795888 | 533744 -> [ 495.000000] (3:node@c-2.me) 1058032 | 533744 -> [ 495.000000] (3:node@c-2.me) 1582320 | 533744 -> [ 495.000000] (3:node@c-2.me) 2630896 | 533744 -> [ 495.000000] (3:node@c-2.me) 4728048 | 533744 -> [ 495.000000] (3:node@c-2.me) 8922352 | 533744 -> [ 495.000000] (3:node@c-2.me) Predecessor: 10874876 -> [ 502.000000] (8:node@c-7.me) My finger table: -> [ 502.000000] (8:node@c-7.me) Start | Succ -> [ 502.000000] (8:node@c-7.me) 10004761 | 16509405 -> [ 502.000000] (8:node@c-7.me) 10004762 | 16509405 -> [ 502.000000] (8:node@c-7.me) 10004764 | 16509405 -> [ 502.000000] (8:node@c-7.me) 10004768 | 16509405 -> [ 502.000000] (8:node@c-7.me) 10004776 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10004792 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10004824 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10004888 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10005016 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10005272 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10005784 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10006808 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10008856 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10012952 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10021144 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10037528 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10070296 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10135832 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10266904 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10529048 | 10004760 -> [ 502.000000] (8:node@c-7.me) 11053336 | 10004760 -> [ 502.000000] (8:node@c-7.me) 12101912 | 10004760 -> [ 502.000000] (8:node@c-7.me) 14199064 | 10004760 -> [ 502.000000] (8:node@c-7.me) 1616152 | 10004760 -> [ 502.000000] (8:node@c-7.me) Predecessor: 6518808 -> [ 505.000000] (5:node@c-4.me) My finger table: -> [ 505.000000] (5:node@c-4.me) Start | Succ -> [ 505.000000] (5:node@c-4.me) 16509406 | 16728096 -> [ 505.000000] (5:node@c-4.me) 16509407 | 16728096 -> [ 505.000000] (5:node@c-4.me) 16509409 | 16728096 -> [ 505.000000] (5:node@c-4.me) 16509413 | 16728096 -> [ 505.000000] (5:node@c-4.me) 16509421 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16509437 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16509469 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16509533 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16509661 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16509917 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16510429 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16511453 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16513501 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16517597 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16525789 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16542173 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16574941 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16640477 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16771549 | 16509405 -> [ 505.000000] (5:node@c-4.me) 256477 | 16509405 -> [ 505.000000] (5:node@c-4.me) 780765 | 16509405 -> [ 505.000000] (5:node@c-4.me) 1829341 | 16509405 -> [ 505.000000] (5:node@c-4.me) 3926493 | 16509405 -> [ 505.000000] (5:node@c-4.me) 8120797 | 16509405 -> [ 505.000000] (5:node@c-4.me) Predecessor: 10004760 -> [ 521.000000] (7:node@c-6.me) My finger table: -> [ 521.000000] (7:node@c-6.me) Start | Succ -> [ 521.000000] (7:node@c-6.me) 16728097 | 42 -> [ 521.000000] (7:node@c-6.me) 16728098 | 42 -> [ 521.000000] (7:node@c-6.me) 16728100 | 42 -> [ 521.000000] (7:node@c-6.me) 16728104 | 42 -> [ 521.000000] (7:node@c-6.me) 16728112 | 16728096 -> [ 521.000000] (7:node@c-6.me) 16728128 | 16728096 -> [ 521.000000] (7:node@c-6.me) 16728160 | 16728096 -> [ 521.000000] (7:node@c-6.me) 16728224 | 16728096 -> [ 521.000000] (7:node@c-6.me) 16728352 | 16728096 -> [ 521.000000] (7:node@c-6.me) 16728608 | 16728096 -> [ 521.000000] (7:node@c-6.me) 16729120 | 16728096 -> [ 521.000000] (7:node@c-6.me) 16730144 | 16728096 -> [ 521.000000] (7:node@c-6.me) 16732192 | 16728096 -> [ 521.000000] (7:node@c-6.me) 16736288 | 16728096 -> [ 521.000000] (7:node@c-6.me) 16744480 | 16728096 -> [ 521.000000] (7:node@c-6.me) 16760864 | 16728096 -> [ 521.000000] (7:node@c-6.me) 16416 | 16728096 -> [ 521.000000] (7:node@c-6.me) 81952 | 16728096 -> [ 521.000000] (7:node@c-6.me) 213024 | 16728096 -> [ 521.000000] (7:node@c-6.me) 475168 | 16728096 -> [ 521.000000] (7:node@c-6.me) 999456 | 16728096 -> [ 521.000000] (7:node@c-6.me) 2048032 | 16728096 -> [ 521.000000] (7:node@c-6.me) 4145184 | 16728096 -> [ 521.000000] (7:node@c-6.me) 8339488 | 16728096 -> [ 521.000000] (7:node@c-6.me) Predecessor: 16509405 -> [ 535.000000] (9:node@c-8.me) My finger table: -> [ 535.000000] (9:node@c-8.me) Start | Succ -> [ 535.000000] (9:node@c-8.me) 6518809 | 10004760 -> [ 535.000000] (9:node@c-8.me) 6518810 | 16728096 -> [ 535.000000] (9:node@c-8.me) 6518812 | 10004760 -> [ 535.000000] (9:node@c-8.me) 6518816 | 10004760 -> [ 535.000000] (9:node@c-8.me) 6518824 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6518840 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6518872 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6518936 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6519064 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6519320 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6519832 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6520856 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6522904 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6527000 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6535192 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6551576 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6584344 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6649880 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6780952 | 6518808 -> [ 535.000000] (9:node@c-8.me) 7043096 | 6518808 -> [ 535.000000] (9:node@c-8.me) 7567384 | 6518808 -> [ 535.000000] (9:node@c-8.me) 8615960 | 6518808 -> [ 535.000000] (9:node@c-8.me) 10713112 | 6518808 -> [ 535.000000] (9:node@c-8.me) 14907416 | 6518808 -> [ 535.000000] (9:node@c-8.me) Predecessor: 2015253 -> [ 537.000000] (4:node@c-3.me) My finger table: -> [ 537.000000] (4:node@c-3.me) Start | Succ -> [ 537.000000] (4:node@c-3.me) 1319739 | 2015253 -> [ 537.000000] (4:node@c-3.me) 1319740 | 2015253 -> [ 537.000000] (4:node@c-3.me) 1319742 | 2015253 -> [ 537.000000] (4:node@c-3.me) 1319746 | 2015253 -> [ 537.000000] (4:node@c-3.me) 1319754 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1319770 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1319802 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1319866 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1319994 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1320250 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1320762 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1321786 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1323834 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1327930 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1336122 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1352506 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1385274 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1450810 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1581882 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1844026 | 1319738 -> [ 537.000000] (4:node@c-3.me) 2368314 | 1319738 -> [ 537.000000] (4:node@c-3.me) 3416890 | 1319738 -> [ 537.000000] (4:node@c-3.me) 5514042 | 1319738 -> [ 537.000000] (4:node@c-3.me) 9708346 | 1319738 -> [ 537.000000] (4:node@c-3.me) Predecessor: 533744 -> [ 539.000000] (2:node@c-1.me) My finger table: -> [ 539.000000] (2:node@c-1.me) Start | Succ -> [ 539.000000] (2:node@c-1.me) 366681 | 533744 -> [ 539.000000] (2:node@c-1.me) 366682 | 1319738 -> [ 539.000000] (2:node@c-1.me) 366684 | 1319738 -> [ 539.000000] (2:node@c-1.me) 366688 | 533744 -> [ 539.000000] (2:node@c-1.me) 366696 | 366680 -> [ 539.000000] (2:node@c-1.me) 366712 | 366680 -> [ 539.000000] (2:node@c-1.me) 366744 | 366680 -> [ 539.000000] (2:node@c-1.me) 366808 | 366680 -> [ 539.000000] (2:node@c-1.me) 366936 | 366680 -> [ 539.000000] (2:node@c-1.me) 367192 | 366680 -> [ 539.000000] (2:node@c-1.me) 367704 | 366680 -> [ 539.000000] (2:node@c-1.me) 368728 | 366680 -> [ 539.000000] (2:node@c-1.me) 370776 | 366680 -> [ 539.000000] (2:node@c-1.me) 374872 | 366680 -> [ 539.000000] (2:node@c-1.me) 383064 | 366680 -> [ 539.000000] (2:node@c-1.me) 399448 | 366680 -> [ 539.000000] (2:node@c-1.me) 432216 | 366680 -> [ 539.000000] (2:node@c-1.me) 497752 | 366680 -> [ 539.000000] (2:node@c-1.me) 628824 | 366680 -> [ 539.000000] (2:node@c-1.me) 890968 | 366680 -> [ 539.000000] (2:node@c-1.me) 1415256 | 366680 -> [ 539.000000] (2:node@c-1.me) 2463832 | 366680 -> [ 539.000000] (2:node@c-1.me) 4560984 | 366680 -> [ 539.000000] (2:node@c-1.me) 8755288 | 366680 -> [ 539.000000] (2:node@c-1.me) Predecessor: 42 -> [ 540.000000] (3:node@c-2.me) My finger table: -> [ 540.000000] (3:node@c-2.me) Start | Succ -> [ 540.000000] (3:node@c-2.me) 533745 | 1319738 -> [ 540.000000] (3:node@c-2.me) 533746 | 10004760 -> [ 540.000000] (3:node@c-2.me) 533748 | 10004760 -> [ 540.000000] (3:node@c-2.me) 533752 | 1319738 -> [ 540.000000] (3:node@c-2.me) 533760 | 533744 -> [ 540.000000] (3:node@c-2.me) 533776 | 533744 -> [ 540.000000] (3:node@c-2.me) 533808 | 533744 -> [ 540.000000] (3:node@c-2.me) 533872 | 533744 -> [ 540.000000] (3:node@c-2.me) 534000 | 533744 -> [ 540.000000] (3:node@c-2.me) 534256 | 533744 -> [ 540.000000] (3:node@c-2.me) 534768 | 533744 -> [ 540.000000] (3:node@c-2.me) 535792 | 533744 -> [ 540.000000] (3:node@c-2.me) 537840 | 533744 -> [ 540.000000] (3:node@c-2.me) 541936 | 533744 -> [ 540.000000] (3:node@c-2.me) 550128 | 533744 -> [ 540.000000] (3:node@c-2.me) 566512 | 533744 -> [ 540.000000] (3:node@c-2.me) 599280 | 533744 -> [ 540.000000] (3:node@c-2.me) 664816 | 533744 -> [ 540.000000] (3:node@c-2.me) 795888 | 533744 -> [ 540.000000] (3:node@c-2.me) 1058032 | 533744 -> [ 540.000000] (3:node@c-2.me) 1582320 | 533744 -> [ 540.000000] (3:node@c-2.me) 2630896 | 533744 -> [ 540.000000] (3:node@c-2.me) 4728048 | 533744 -> [ 540.000000] (3:node@c-2.me) 8922352 | 533744 -> [ 540.000000] (3:node@c-2.me) Predecessor: 366680 -> [ 567.000000] (10:node@c-9.me) My finger table: -> [ 567.000000] (10:node@c-9.me) Start | Succ -> [ 567.000000] (10:node@c-9.me) 2015254 | 6518808 -> [ 567.000000] (10:node@c-9.me) 2015255 | 6518808 -> [ 567.000000] (10:node@c-9.me) 2015257 | 6518808 -> [ 567.000000] (10:node@c-9.me) 2015261 | 6518808 -> [ 567.000000] (10:node@c-9.me) 2015269 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2015285 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2015317 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2015381 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2015509 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2015765 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2016277 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2017301 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2019349 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2023445 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2031637 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2048021 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2080789 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2146325 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2277397 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2539541 | 2015253 -> [ 567.000000] (10:node@c-9.me) 3063829 | 2015253 -> [ 567.000000] (10:node@c-9.me) 4112405 | 2015253 -> [ 567.000000] (10:node@c-9.me) 6209557 | 2015253 -> [ 567.000000] (10:node@c-9.me) 10403861 | 2015253 -> [ 567.000000] (10:node@c-9.me) Predecessor: 1319738 -> [ 613.000000] (1:node@c-0.me) My finger table: -> [ 613.000000] (1:node@c-0.me) Start | Succ -> [ 613.000000] (1:node@c-0.me) 43 | 366680 -> [ 613.000000] (1:node@c-0.me) 44 | 366680 -> [ 613.000000] (1:node@c-0.me) 46 | 366680 -> [ 613.000000] (1:node@c-0.me) 50 | 366680 -> [ 613.000000] (1:node@c-0.me) 58 | 366680 -> [ 613.000000] (1:node@c-0.me) 74 | 42 -> [ 613.000000] (1:node@c-0.me) 106 | 42 -> [ 613.000000] (1:node@c-0.me) 170 | 42 -> [ 613.000000] (1:node@c-0.me) 298 | 42 -> [ 613.000000] (1:node@c-0.me) 554 | 42 -> [ 613.000000] (1:node@c-0.me) 1066 | 42 -> [ 613.000000] (1:node@c-0.me) 2090 | 42 -> [ 613.000000] (1:node@c-0.me) 4138 | 42 -> [ 613.000000] (1:node@c-0.me) 8234 | 42 -> [ 613.000000] (1:node@c-0.me) 16426 | 42 -> [ 613.000000] (1:node@c-0.me) 32810 | 42 -> [ 613.000000] (1:node@c-0.me) 65578 | 42 -> [ 613.000000] (1:node@c-0.me) 131114 | 42 -> [ 613.000000] (1:node@c-0.me) 262186 | 42 -> [ 613.000000] (1:node@c-0.me) 524330 | 42 -> [ 613.000000] (1:node@c-0.me) 1048618 | 42 -> [ 613.000000] (1:node@c-0.me) 2097194 | 42 -> [ 613.000000] (1:node@c-0.me) 4194346 | 42 -> [ 613.000000] (1:node@c-0.me) 8388650 | 42 -> [ 613.000000] (1:node@c-0.me) Predecessor: 16728096 -> [ 616.000000] (3:node@c-2.me) My finger table: -> [ 616.000000] (3:node@c-2.me) Start | Succ -> [ 616.000000] (3:node@c-2.me) 533745 | 1319738 -> [ 616.000000] (3:node@c-2.me) 533746 | 10004760 -> [ 616.000000] (3:node@c-2.me) 533748 | 10004760 -> [ 616.000000] (3:node@c-2.me) 533752 | 1319738 -> [ 616.000000] (3:node@c-2.me) 533760 | 1319738 -> [ 616.000000] (3:node@c-2.me) 533776 | 533744 -> [ 616.000000] (3:node@c-2.me) 533808 | 533744 -> [ 616.000000] (3:node@c-2.me) 533872 | 533744 -> [ 616.000000] (3:node@c-2.me) 534000 | 533744 -> [ 616.000000] (3:node@c-2.me) 534256 | 533744 -> [ 616.000000] (3:node@c-2.me) 534768 | 533744 -> [ 616.000000] (3:node@c-2.me) 535792 | 533744 -> [ 616.000000] (3:node@c-2.me) 537840 | 533744 -> [ 616.000000] (3:node@c-2.me) 541936 | 533744 -> [ 616.000000] (3:node@c-2.me) 550128 | 533744 -> [ 616.000000] (3:node@c-2.me) 566512 | 533744 -> [ 616.000000] (3:node@c-2.me) 599280 | 533744 -> [ 616.000000] (3:node@c-2.me) 664816 | 533744 -> [ 616.000000] (3:node@c-2.me) 795888 | 533744 -> [ 616.000000] (3:node@c-2.me) 1058032 | 533744 -> [ 616.000000] (3:node@c-2.me) 1582320 | 533744 -> [ 616.000000] (3:node@c-2.me) 2630896 | 533744 -> [ 616.000000] (3:node@c-2.me) 4728048 | 533744 -> [ 616.000000] (3:node@c-2.me) 8922352 | 533744 -> [ 616.000000] (3:node@c-2.me) Predecessor: 366680 -> [ 620.000000] (6:node@c-5.me) My finger table: -> [ 620.000000] (6:node@c-5.me) Start | Succ -> [ 620.000000] (6:node@c-5.me) 10874877 | 16728096 -> [ 620.000000] (6:node@c-5.me) 10874878 | 533744 -> [ 620.000000] (6:node@c-5.me) 10874880 | 533744 -> [ 620.000000] (6:node@c-5.me) 10874884 | 533744 -> [ 620.000000] (6:node@c-5.me) 10874892 | 16728096 -> [ 620.000000] (6:node@c-5.me) 10874908 | 10874876 -> [ 620.000000] (6:node@c-5.me) 10874940 | 10874876 -> [ 620.000000] (6:node@c-5.me) 10875004 | 10874876 -> [ 620.000000] (6:node@c-5.me) 10875132 | 10874876 -> [ 620.000000] (6:node@c-5.me) 10875388 | 10874876 -> [ 620.000000] (6:node@c-5.me) 10875900 | 10874876 -> [ 620.000000] (6:node@c-5.me) 10876924 | 10874876 -> [ 620.000000] (6:node@c-5.me) 10878972 | 10874876 -> [ 620.000000] (6:node@c-5.me) 10883068 | 10874876 -> [ 620.000000] (6:node@c-5.me) 10891260 | 10874876 -> [ 620.000000] (6:node@c-5.me) 10907644 | 10874876 -> [ 620.000000] (6:node@c-5.me) 10940412 | 10874876 -> [ 620.000000] (6:node@c-5.me) 11005948 | 10874876 -> [ 620.000000] (6:node@c-5.me) 11137020 | 10874876 -> [ 620.000000] (6:node@c-5.me) 11399164 | 10874876 -> [ 620.000000] (6:node@c-5.me) 11923452 | 10874876 -> [ 620.000000] (6:node@c-5.me) 12972028 | 10874876 -> [ 620.000000] (6:node@c-5.me) 15069180 | 10874876 -> [ 620.000000] (6:node@c-5.me) 2486268 | 10874876 -> [ 620.000000] (6:node@c-5.me) Predecessor: -1 -> [ 629.000000] (8:node@c-7.me) My finger table: -> [ 629.000000] (8:node@c-7.me) Start | Succ -> [ 629.000000] (8:node@c-7.me) 10004761 | 16509405 -> [ 629.000000] (8:node@c-7.me) 10004762 | 16509405 -> [ 629.000000] (8:node@c-7.me) 10004764 | 16509405 -> [ 629.000000] (8:node@c-7.me) 10004768 | 16509405 -> [ 629.000000] (8:node@c-7.me) 10004776 | 16509405 -> [ 629.000000] (8:node@c-7.me) 10004792 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10004824 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10004888 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10005016 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10005272 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10005784 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10006808 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10008856 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10012952 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10021144 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10037528 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10070296 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10135832 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10266904 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10529048 | 10004760 -> [ 629.000000] (8:node@c-7.me) 11053336 | 10004760 -> [ 629.000000] (8:node@c-7.me) 12101912 | 10004760 -> [ 629.000000] (8:node@c-7.me) 14199064 | 10004760 -> [ 629.000000] (8:node@c-7.me) 1616152 | 10004760 -> [ 629.000000] (8:node@c-7.me) Predecessor: 6518808 -> [ 630.000000] (5:node@c-4.me) My finger table: -> [ 630.000000] (5:node@c-4.me) Start | Succ -> [ 630.000000] (5:node@c-4.me) 16509406 | 16728096 -> [ 630.000000] (5:node@c-4.me) 16509407 | 16728096 -> [ 630.000000] (5:node@c-4.me) 16509409 | 16728096 -> [ 630.000000] (5:node@c-4.me) 16509413 | 16728096 -> [ 630.000000] (5:node@c-4.me) 16509421 | 16728096 -> [ 630.000000] (5:node@c-4.me) 16509437 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16509469 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16509533 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16509661 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16509917 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16510429 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16511453 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16513501 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16517597 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16525789 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16542173 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16574941 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16640477 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16771549 | 16509405 -> [ 630.000000] (5:node@c-4.me) 256477 | 16509405 -> [ 630.000000] (5:node@c-4.me) 780765 | 16509405 -> [ 630.000000] (5:node@c-4.me) 1829341 | 16509405 -> [ 630.000000] (5:node@c-4.me) 3926493 | 16509405 -> [ 630.000000] (5:node@c-4.me) 8120797 | 16509405 -> [ 630.000000] (5:node@c-4.me) Predecessor: 10004760 -> [ 653.000000] (7:node@c-6.me) My finger table: -> [ 653.000000] (7:node@c-6.me) Start | Succ -> [ 653.000000] (7:node@c-6.me) 16728097 | 42 -> [ 653.000000] (7:node@c-6.me) 16728098 | 42 -> [ 653.000000] (7:node@c-6.me) 16728100 | 42 -> [ 653.000000] (7:node@c-6.me) 16728104 | 42 -> [ 653.000000] (7:node@c-6.me) 16728112 | 42 -> [ 653.000000] (7:node@c-6.me) 16728128 | 16728096 -> [ 653.000000] (7:node@c-6.me) 16728160 | 16728096 -> [ 653.000000] (7:node@c-6.me) 16728224 | 16728096 -> [ 653.000000] (7:node@c-6.me) 16728352 | 16728096 -> [ 653.000000] (7:node@c-6.me) 16728608 | 16728096 -> [ 653.000000] (7:node@c-6.me) 16729120 | 16728096 -> [ 653.000000] (7:node@c-6.me) 16730144 | 16728096 -> [ 653.000000] (7:node@c-6.me) 16732192 | 16728096 -> [ 653.000000] (7:node@c-6.me) 16736288 | 16728096 -> [ 653.000000] (7:node@c-6.me) 16744480 | 16728096 -> [ 653.000000] (7:node@c-6.me) 16760864 | 16728096 -> [ 653.000000] (7:node@c-6.me) 16416 | 16728096 -> [ 653.000000] (7:node@c-6.me) 81952 | 16728096 -> [ 653.000000] (7:node@c-6.me) 213024 | 16728096 -> [ 653.000000] (7:node@c-6.me) 475168 | 16728096 -> [ 653.000000] (7:node@c-6.me) 999456 | 16728096 -> [ 653.000000] (7:node@c-6.me) 2048032 | 16728096 -> [ 653.000000] (7:node@c-6.me) 4145184 | 16728096 -> [ 653.000000] (7:node@c-6.me) 8339488 | 16728096 -> [ 653.000000] (7:node@c-6.me) Predecessor: 16509405 -> [ 663.000000] (2:node@c-1.me) My finger table: -> [ 663.000000] (2:node@c-1.me) Start | Succ -> [ 663.000000] (2:node@c-1.me) 366681 | 533744 -> [ 663.000000] (2:node@c-1.me) 366682 | 1319738 -> [ 663.000000] (2:node@c-1.me) 366684 | 1319738 -> [ 663.000000] (2:node@c-1.me) 366688 | 533744 -> [ 663.000000] (2:node@c-1.me) 366696 | 533744 -> [ 663.000000] (2:node@c-1.me) 366712 | 366680 -> [ 663.000000] (2:node@c-1.me) 366744 | 366680 -> [ 663.000000] (2:node@c-1.me) 366808 | 366680 -> [ 663.000000] (2:node@c-1.me) 366936 | 366680 -> [ 663.000000] (2:node@c-1.me) 367192 | 366680 -> [ 663.000000] (2:node@c-1.me) 367704 | 366680 -> [ 663.000000] (2:node@c-1.me) 368728 | 366680 -> [ 663.000000] (2:node@c-1.me) 370776 | 366680 -> [ 663.000000] (2:node@c-1.me) 374872 | 366680 -> [ 663.000000] (2:node@c-1.me) 383064 | 366680 -> [ 663.000000] (2:node@c-1.me) 399448 | 366680 -> [ 663.000000] (2:node@c-1.me) 432216 | 366680 -> [ 663.000000] (2:node@c-1.me) 497752 | 366680 -> [ 663.000000] (2:node@c-1.me) 628824 | 366680 -> [ 663.000000] (2:node@c-1.me) 890968 | 366680 -> [ 663.000000] (2:node@c-1.me) 1415256 | 366680 -> [ 663.000000] (2:node@c-1.me) 2463832 | 366680 -> [ 663.000000] (2:node@c-1.me) 4560984 | 366680 -> [ 663.000000] (2:node@c-1.me) 8755288 | 366680 -> [ 663.000000] (2:node@c-1.me) Predecessor: 42 -> [ 668.000000] (4:node@c-3.me) My finger table: -> [ 668.000000] (4:node@c-3.me) Start | Succ -> [ 668.000000] (4:node@c-3.me) 1319739 | 2015253 -> [ 668.000000] (4:node@c-3.me) 1319740 | 2015253 -> [ 668.000000] (4:node@c-3.me) 1319742 | 2015253 -> [ 668.000000] (4:node@c-3.me) 1319746 | 2015253 -> [ 668.000000] (4:node@c-3.me) 1319754 | 2015253 -> [ 668.000000] (4:node@c-3.me) 1319770 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1319802 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1319866 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1319994 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1320250 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1320762 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1321786 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1323834 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1327930 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1336122 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1352506 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1385274 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1450810 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1581882 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1844026 | 1319738 -> [ 668.000000] (4:node@c-3.me) 2368314 | 1319738 -> [ 668.000000] (4:node@c-3.me) 3416890 | 1319738 -> [ 668.000000] (4:node@c-3.me) 5514042 | 1319738 -> [ 668.000000] (4:node@c-3.me) 9708346 | 1319738 -> [ 668.000000] (4:node@c-3.me) Predecessor: 533744 -> [ 683.000000] (5:node@c-4.me) My finger table: -> [ 683.000000] (5:node@c-4.me) Start | Succ -> [ 683.000000] (5:node@c-4.me) 16509406 | 16728096 -> [ 683.000000] (5:node@c-4.me) 16509407 | 16728096 -> [ 683.000000] (5:node@c-4.me) 16509409 | 16728096 -> [ 683.000000] (5:node@c-4.me) 16509413 | 16728096 -> [ 683.000000] (5:node@c-4.me) 16509421 | 16728096 -> [ 683.000000] (5:node@c-4.me) 16509437 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16509469 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16509533 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16509661 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16509917 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16510429 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16511453 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16513501 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16517597 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16525789 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16542173 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16574941 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16640477 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16771549 | 16509405 -> [ 683.000000] (5:node@c-4.me) 256477 | 16509405 -> [ 683.000000] (5:node@c-4.me) 780765 | 16509405 -> [ 683.000000] (5:node@c-4.me) 1829341 | 16509405 -> [ 683.000000] (5:node@c-4.me) 3926493 | 16509405 -> [ 683.000000] (5:node@c-4.me) 8120797 | 16509405 -> [ 683.000000] (5:node@c-4.me) Predecessor: 10874876 -> [ 688.000000] (9:node@c-8.me) My finger table: -> [ 688.000000] (9:node@c-8.me) Start | Succ -> [ 688.000000] (9:node@c-8.me) 6518809 | 10004760 -> [ 688.000000] (9:node@c-8.me) 6518810 | 16728096 -> [ 688.000000] (9:node@c-8.me) 6518812 | 10004760 -> [ 688.000000] (9:node@c-8.me) 6518816 | 10004760 -> [ 688.000000] (9:node@c-8.me) 6518824 | 10004760 -> [ 688.000000] (9:node@c-8.me) 6518840 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6518872 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6518936 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6519064 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6519320 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6519832 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6520856 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6522904 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6527000 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6535192 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6551576 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6584344 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6649880 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6780952 | 6518808 -> [ 688.000000] (9:node@c-8.me) 7043096 | 6518808 -> [ 688.000000] (9:node@c-8.me) 7567384 | 6518808 -> [ 688.000000] (9:node@c-8.me) 8615960 | 6518808 -> [ 688.000000] (9:node@c-8.me) 10713112 | 6518808 -> [ 688.000000] (9:node@c-8.me) 14907416 | 6518808 -> [ 688.000000] (9:node@c-8.me) Predecessor: 2015253 -> [ 699.000000] (10:node@c-9.me) My finger table: -> [ 699.000000] (10:node@c-9.me) Start | Succ -> [ 699.000000] (10:node@c-9.me) 2015254 | 6518808 -> [ 699.000000] (10:node@c-9.me) 2015255 | 6518808 -> [ 699.000000] (10:node@c-9.me) 2015257 | 6518808 -> [ 699.000000] (10:node@c-9.me) 2015261 | 6518808 -> [ 699.000000] (10:node@c-9.me) 2015269 | 6518808 -> [ 699.000000] (10:node@c-9.me) 2015285 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2015317 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2015381 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2015509 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2015765 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2016277 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2017301 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2019349 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2023445 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2031637 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2048021 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2080789 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2146325 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2277397 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2539541 | 2015253 -> [ 699.000000] (10:node@c-9.me) 3063829 | 2015253 -> [ 699.000000] (10:node@c-9.me) 4112405 | 2015253 -> [ 699.000000] (10:node@c-9.me) 6209557 | 2015253 -> [ 699.000000] (10:node@c-9.me) 10403861 | 2015253 -> [ 699.000000] (10:node@c-9.me) Predecessor: 1319738 -> [ 733.000000] (6:node@c-5.me) My finger table: -> [ 733.000000] (6:node@c-5.me) Start | Succ -> [ 733.000000] (6:node@c-5.me) 10874877 | 16509405 -> [ 733.000000] (6:node@c-5.me) 10874878 | 533744 -> [ 733.000000] (6:node@c-5.me) 10874880 | 533744 -> [ 733.000000] (6:node@c-5.me) 10874884 | 533744 -> [ 733.000000] (6:node@c-5.me) 10874892 | 16728096 -> [ 733.000000] (6:node@c-5.me) 10874908 | 10874876 -> [ 733.000000] (6:node@c-5.me) 10874940 | 10874876 -> [ 733.000000] (6:node@c-5.me) 10875004 | 10874876 -> [ 733.000000] (6:node@c-5.me) 10875132 | 10874876 -> [ 733.000000] (6:node@c-5.me) 10875388 | 10874876 -> [ 733.000000] (6:node@c-5.me) 10875900 | 10874876 -> [ 733.000000] (6:node@c-5.me) 10876924 | 10874876 -> [ 733.000000] (6:node@c-5.me) 10878972 | 10874876 -> [ 733.000000] (6:node@c-5.me) 10883068 | 10874876 -> [ 733.000000] (6:node@c-5.me) 10891260 | 10874876 -> [ 733.000000] (6:node@c-5.me) 10907644 | 10874876 -> [ 733.000000] (6:node@c-5.me) 10940412 | 10874876 -> [ 733.000000] (6:node@c-5.me) 11005948 | 10874876 -> [ 733.000000] (6:node@c-5.me) 11137020 | 10874876 -> [ 733.000000] (6:node@c-5.me) 11399164 | 10874876 -> [ 733.000000] (6:node@c-5.me) 11923452 | 10874876 -> [ 733.000000] (6:node@c-5.me) 12972028 | 10874876 -> [ 733.000000] (6:node@c-5.me) 15069180 | 10874876 -> [ 733.000000] (6:node@c-5.me) 2486268 | 10874876 -> [ 733.000000] (6:node@c-5.me) Predecessor: 10004760 -> [ 735.000000] (1:node@c-0.me) My finger table: -> [ 735.000000] (1:node@c-0.me) Start | Succ -> [ 735.000000] (1:node@c-0.me) 43 | 366680 -> [ 735.000000] (1:node@c-0.me) 44 | 366680 -> [ 735.000000] (1:node@c-0.me) 46 | 366680 -> [ 735.000000] (1:node@c-0.me) 50 | 366680 -> [ 735.000000] (1:node@c-0.me) 58 | 366680 -> [ 735.000000] (1:node@c-0.me) 74 | 366680 -> [ 735.000000] (1:node@c-0.me) 106 | 42 -> [ 735.000000] (1:node@c-0.me) 170 | 42 -> [ 735.000000] (1:node@c-0.me) 298 | 42 -> [ 735.000000] (1:node@c-0.me) 554 | 42 -> [ 735.000000] (1:node@c-0.me) 1066 | 42 -> [ 735.000000] (1:node@c-0.me) 2090 | 42 -> [ 735.000000] (1:node@c-0.me) 4138 | 42 -> [ 735.000000] (1:node@c-0.me) 8234 | 42 -> [ 735.000000] (1:node@c-0.me) 16426 | 42 -> [ 735.000000] (1:node@c-0.me) 32810 | 42 -> [ 735.000000] (1:node@c-0.me) 65578 | 42 -> [ 735.000000] (1:node@c-0.me) 131114 | 42 -> [ 735.000000] (1:node@c-0.me) 262186 | 42 -> [ 735.000000] (1:node@c-0.me) 524330 | 42 -> [ 735.000000] (1:node@c-0.me) 1048618 | 42 -> [ 735.000000] (1:node@c-0.me) 2097194 | 42 -> [ 735.000000] (1:node@c-0.me) 4194346 | 42 -> [ 735.000000] (1:node@c-0.me) 8388650 | 42 -> [ 735.000000] (1:node@c-0.me) Predecessor: 16728096 -> [ 743.000000] (3:node@c-2.me) My finger table: -> [ 743.000000] (3:node@c-2.me) Start | Succ -> [ 743.000000] (3:node@c-2.me) 533745 | 1319738 -> [ 743.000000] (3:node@c-2.me) 533746 | 10004760 -> [ 743.000000] (3:node@c-2.me) 533748 | 10004760 -> [ 743.000000] (3:node@c-2.me) 533752 | 1319738 -> [ 743.000000] (3:node@c-2.me) 533760 | 1319738 -> [ 743.000000] (3:node@c-2.me) 533776 | 1319738 -> [ 743.000000] (3:node@c-2.me) 533808 | 533744 -> [ 743.000000] (3:node@c-2.me) 533872 | 533744 -> [ 743.000000] (3:node@c-2.me) 534000 | 533744 -> [ 743.000000] (3:node@c-2.me) 534256 | 533744 -> [ 743.000000] (3:node@c-2.me) 534768 | 533744 -> [ 743.000000] (3:node@c-2.me) 535792 | 533744 -> [ 743.000000] (3:node@c-2.me) 537840 | 533744 -> [ 743.000000] (3:node@c-2.me) 541936 | 533744 -> [ 743.000000] (3:node@c-2.me) 550128 | 533744 -> [ 743.000000] (3:node@c-2.me) 566512 | 533744 -> [ 743.000000] (3:node@c-2.me) 599280 | 533744 -> [ 743.000000] (3:node@c-2.me) 664816 | 533744 -> [ 743.000000] (3:node@c-2.me) 795888 | 533744 -> [ 743.000000] (3:node@c-2.me) 1058032 | 533744 -> [ 743.000000] (3:node@c-2.me) 1582320 | 533744 -> [ 743.000000] (3:node@c-2.me) 2630896 | 533744 -> [ 743.000000] (3:node@c-2.me) 4728048 | 533744 -> [ 743.000000] (3:node@c-2.me) 8922352 | 533744 -> [ 743.000000] (3:node@c-2.me) Predecessor: 366680 -> [ 752.000000] (5:node@c-4.me) My finger table: -> [ 752.000000] (5:node@c-4.me) Start | Succ -> [ 752.000000] (5:node@c-4.me) 16509406 | 16728096 -> [ 752.000000] (5:node@c-4.me) 16509407 | 16728096 -> [ 752.000000] (5:node@c-4.me) 16509409 | 16728096 -> [ 752.000000] (5:node@c-4.me) 16509413 | 16728096 -> [ 752.000000] (5:node@c-4.me) 16509421 | 16728096 -> [ 752.000000] (5:node@c-4.me) 16509437 | 16728096 -> [ 752.000000] (5:node@c-4.me) 16509469 | 16509405 -> [ 752.000000] (5:node@c-4.me) 16509533 | 16509405 -> [ 752.000000] (5:node@c-4.me) 16509661 | 16509405 -> [ 752.000000] (5:node@c-4.me) 16509917 | 16509405 -> [ 752.000000] (5:node@c-4.me) 16510429 | 16509405 -> [ 752.000000] (5:node@c-4.me) 16511453 | 16509405 -> [ 752.000000] (5:node@c-4.me) 16513501 | 16509405 -> [ 752.000000] (5:node@c-4.me) 16517597 | 16509405 -> [ 752.000000] (5:node@c-4.me) 16525789 | 16509405 -> [ 752.000000] (5:node@c-4.me) 16542173 | 16509405 -> [ 752.000000] (5:node@c-4.me) 16574941 | 16509405 -> [ 752.000000] (5:node@c-4.me) 16640477 | 16509405 -> [ 752.000000] (5:node@c-4.me) 16771549 | 16509405 -> [ 752.000000] (5:node@c-4.me) 256477 | 16509405 -> [ 752.000000] (5:node@c-4.me) 780765 | 16509405 -> [ 752.000000] (5:node@c-4.me) 1829341 | 16509405 -> [ 752.000000] (5:node@c-4.me) 3926493 | 16509405 -> [ 752.000000] (5:node@c-4.me) 8120797 | 16509405 -> [ 752.000000] (5:node@c-4.me) Predecessor: 10874876 -> [ 753.000000] (6:node@c-5.me) My finger table: -> [ 753.000000] (6:node@c-5.me) Start | Succ -> [ 753.000000] (6:node@c-5.me) 10874877 | 16509405 -> [ 753.000000] (6:node@c-5.me) 10874878 | 533744 -> [ 753.000000] (6:node@c-5.me) 10874880 | 533744 -> [ 753.000000] (6:node@c-5.me) 10874884 | 533744 -> [ 753.000000] (6:node@c-5.me) 10874892 | 16728096 -> [ 753.000000] (6:node@c-5.me) 10874908 | 16509405 -> [ 753.000000] (6:node@c-5.me) 10874940 | 10874876 -> [ 753.000000] (6:node@c-5.me) 10875004 | 10874876 -> [ 753.000000] (6:node@c-5.me) 10875132 | 10874876 -> [ 753.000000] (6:node@c-5.me) 10875388 | 10874876 -> [ 753.000000] (6:node@c-5.me) 10875900 | 10874876 -> [ 753.000000] (6:node@c-5.me) 10876924 | 10874876 -> [ 753.000000] (6:node@c-5.me) 10878972 | 10874876 -> [ 753.000000] (6:node@c-5.me) 10883068 | 10874876 -> [ 753.000000] (6:node@c-5.me) 10891260 | 10874876 -> [ 753.000000] (6:node@c-5.me) 10907644 | 10874876 -> [ 753.000000] (6:node@c-5.me) 10940412 | 10874876 -> [ 753.000000] (6:node@c-5.me) 11005948 | 10874876 -> [ 753.000000] (6:node@c-5.me) 11137020 | 10874876 -> [ 753.000000] (6:node@c-5.me) 11399164 | 10874876 -> [ 753.000000] (6:node@c-5.me) 11923452 | 10874876 -> [ 753.000000] (6:node@c-5.me) 12972028 | 10874876 -> [ 753.000000] (6:node@c-5.me) 15069180 | 10874876 -> [ 753.000000] (6:node@c-5.me) 2486268 | 10874876 -> [ 753.000000] (6:node@c-5.me) Predecessor: 10004760 -> [ 765.000000] (8:node@c-7.me) My finger table: -> [ 765.000000] (8:node@c-7.me) Start | Succ -> [ 765.000000] (8:node@c-7.me) 10004761 | 10874876 -> [ 765.000000] (8:node@c-7.me) 10004762 | 16509405 -> [ 765.000000] (8:node@c-7.me) 10004764 | 16509405 -> [ 765.000000] (8:node@c-7.me) 10004768 | 16509405 -> [ 765.000000] (8:node@c-7.me) 10004776 | 16509405 -> [ 765.000000] (8:node@c-7.me) 10004792 | 10874876 -> [ 765.000000] (8:node@c-7.me) 10004824 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10004888 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10005016 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10005272 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10005784 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10006808 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10008856 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10012952 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10021144 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10037528 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10070296 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10135832 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10266904 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10529048 | 10004760 -> [ 765.000000] (8:node@c-7.me) 11053336 | 10004760 -> [ 765.000000] (8:node@c-7.me) 12101912 | 10004760 -> [ 765.000000] (8:node@c-7.me) 14199064 | 10004760 -> [ 765.000000] (8:node@c-7.me) 1616152 | 10004760 -> [ 765.000000] (8:node@c-7.me) Predecessor: 6518808 -> [ 774.000000] (7:node@c-6.me) My finger table: -> [ 774.000000] (7:node@c-6.me) Start | Succ -> [ 774.000000] (7:node@c-6.me) 16728097 | 42 -> [ 774.000000] (7:node@c-6.me) 16728098 | 42 -> [ 774.000000] (7:node@c-6.me) 16728100 | 42 -> [ 774.000000] (7:node@c-6.me) 16728104 | 42 -> [ 774.000000] (7:node@c-6.me) 16728112 | 42 -> [ 774.000000] (7:node@c-6.me) 16728128 | 42 -> [ 774.000000] (7:node@c-6.me) 16728160 | 16728096 -> [ 774.000000] (7:node@c-6.me) 16728224 | 16728096 -> [ 774.000000] (7:node@c-6.me) 16728352 | 16728096 -> [ 774.000000] (7:node@c-6.me) 16728608 | 16728096 -> [ 774.000000] (7:node@c-6.me) 16729120 | 16728096 -> [ 774.000000] (7:node@c-6.me) 16730144 | 16728096 -> [ 774.000000] (7:node@c-6.me) 16732192 | 16728096 -> [ 774.000000] (7:node@c-6.me) 16736288 | 16728096 -> [ 774.000000] (7:node@c-6.me) 16744480 | 16728096 -> [ 774.000000] (7:node@c-6.me) 16760864 | 16728096 -> [ 774.000000] (7:node@c-6.me) 16416 | 16728096 -> [ 774.000000] (7:node@c-6.me) 81952 | 16728096 -> [ 774.000000] (7:node@c-6.me) 213024 | 16728096 -> [ 774.000000] (7:node@c-6.me) 475168 | 16728096 -> [ 774.000000] (7:node@c-6.me) 999456 | 16728096 -> [ 774.000000] (7:node@c-6.me) 2048032 | 16728096 -> [ 774.000000] (7:node@c-6.me) 4145184 | 16728096 -> [ 774.000000] (7:node@c-6.me) 8339488 | 16728096 -> [ 774.000000] (7:node@c-6.me) Predecessor: 16509405 -> [ 796.000000] (2:node@c-1.me) My finger table: -> [ 796.000000] (2:node@c-1.me) Start | Succ -> [ 796.000000] (2:node@c-1.me) 366681 | 533744 -> [ 796.000000] (2:node@c-1.me) 366682 | 1319738 -> [ 796.000000] (2:node@c-1.me) 366684 | 1319738 -> [ 796.000000] (2:node@c-1.me) 366688 | 533744 -> [ 796.000000] (2:node@c-1.me) 366696 | 533744 -> [ 796.000000] (2:node@c-1.me) 366712 | 533744 -> [ 796.000000] (2:node@c-1.me) 366744 | 366680 -> [ 796.000000] (2:node@c-1.me) 366808 | 366680 -> [ 796.000000] (2:node@c-1.me) 366936 | 366680 -> [ 796.000000] (2:node@c-1.me) 367192 | 366680 -> [ 796.000000] (2:node@c-1.me) 367704 | 366680 -> [ 796.000000] (2:node@c-1.me) 368728 | 366680 -> [ 796.000000] (2:node@c-1.me) 370776 | 366680 -> [ 796.000000] (2:node@c-1.me) 374872 | 366680 -> [ 796.000000] (2:node@c-1.me) 383064 | 366680 -> [ 796.000000] (2:node@c-1.me) 399448 | 366680 -> [ 796.000000] (2:node@c-1.me) 432216 | 366680 -> [ 796.000000] (2:node@c-1.me) 497752 | 366680 -> [ 796.000000] (2:node@c-1.me) 628824 | 366680 -> [ 796.000000] (2:node@c-1.me) 890968 | 366680 -> [ 796.000000] (2:node@c-1.me) 1415256 | 366680 -> [ 796.000000] (2:node@c-1.me) 2463832 | 366680 -> [ 796.000000] (2:node@c-1.me) 4560984 | 366680 -> [ 796.000000] (2:node@c-1.me) 8755288 | 366680 -> [ 796.000000] (2:node@c-1.me) Predecessor: 42 -> [ 808.000000] (9:node@c-8.me) My finger table: -> [ 808.000000] (9:node@c-8.me) Start | Succ -> [ 808.000000] (9:node@c-8.me) 6518809 | 10004760 -> [ 808.000000] (9:node@c-8.me) 6518810 | 16728096 -> [ 808.000000] (9:node@c-8.me) 6518812 | 10004760 -> [ 808.000000] (9:node@c-8.me) 6518816 | 10004760 -> [ 808.000000] (9:node@c-8.me) 6518824 | 10004760 -> [ 808.000000] (9:node@c-8.me) 6518840 | 10004760 -> [ 808.000000] (9:node@c-8.me) 6518872 | 6518808 -> [ 808.000000] (9:node@c-8.me) 6518936 | 6518808 -> [ 808.000000] (9:node@c-8.me) 6519064 | 6518808 -> [ 808.000000] (9:node@c-8.me) 6519320 | 6518808 -> [ 808.000000] (9:node@c-8.me) 6519832 | 6518808 -> [ 808.000000] (9:node@c-8.me) 6520856 | 6518808 -> [ 808.000000] (9:node@c-8.me) 6522904 | 6518808 -> [ 808.000000] (9:node@c-8.me) 6527000 | 6518808 -> [ 808.000000] (9:node@c-8.me) 6535192 | 6518808 -> [ 808.000000] (9:node@c-8.me) 6551576 | 6518808 -> [ 808.000000] (9:node@c-8.me) 6584344 | 6518808 -> [ 808.000000] (9:node@c-8.me) 6649880 | 6518808 -> [ 808.000000] (9:node@c-8.me) 6780952 | 6518808 -> [ 808.000000] (9:node@c-8.me) 7043096 | 6518808 -> [ 808.000000] (9:node@c-8.me) 7567384 | 6518808 -> [ 808.000000] (9:node@c-8.me) 8615960 | 6518808 -> [ 808.000000] (9:node@c-8.me) 10713112 | 6518808 -> [ 808.000000] (9:node@c-8.me) 14907416 | 6518808 -> [ 808.000000] (9:node@c-8.me) Predecessor: 2015253 -> [ 810.000000] (4:node@c-3.me) My finger table: -> [ 810.000000] (4:node@c-3.me) Start | Succ -> [ 810.000000] (4:node@c-3.me) 1319739 | 2015253 -> [ 810.000000] (4:node@c-3.me) 1319740 | 2015253 -> [ 810.000000] (4:node@c-3.me) 1319742 | 2015253 -> [ 810.000000] (4:node@c-3.me) 1319746 | 2015253 -> [ 810.000000] (4:node@c-3.me) 1319754 | 2015253 -> [ 810.000000] (4:node@c-3.me) 1319770 | 2015253 -> [ 810.000000] (4:node@c-3.me) 1319802 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1319866 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1319994 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1320250 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1320762 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1321786 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1323834 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1327930 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1336122 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1352506 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1385274 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1450810 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1581882 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1844026 | 1319738 -> [ 810.000000] (4:node@c-3.me) 2368314 | 1319738 -> [ 810.000000] (4:node@c-3.me) 3416890 | 1319738 -> [ 810.000000] (4:node@c-3.me) 5514042 | 1319738 -> [ 810.000000] (4:node@c-3.me) 9708346 | 1319738 -> [ 810.000000] (4:node@c-3.me) Predecessor: 533744 -> [ 831.000000] (10:node@c-9.me) My finger table: -> [ 831.000000] (10:node@c-9.me) Start | Succ -> [ 831.000000] (10:node@c-9.me) 2015254 | 6518808 -> [ 831.000000] (10:node@c-9.me) 2015255 | 6518808 -> [ 831.000000] (10:node@c-9.me) 2015257 | 6518808 -> [ 831.000000] (10:node@c-9.me) 2015261 | 6518808 -> [ 831.000000] (10:node@c-9.me) 2015269 | 6518808 -> [ 831.000000] (10:node@c-9.me) 2015285 | 6518808 -> [ 831.000000] (10:node@c-9.me) 2015317 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2015381 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2015509 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2015765 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2016277 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2017301 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2019349 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2023445 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2031637 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2048021 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2080789 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2146325 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2277397 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2539541 | 2015253 -> [ 831.000000] (10:node@c-9.me) 3063829 | 2015253 -> [ 831.000000] (10:node@c-9.me) 4112405 | 2015253 -> [ 831.000000] (10:node@c-9.me) 6209557 | 2015253 -> [ 831.000000] (10:node@c-9.me) 10403861 | 2015253 -> [ 831.000000] (10:node@c-9.me) Predecessor: 1319738 -> [ 859.000000] (1:node@c-0.me) My finger table: -> [ 859.000000] (1:node@c-0.me) Start | Succ -> [ 859.000000] (1:node@c-0.me) 43 | 366680 -> [ 859.000000] (1:node@c-0.me) 44 | 366680 -> [ 859.000000] (1:node@c-0.me) 46 | 366680 -> [ 859.000000] (1:node@c-0.me) 50 | 366680 -> [ 859.000000] (1:node@c-0.me) 58 | 366680 -> [ 859.000000] (1:node@c-0.me) 74 | 366680 -> [ 859.000000] (1:node@c-0.me) 106 | 366680 -> [ 859.000000] (1:node@c-0.me) 170 | 42 -> [ 859.000000] (1:node@c-0.me) 298 | 42 -> [ 859.000000] (1:node@c-0.me) 554 | 42 -> [ 859.000000] (1:node@c-0.me) 1066 | 42 -> [ 859.000000] (1:node@c-0.me) 2090 | 42 -> [ 859.000000] (1:node@c-0.me) 4138 | 42 -> [ 859.000000] (1:node@c-0.me) 8234 | 42 -> [ 859.000000] (1:node@c-0.me) 16426 | 42 -> [ 859.000000] (1:node@c-0.me) 32810 | 42 -> [ 859.000000] (1:node@c-0.me) 65578 | 42 -> [ 859.000000] (1:node@c-0.me) 131114 | 42 -> [ 859.000000] (1:node@c-0.me) 262186 | 42 -> [ 859.000000] (1:node@c-0.me) 524330 | 42 -> [ 859.000000] (1:node@c-0.me) 1048618 | 42 -> [ 859.000000] (1:node@c-0.me) 2097194 | 42 -> [ 859.000000] (1:node@c-0.me) 4194346 | 42 -> [ 859.000000] (1:node@c-0.me) 8388650 | 42 -> [ 859.000000] (1:node@c-0.me) Predecessor: 16728096 -> [ 873.000000] (5:node@c-4.me) My finger table: -> [ 873.000000] (5:node@c-4.me) Start | Succ -> [ 873.000000] (5:node@c-4.me) 16509406 | 16728096 -> [ 873.000000] (5:node@c-4.me) 16509407 | 16728096 -> [ 873.000000] (5:node@c-4.me) 16509409 | 16728096 -> [ 873.000000] (5:node@c-4.me) 16509413 | 16728096 -> [ 873.000000] (5:node@c-4.me) 16509421 | 16728096 -> [ 873.000000] (5:node@c-4.me) 16509437 | 16728096 -> [ 873.000000] (5:node@c-4.me) 16509469 | 16728096 -> [ 873.000000] (5:node@c-4.me) 16509533 | 16509405 -> [ 873.000000] (5:node@c-4.me) 16509661 | 16509405 -> [ 873.000000] (5:node@c-4.me) 16509917 | 16509405 -> [ 873.000000] (5:node@c-4.me) 16510429 | 16509405 -> [ 873.000000] (5:node@c-4.me) 16511453 | 16509405 -> [ 873.000000] (5:node@c-4.me) 16513501 | 16509405 -> [ 873.000000] (5:node@c-4.me) 16517597 | 16509405 -> [ 873.000000] (5:node@c-4.me) 16525789 | 16509405 -> [ 873.000000] (5:node@c-4.me) 16542173 | 16509405 -> [ 873.000000] (5:node@c-4.me) 16574941 | 16509405 -> [ 873.000000] (5:node@c-4.me) 16640477 | 16509405 -> [ 873.000000] (5:node@c-4.me) 16771549 | 16509405 -> [ 873.000000] (5:node@c-4.me) 256477 | 16509405 -> [ 873.000000] (5:node@c-4.me) 780765 | 16509405 -> [ 873.000000] (5:node@c-4.me) 1829341 | 16509405 -> [ 873.000000] (5:node@c-4.me) 3926493 | 16509405 -> [ 873.000000] (5:node@c-4.me) 8120797 | 16509405 -> [ 873.000000] (5:node@c-4.me) Predecessor: 10874876 -> [ 893.000000] (3:node@c-2.me) My finger table: -> [ 893.000000] (3:node@c-2.me) Start | Succ -> [ 893.000000] (3:node@c-2.me) 533745 | 1319738 -> [ 893.000000] (3:node@c-2.me) 533746 | 10004760 -> [ 893.000000] (3:node@c-2.me) 533748 | 10004760 -> [ 893.000000] (3:node@c-2.me) 533752 | 1319738 -> [ 893.000000] (3:node@c-2.me) 533760 | 1319738 -> [ 893.000000] (3:node@c-2.me) 533776 | 1319738 -> [ 893.000000] (3:node@c-2.me) 533808 | 1319738 -> [ 893.000000] (3:node@c-2.me) 533872 | 533744 -> [ 893.000000] (3:node@c-2.me) 534000 | 533744 -> [ 893.000000] (3:node@c-2.me) 534256 | 533744 -> [ 893.000000] (3:node@c-2.me) 534768 | 533744 -> [ 893.000000] (3:node@c-2.me) 535792 | 533744 -> [ 893.000000] (3:node@c-2.me) 537840 | 533744 -> [ 893.000000] (3:node@c-2.me) 541936 | 533744 -> [ 893.000000] (3:node@c-2.me) 550128 | 533744 -> [ 893.000000] (3:node@c-2.me) 566512 | 533744 -> [ 893.000000] (3:node@c-2.me) 599280 | 533744 -> [ 893.000000] (3:node@c-2.me) 664816 | 533744 -> [ 893.000000] (3:node@c-2.me) 795888 | 533744 -> [ 893.000000] (3:node@c-2.me) 1058032 | 533744 -> [ 893.000000] (3:node@c-2.me) 1582320 | 533744 -> [ 893.000000] (3:node@c-2.me) 2630896 | 533744 -> [ 893.000000] (3:node@c-2.me) 4728048 | 533744 -> [ 893.000000] (3:node@c-2.me) 8922352 | 533744 -> [ 893.000000] (3:node@c-2.me) Predecessor: 366680 -> [ 896.000000] (7:node@c-6.me) My finger table: -> [ 896.000000] (7:node@c-6.me) Start | Succ -> [ 896.000000] (7:node@c-6.me) 16728097 | 42 -> [ 896.000000] (7:node@c-6.me) 16728098 | 42 -> [ 896.000000] (7:node@c-6.me) 16728100 | 42 -> [ 896.000000] (7:node@c-6.me) 16728104 | 42 -> [ 896.000000] (7:node@c-6.me) 16728112 | 42 -> [ 896.000000] (7:node@c-6.me) 16728128 | 42 -> [ 896.000000] (7:node@c-6.me) 16728160 | 42 -> [ 896.000000] (7:node@c-6.me) 16728224 | 16728096 -> [ 896.000000] (7:node@c-6.me) 16728352 | 16728096 -> [ 896.000000] (7:node@c-6.me) 16728608 | 16728096 -> [ 896.000000] (7:node@c-6.me) 16729120 | 16728096 -> [ 896.000000] (7:node@c-6.me) 16730144 | 16728096 -> [ 896.000000] (7:node@c-6.me) 16732192 | 16728096 -> [ 896.000000] (7:node@c-6.me) 16736288 | 16728096 -> [ 896.000000] (7:node@c-6.me) 16744480 | 16728096 -> [ 896.000000] (7:node@c-6.me) 16760864 | 16728096 -> [ 896.000000] (7:node@c-6.me) 16416 | 16728096 -> [ 896.000000] (7:node@c-6.me) 81952 | 16728096 -> [ 896.000000] (7:node@c-6.me) 213024 | 16728096 -> [ 896.000000] (7:node@c-6.me) 475168 | 16728096 -> [ 896.000000] (7:node@c-6.me) 999456 | 16728096 -> [ 896.000000] (7:node@c-6.me) 2048032 | 16728096 -> [ 896.000000] (7:node@c-6.me) 4145184 | 16728096 -> [ 896.000000] (7:node@c-6.me) 8339488 | 16728096 -> [ 896.000000] (7:node@c-6.me) Predecessor: 16509405 -> [ 899.000000] (6:node@c-5.me) My finger table: -> [ 899.000000] (6:node@c-5.me) Start | Succ -> [ 899.000000] (6:node@c-5.me) 10874877 | 16509405 -> [ 899.000000] (6:node@c-5.me) 10874878 | 533744 -> [ 899.000000] (6:node@c-5.me) 10874880 | 533744 -> [ 899.000000] (6:node@c-5.me) 10874884 | 533744 -> [ 899.000000] (6:node@c-5.me) 10874892 | 16728096 -> [ 899.000000] (6:node@c-5.me) 10874908 | 16509405 -> [ 899.000000] (6:node@c-5.me) 10874940 | 16509405 -> [ 899.000000] (6:node@c-5.me) 10875004 | 10874876 -> [ 899.000000] (6:node@c-5.me) 10875132 | 10874876 -> [ 899.000000] (6:node@c-5.me) 10875388 | 10874876 -> [ 899.000000] (6:node@c-5.me) 10875900 | 10874876 -> [ 899.000000] (6:node@c-5.me) 10876924 | 10874876 -> [ 899.000000] (6:node@c-5.me) 10878972 | 10874876 -> [ 899.000000] (6:node@c-5.me) 10883068 | 10874876 -> [ 899.000000] (6:node@c-5.me) 10891260 | 10874876 -> [ 899.000000] (6:node@c-5.me) 10907644 | 10874876 -> [ 899.000000] (6:node@c-5.me) 10940412 | 10874876 -> [ 899.000000] (6:node@c-5.me) 11005948 | 10874876 -> [ 899.000000] (6:node@c-5.me) 11137020 | 10874876 -> [ 899.000000] (6:node@c-5.me) 11399164 | 10874876 -> [ 899.000000] (6:node@c-5.me) 11923452 | 10874876 -> [ 899.000000] (6:node@c-5.me) 12972028 | 10874876 -> [ 899.000000] (6:node@c-5.me) 15069180 | 10874876 -> [ 899.000000] (6:node@c-5.me) 2486268 | 10874876 -> [ 899.000000] (6:node@c-5.me) Predecessor: 10004760 -> [ 899.000000] (8:node@c-7.me) My finger table: -> [ 899.000000] (8:node@c-7.me) Start | Succ -> [ 899.000000] (8:node@c-7.me) 10004761 | 10874876 -> [ 899.000000] (8:node@c-7.me) 10004762 | 16509405 -> [ 899.000000] (8:node@c-7.me) 10004764 | 16509405 -> [ 899.000000] (8:node@c-7.me) 10004768 | 16509405 -> [ 899.000000] (8:node@c-7.me) 10004776 | 16509405 -> [ 899.000000] (8:node@c-7.me) 10004792 | 10874876 -> [ 899.000000] (8:node@c-7.me) 10004824 | 10874876 -> [ 899.000000] (8:node@c-7.me) 10004888 | 10004760 -> [ 899.000000] (8:node@c-7.me) 10005016 | 10004760 -> [ 899.000000] (8:node@c-7.me) 10005272 | 10004760 -> [ 899.000000] (8:node@c-7.me) 10005784 | 10004760 -> [ 899.000000] (8:node@c-7.me) 10006808 | 10004760 -> [ 899.000000] (8:node@c-7.me) 10008856 | 10004760 -> [ 899.000000] (8:node@c-7.me) 10012952 | 10004760 -> [ 899.000000] (8:node@c-7.me) 10021144 | 10004760 -> [ 899.000000] (8:node@c-7.me) 10037528 | 10004760 -> [ 899.000000] (8:node@c-7.me) 10070296 | 10004760 -> [ 899.000000] (8:node@c-7.me) 10135832 | 10004760 -> [ 899.000000] (8:node@c-7.me) 10266904 | 10004760 -> [ 899.000000] (8:node@c-7.me) 10529048 | 10004760 -> [ 899.000000] (8:node@c-7.me) 11053336 | 10004760 -> [ 899.000000] (8:node@c-7.me) 12101912 | 10004760 -> [ 899.000000] (8:node@c-7.me) 14199064 | 10004760 -> [ 899.000000] (8:node@c-7.me) 1616152 | 10004760 -> [ 899.000000] (8:node@c-7.me) Predecessor: 6518808 -> [ 921.000000] (2:node@c-1.me) My finger table: -> [ 921.000000] (2:node@c-1.me) Start | Succ -> [ 921.000000] (2:node@c-1.me) 366681 | 533744 -> [ 921.000000] (2:node@c-1.me) 366682 | 1319738 -> [ 921.000000] (2:node@c-1.me) 366684 | 1319738 -> [ 921.000000] (2:node@c-1.me) 366688 | 533744 -> [ 921.000000] (2:node@c-1.me) 366696 | 533744 -> [ 921.000000] (2:node@c-1.me) 366712 | 533744 -> [ 921.000000] (2:node@c-1.me) 366744 | 533744 -> [ 921.000000] (2:node@c-1.me) 366808 | 366680 -> [ 921.000000] (2:node@c-1.me) 366936 | 366680 -> [ 921.000000] (2:node@c-1.me) 367192 | 366680 -> [ 921.000000] (2:node@c-1.me) 367704 | 366680 -> [ 921.000000] (2:node@c-1.me) 368728 | 366680 -> [ 921.000000] (2:node@c-1.me) 370776 | 366680 -> [ 921.000000] (2:node@c-1.me) 374872 | 366680 -> [ 921.000000] (2:node@c-1.me) 383064 | 366680 -> [ 921.000000] (2:node@c-1.me) 399448 | 366680 -> [ 921.000000] (2:node@c-1.me) 432216 | 366680 -> [ 921.000000] (2:node@c-1.me) 497752 | 366680 -> [ 921.000000] (2:node@c-1.me) 628824 | 366680 -> [ 921.000000] (2:node@c-1.me) 890968 | 366680 -> [ 921.000000] (2:node@c-1.me) 1415256 | 366680 -> [ 921.000000] (2:node@c-1.me) 2463832 | 366680 -> [ 921.000000] (2:node@c-1.me) 4560984 | 366680 -> [ 921.000000] (2:node@c-1.me) 8755288 | 366680 -> [ 921.000000] (2:node@c-1.me) Predecessor: 42 -> [ 928.000000] (9:node@c-8.me) My finger table: -> [ 928.000000] (9:node@c-8.me) Start | Succ -> [ 928.000000] (9:node@c-8.me) 6518809 | 10004760 -> [ 928.000000] (9:node@c-8.me) 6518810 | 16728096 -> [ 928.000000] (9:node@c-8.me) 6518812 | 10004760 -> [ 928.000000] (9:node@c-8.me) 6518816 | 10004760 -> [ 928.000000] (9:node@c-8.me) 6518824 | 10004760 -> [ 928.000000] (9:node@c-8.me) 6518840 | 10004760 -> [ 928.000000] (9:node@c-8.me) 6518872 | 10004760 -> [ 928.000000] (9:node@c-8.me) 6518936 | 6518808 -> [ 928.000000] (9:node@c-8.me) 6519064 | 6518808 -> [ 928.000000] (9:node@c-8.me) 6519320 | 6518808 -> [ 928.000000] (9:node@c-8.me) 6519832 | 6518808 -> [ 928.000000] (9:node@c-8.me) 6520856 | 6518808 -> [ 928.000000] (9:node@c-8.me) 6522904 | 6518808 -> [ 928.000000] (9:node@c-8.me) 6527000 | 6518808 -> [ 928.000000] (9:node@c-8.me) 6535192 | 6518808 -> [ 928.000000] (9:node@c-8.me) 6551576 | 6518808 -> [ 928.000000] (9:node@c-8.me) 6584344 | 6518808 -> [ 928.000000] (9:node@c-8.me) 6649880 | 6518808 -> [ 928.000000] (9:node@c-8.me) 6780952 | 6518808 -> [ 928.000000] (9:node@c-8.me) 7043096 | 6518808 -> [ 928.000000] (9:node@c-8.me) 7567384 | 6518808 -> [ 928.000000] (9:node@c-8.me) 8615960 | 6518808 -> [ 928.000000] (9:node@c-8.me) 10713112 | 6518808 -> [ 928.000000] (9:node@c-8.me) 14907416 | 6518808 -> [ 928.000000] (9:node@c-8.me) Predecessor: 2015253 -> [ 930.000000] (4:node@c-3.me) My finger table: -> [ 930.000000] (4:node@c-3.me) Start | Succ -> [ 930.000000] (4:node@c-3.me) 1319739 | 2015253 -> [ 930.000000] (4:node@c-3.me) 1319740 | 2015253 -> [ 930.000000] (4:node@c-3.me) 1319742 | 2015253 -> [ 930.000000] (4:node@c-3.me) 1319746 | 2015253 -> [ 930.000000] (4:node@c-3.me) 1319754 | 2015253 -> [ 930.000000] (4:node@c-3.me) 1319770 | 2015253 -> [ 930.000000] (4:node@c-3.me) 1319802 | 2015253 -> [ 930.000000] (4:node@c-3.me) 1319866 | 1319738 -> [ 930.000000] (4:node@c-3.me) 1319994 | 1319738 -> [ 930.000000] (4:node@c-3.me) 1320250 | 1319738 -> [ 930.000000] (4:node@c-3.me) 1320762 | 1319738 -> [ 930.000000] (4:node@c-3.me) 1321786 | 1319738 -> [ 930.000000] (4:node@c-3.me) 1323834 | 1319738 -> [ 930.000000] (4:node@c-3.me) 1327930 | 1319738 -> [ 930.000000] (4:node@c-3.me) 1336122 | 1319738 -> [ 930.000000] (4:node@c-3.me) 1352506 | 1319738 -> [ 930.000000] (4:node@c-3.me) 1385274 | 1319738 -> [ 930.000000] (4:node@c-3.me) 1450810 | 1319738 -> [ 930.000000] (4:node@c-3.me) 1581882 | 1319738 -> [ 930.000000] (4:node@c-3.me) 1844026 | 1319738 -> [ 930.000000] (4:node@c-3.me) 2368314 | 1319738 -> [ 930.000000] (4:node@c-3.me) 3416890 | 1319738 -> [ 930.000000] (4:node@c-3.me) 5514042 | 1319738 -> [ 930.000000] (4:node@c-3.me) 9708346 | 1319738 -> [ 930.000000] (4:node@c-3.me) Predecessor: 533744 -> [ 962.000000] (10:node@c-9.me) My finger table: -> [ 962.000000] (10:node@c-9.me) Start | Succ -> [ 962.000000] (10:node@c-9.me) 2015254 | 6518808 -> [ 962.000000] (10:node@c-9.me) 2015255 | 6518808 -> [ 962.000000] (10:node@c-9.me) 2015257 | 6518808 -> [ 962.000000] (10:node@c-9.me) 2015261 | 6518808 -> [ 962.000000] (10:node@c-9.me) 2015269 | 6518808 -> [ 962.000000] (10:node@c-9.me) 2015285 | 6518808 -> [ 962.000000] (10:node@c-9.me) 2015317 | 6518808 -> [ 962.000000] (10:node@c-9.me) 2015381 | 2015253 -> [ 962.000000] (10:node@c-9.me) 2015509 | 2015253 -> [ 962.000000] (10:node@c-9.me) 2015765 | 2015253 -> [ 962.000000] (10:node@c-9.me) 2016277 | 2015253 -> [ 962.000000] (10:node@c-9.me) 2017301 | 2015253 -> [ 962.000000] (10:node@c-9.me) 2019349 | 2015253 -> [ 962.000000] (10:node@c-9.me) 2023445 | 2015253 -> [ 962.000000] (10:node@c-9.me) 2031637 | 2015253 -> [ 962.000000] (10:node@c-9.me) 2048021 | 2015253 -> [ 962.000000] (10:node@c-9.me) 2080789 | 2015253 -> [ 962.000000] (10:node@c-9.me) 2146325 | 2015253 -> [ 962.000000] (10:node@c-9.me) 2277397 | 2015253 -> [ 962.000000] (10:node@c-9.me) 2539541 | 2015253 -> [ 962.000000] (10:node@c-9.me) 3063829 | 2015253 -> [ 962.000000] (10:node@c-9.me) 4112405 | 2015253 -> [ 962.000000] (10:node@c-9.me) 6209557 | 2015253 -> [ 962.000000] (10:node@c-9.me) 10403861 | 2015253 -> [ 962.000000] (10:node@c-9.me) Predecessor: 1319738 -> [ 982.000000] (1:node@c-0.me) My finger table: -> [ 982.000000] (1:node@c-0.me) Start | Succ -> [ 982.000000] (1:node@c-0.me) 43 | 366680 -> [ 982.000000] (1:node@c-0.me) 44 | 366680 -> [ 982.000000] (1:node@c-0.me) 46 | 366680 -> [ 982.000000] (1:node@c-0.me) 50 | 366680 -> [ 982.000000] (1:node@c-0.me) 58 | 366680 -> [ 982.000000] (1:node@c-0.me) 74 | 366680 -> [ 982.000000] (1:node@c-0.me) 106 | 366680 -> [ 982.000000] (1:node@c-0.me) 170 | 366680 -> [ 982.000000] (1:node@c-0.me) 298 | 42 -> [ 982.000000] (1:node@c-0.me) 554 | 42 -> [ 982.000000] (1:node@c-0.me) 1066 | 42 -> [ 982.000000] (1:node@c-0.me) 2090 | 42 -> [ 982.000000] (1:node@c-0.me) 4138 | 42 -> [ 982.000000] (1:node@c-0.me) 8234 | 42 -> [ 982.000000] (1:node@c-0.me) 16426 | 42 -> [ 982.000000] (1:node@c-0.me) 32810 | 42 -> [ 982.000000] (1:node@c-0.me) 65578 | 42 -> [ 982.000000] (1:node@c-0.me) 131114 | 42 -> [ 982.000000] (1:node@c-0.me) 262186 | 42 -> [ 982.000000] (1:node@c-0.me) 524330 | 42 -> [ 982.000000] (1:node@c-0.me) 1048618 | 42 -> [ 982.000000] (1:node@c-0.me) 2097194 | 42 -> [ 982.000000] (1:node@c-0.me) 4194346 | 42 -> [ 982.000000] (1:node@c-0.me) 8388650 | 42 -> [ 982.000000] (1:node@c-0.me) Predecessor: 16728096 -> [1154.000000] (0:@) Messages created: 2049 -> [1154.000000] (0:@) Simulated time: 1154 +> [ 174.000000] (1:node@c-0.me) My finger table: +> [ 174.000000] (1:node@c-0.me) Start | Succ +> [ 174.000000] (1:node@c-0.me) 43 | 1319738 +> [ 174.000000] (1:node@c-0.me) 44 | 42 +> [ 174.000000] (1:node@c-0.me) 46 | 42 +> [ 174.000000] (1:node@c-0.me) 50 | 42 +> [ 174.000000] (1:node@c-0.me) 58 | 42 +> [ 174.000000] (1:node@c-0.me) 74 | 42 +> [ 174.000000] (1:node@c-0.me) 106 | 42 +> [ 174.000000] (1:node@c-0.me) 170 | 42 +> [ 174.000000] (1:node@c-0.me) 298 | 42 +> [ 174.000000] (1:node@c-0.me) 554 | 42 +> [ 174.000000] (1:node@c-0.me) 1066 | 42 +> [ 174.000000] (1:node@c-0.me) 2090 | 42 +> [ 174.000000] (1:node@c-0.me) 4138 | 42 +> [ 174.000000] (1:node@c-0.me) 8234 | 42 +> [ 174.000000] (1:node@c-0.me) 16426 | 42 +> [ 174.000000] (1:node@c-0.me) 32810 | 42 +> [ 174.000000] (1:node@c-0.me) 65578 | 42 +> [ 174.000000] (1:node@c-0.me) 131114 | 42 +> [ 174.000000] (1:node@c-0.me) 262186 | 42 +> [ 174.000000] (1:node@c-0.me) 524330 | 42 +> [ 174.000000] (1:node@c-0.me) 1048618 | 42 +> [ 174.000000] (1:node@c-0.me) 2097194 | 42 +> [ 174.000000] (1:node@c-0.me) 4194346 | 42 +> [ 174.000000] (1:node@c-0.me) 8388650 | 42 +> [ 174.000000] (1:node@c-0.me) Predecessor: 16728096 +> [ 245.000000] (8:node@c-7.me) My finger table: +> [ 245.000000] (8:node@c-7.me) Start | Succ +> [ 245.000000] (8:node@c-7.me) 10004761 | 16509405 +> [ 245.000000] (8:node@c-7.me) 10004762 | 16509405 +> [ 245.000000] (8:node@c-7.me) 10004764 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10004768 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10004776 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10004792 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10004824 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10004888 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10005016 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10005272 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10005784 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10006808 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10008856 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10012952 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10021144 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10037528 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10070296 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10135832 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10266904 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10529048 | 10004760 +> [ 245.000000] (8:node@c-7.me) 11053336 | 10004760 +> [ 245.000000] (8:node@c-7.me) 12101912 | 10004760 +> [ 245.000000] (8:node@c-7.me) 14199064 | 10004760 +> [ 245.000000] (8:node@c-7.me) 1616152 | 10004760 +> [ 245.000000] (8:node@c-7.me) Predecessor: 533744 +> [ 246.000000] (3:node@c-2.me) My finger table: +> [ 246.000000] (3:node@c-2.me) Start | Succ +> [ 246.000000] (3:node@c-2.me) 533745 | 10004760 +> [ 246.000000] (3:node@c-2.me) 533746 | 10004760 +> [ 246.000000] (3:node@c-2.me) 533748 | 533744 +> [ 246.000000] (3:node@c-2.me) 533752 | 533744 +> [ 246.000000] (3:node@c-2.me) 533760 | 533744 +> [ 246.000000] (3:node@c-2.me) 533776 | 533744 +> [ 246.000000] (3:node@c-2.me) 533808 | 533744 +> [ 246.000000] (3:node@c-2.me) 533872 | 533744 +> [ 246.000000] (3:node@c-2.me) 534000 | 533744 +> [ 246.000000] (3:node@c-2.me) 534256 | 533744 +> [ 246.000000] (3:node@c-2.me) 534768 | 533744 +> [ 246.000000] (3:node@c-2.me) 535792 | 533744 +> [ 246.000000] (3:node@c-2.me) 537840 | 533744 +> [ 246.000000] (3:node@c-2.me) 541936 | 533744 +> [ 246.000000] (3:node@c-2.me) 550128 | 533744 +> [ 246.000000] (3:node@c-2.me) 566512 | 533744 +> [ 246.000000] (3:node@c-2.me) 599280 | 533744 +> [ 246.000000] (3:node@c-2.me) 664816 | 533744 +> [ 246.000000] (3:node@c-2.me) 795888 | 533744 +> [ 246.000000] (3:node@c-2.me) 1058032 | 533744 +> [ 246.000000] (3:node@c-2.me) 1582320 | 533744 +> [ 246.000000] (3:node@c-2.me) 2630896 | 533744 +> [ 246.000000] (3:node@c-2.me) 4728048 | 533744 +> [ 246.000000] (3:node@c-2.me) 8922352 | 533744 +> [ 246.000000] (3:node@c-2.me) Predecessor: 10874876 +> [ 246.000000] (5:node@c-4.me) My finger table: +> [ 246.000000] (5:node@c-4.me) Start | Succ +> [ 246.000000] (5:node@c-4.me) 16509406 | 366680 +> [ 246.000000] (5:node@c-4.me) 16509407 | 366680 +> [ 246.000000] (5:node@c-4.me) 16509409 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16509413 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16509421 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16509437 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16509469 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16509533 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16509661 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16509917 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16510429 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16511453 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16513501 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16517597 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16525789 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16542173 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16574941 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16640477 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16771549 | 16509405 +> [ 246.000000] (5:node@c-4.me) 256477 | 16509405 +> [ 246.000000] (5:node@c-4.me) 780765 | 16509405 +> [ 246.000000] (5:node@c-4.me) 1829341 | 16509405 +> [ 246.000000] (5:node@c-4.me) 3926493 | 16509405 +> [ 246.000000] (5:node@c-4.me) 8120797 | 16509405 +> [ 246.000000] (5:node@c-4.me) Predecessor: 10004760 +> [ 247.000000] (6:node@c-5.me) My finger table: +> [ 247.000000] (6:node@c-5.me) Start | Succ +> [ 247.000000] (6:node@c-5.me) 10874877 | 533744 +> [ 247.000000] (6:node@c-5.me) 10874878 | 533744 +> [ 247.000000] (6:node@c-5.me) 10874880 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10874884 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10874892 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10874908 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10874940 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10875004 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10875132 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10875388 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10875900 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10876924 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10878972 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10883068 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10891260 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10907644 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10940412 | 10874876 +> [ 247.000000] (6:node@c-5.me) 11005948 | 10874876 +> [ 247.000000] (6:node@c-5.me) 11137020 | 10874876 +> [ 247.000000] (6:node@c-5.me) 11399164 | 10874876 +> [ 247.000000] (6:node@c-5.me) 11923452 | 10874876 +> [ 247.000000] (6:node@c-5.me) 12972028 | 10874876 +> [ 247.000000] (6:node@c-5.me) 15069180 | 10874876 +> [ 247.000000] (6:node@c-5.me) 2486268 | 10874876 +> [ 247.000000] (6:node@c-5.me) Predecessor: -1 +> [ 247.000000] (7:node@c-6.me) My finger table: +> [ 247.000000] (7:node@c-6.me) Start | Succ +> [ 247.000000] (7:node@c-6.me) 16728097 | 42 +> [ 247.000000] (7:node@c-6.me) 16728098 | 42 +> [ 247.000000] (7:node@c-6.me) 16728100 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16728104 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16728112 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16728128 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16728160 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16728224 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16728352 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16728608 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16729120 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16730144 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16732192 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16736288 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16744480 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16760864 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16416 | 16728096 +> [ 247.000000] (7:node@c-6.me) 81952 | 16728096 +> [ 247.000000] (7:node@c-6.me) 213024 | 16728096 +> [ 247.000000] (7:node@c-6.me) 475168 | 16728096 +> [ 247.000000] (7:node@c-6.me) 999456 | 16728096 +> [ 247.000000] (7:node@c-6.me) 2048032 | 16728096 +> [ 247.000000] (7:node@c-6.me) 4145184 | 16728096 +> [ 247.000000] (7:node@c-6.me) 8339488 | 16728096 +> [ 247.000000] (7:node@c-6.me) Predecessor: 2015253 +> [ 253.000000] (1:node@c-0.me) My finger table: +> [ 253.000000] (1:node@c-0.me) Start | Succ +> [ 253.000000] (1:node@c-0.me) 43 | 1319738 +> [ 253.000000] (1:node@c-0.me) 44 | 1319738 +> [ 253.000000] (1:node@c-0.me) 46 | 42 +> [ 253.000000] (1:node@c-0.me) 50 | 42 +> [ 253.000000] (1:node@c-0.me) 58 | 42 +> [ 253.000000] (1:node@c-0.me) 74 | 42 +> [ 253.000000] (1:node@c-0.me) 106 | 42 +> [ 253.000000] (1:node@c-0.me) 170 | 42 +> [ 253.000000] (1:node@c-0.me) 298 | 42 +> [ 253.000000] (1:node@c-0.me) 554 | 42 +> [ 253.000000] (1:node@c-0.me) 1066 | 42 +> [ 253.000000] (1:node@c-0.me) 2090 | 42 +> [ 253.000000] (1:node@c-0.me) 4138 | 42 +> [ 253.000000] (1:node@c-0.me) 8234 | 42 +> [ 253.000000] (1:node@c-0.me) 16426 | 42 +> [ 253.000000] (1:node@c-0.me) 32810 | 42 +> [ 253.000000] (1:node@c-0.me) 65578 | 42 +> [ 253.000000] (1:node@c-0.me) 131114 | 42 +> [ 253.000000] (1:node@c-0.me) 262186 | 42 +> [ 253.000000] (1:node@c-0.me) 524330 | 42 +> [ 253.000000] (1:node@c-0.me) 1048618 | 42 +> [ 253.000000] (1:node@c-0.me) 2097194 | 42 +> [ 253.000000] (1:node@c-0.me) 4194346 | 42 +> [ 253.000000] (1:node@c-0.me) 8388650 | 42 +> [ 253.000000] (1:node@c-0.me) Predecessor: 16728096 +> [ 255.000000] (2:node@c-1.me) My finger table: +> [ 255.000000] (2:node@c-1.me) Start | Succ +> [ 255.000000] (2:node@c-1.me) 366681 | 1319738 +> [ 255.000000] (2:node@c-1.me) 366682 | 1319738 +> [ 255.000000] (2:node@c-1.me) 366684 | 366680 +> [ 255.000000] (2:node@c-1.me) 366688 | 366680 +> [ 255.000000] (2:node@c-1.me) 366696 | 366680 +> [ 255.000000] (2:node@c-1.me) 366712 | 366680 +> [ 255.000000] (2:node@c-1.me) 366744 | 366680 +> [ 255.000000] (2:node@c-1.me) 366808 | 366680 +> [ 255.000000] (2:node@c-1.me) 366936 | 366680 +> [ 255.000000] (2:node@c-1.me) 367192 | 366680 +> [ 255.000000] (2:node@c-1.me) 367704 | 366680 +> [ 255.000000] (2:node@c-1.me) 368728 | 366680 +> [ 255.000000] (2:node@c-1.me) 370776 | 366680 +> [ 255.000000] (2:node@c-1.me) 374872 | 366680 +> [ 255.000000] (2:node@c-1.me) 383064 | 366680 +> [ 255.000000] (2:node@c-1.me) 399448 | 366680 +> [ 255.000000] (2:node@c-1.me) 432216 | 366680 +> [ 255.000000] (2:node@c-1.me) 497752 | 366680 +> [ 255.000000] (2:node@c-1.me) 628824 | 366680 +> [ 255.000000] (2:node@c-1.me) 890968 | 366680 +> [ 255.000000] (2:node@c-1.me) 1415256 | 366680 +> [ 255.000000] (2:node@c-1.me) 2463832 | 366680 +> [ 255.000000] (2:node@c-1.me) 4560984 | 366680 +> [ 255.000000] (2:node@c-1.me) 8755288 | 366680 +> [ 255.000000] (2:node@c-1.me) Predecessor: 16509405 +> [ 260.000000] (4:node@c-3.me) My finger table: +> [ 260.000000] (4:node@c-3.me) Start | Succ +> [ 260.000000] (4:node@c-3.me) 1319739 | 6518808 +> [ 260.000000] (4:node@c-3.me) 1319740 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1319742 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1319746 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1319754 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1319770 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1319802 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1319866 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1319994 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1320250 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1320762 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1321786 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1323834 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1327930 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1336122 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1352506 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1385274 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1450810 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1581882 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1844026 | 1319738 +> [ 260.000000] (4:node@c-3.me) 2368314 | 1319738 +> [ 260.000000] (4:node@c-3.me) 3416890 | 1319738 +> [ 260.000000] (4:node@c-3.me) 5514042 | 1319738 +> [ 260.000000] (4:node@c-3.me) 9708346 | 1319738 +> [ 260.000000] (4:node@c-3.me) Predecessor: 366680 +> [ 292.000000] (7:node@c-6.me) My finger table: +> [ 292.000000] (7:node@c-6.me) Start | Succ +> [ 292.000000] (7:node@c-6.me) 16728097 | 42 +> [ 292.000000] (7:node@c-6.me) 16728098 | 42 +> [ 292.000000] (7:node@c-6.me) 16728100 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16728104 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16728112 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16728128 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16728160 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16728224 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16728352 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16728608 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16729120 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16730144 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16732192 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16736288 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16744480 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16760864 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16416 | 16728096 +> [ 292.000000] (7:node@c-6.me) 81952 | 16728096 +> [ 292.000000] (7:node@c-6.me) 213024 | 16728096 +> [ 292.000000] (7:node@c-6.me) 475168 | 16728096 +> [ 292.000000] (7:node@c-6.me) 999456 | 16728096 +> [ 292.000000] (7:node@c-6.me) 2048032 | 16728096 +> [ 292.000000] (7:node@c-6.me) 4145184 | 16728096 +> [ 292.000000] (7:node@c-6.me) 8339488 | 16728096 +> [ 292.000000] (7:node@c-6.me) Predecessor: 6518808 +> [ 300.000000] (9:node@c-8.me) My finger table: +> [ 300.000000] (9:node@c-8.me) Start | Succ +> [ 300.000000] (9:node@c-8.me) 6518809 | 16728096 +> [ 300.000000] (9:node@c-8.me) 6518810 | 16728096 +> [ 300.000000] (9:node@c-8.me) 6518812 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6518816 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6518824 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6518840 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6518872 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6518936 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6519064 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6519320 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6519832 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6520856 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6522904 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6527000 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6535192 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6551576 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6584344 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6649880 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6780952 | 6518808 +> [ 300.000000] (9:node@c-8.me) 7043096 | 6518808 +> [ 300.000000] (9:node@c-8.me) 7567384 | 6518808 +> [ 300.000000] (9:node@c-8.me) 8615960 | 6518808 +> [ 300.000000] (9:node@c-8.me) 10713112 | 6518808 +> [ 300.000000] (9:node@c-8.me) 14907416 | 6518808 +> [ 300.000000] (9:node@c-8.me) Predecessor: 1319738 +> [ 301.000000] (10:node@c-9.me) My finger table: +> [ 301.000000] (10:node@c-9.me) Start | Succ +> [ 301.000000] (10:node@c-9.me) 2015254 | 16728096 +> [ 301.000000] (10:node@c-9.me) 2015255 | 16728096 +> [ 301.000000] (10:node@c-9.me) 2015257 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2015261 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2015269 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2015285 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2015317 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2015381 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2015509 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2015765 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2016277 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2017301 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2019349 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2023445 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2031637 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2048021 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2080789 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2146325 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2277397 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2539541 | 2015253 +> [ 301.000000] (10:node@c-9.me) 3063829 | 2015253 +> [ 301.000000] (10:node@c-9.me) 4112405 | 2015253 +> [ 301.000000] (10:node@c-9.me) 6209557 | 2015253 +> [ 301.000000] (10:node@c-9.me) 10403861 | 2015253 +> [ 301.000000] (10:node@c-9.me) Predecessor: -1 +> [ 302.000000] (2:node@c-1.me) My finger table: +> [ 302.000000] (2:node@c-1.me) Start | Succ +> [ 302.000000] (2:node@c-1.me) 366681 | 1319738 +> [ 302.000000] (2:node@c-1.me) 366682 | 1319738 +> [ 302.000000] (2:node@c-1.me) 366684 | 366680 +> [ 302.000000] (2:node@c-1.me) 366688 | 366680 +> [ 302.000000] (2:node@c-1.me) 366696 | 366680 +> [ 302.000000] (2:node@c-1.me) 366712 | 366680 +> [ 302.000000] (2:node@c-1.me) 366744 | 366680 +> [ 302.000000] (2:node@c-1.me) 366808 | 366680 +> [ 302.000000] (2:node@c-1.me) 366936 | 366680 +> [ 302.000000] (2:node@c-1.me) 367192 | 366680 +> [ 302.000000] (2:node@c-1.me) 367704 | 366680 +> [ 302.000000] (2:node@c-1.me) 368728 | 366680 +> [ 302.000000] (2:node@c-1.me) 370776 | 366680 +> [ 302.000000] (2:node@c-1.me) 374872 | 366680 +> [ 302.000000] (2:node@c-1.me) 383064 | 366680 +> [ 302.000000] (2:node@c-1.me) 399448 | 366680 +> [ 302.000000] (2:node@c-1.me) 432216 | 366680 +> [ 302.000000] (2:node@c-1.me) 497752 | 366680 +> [ 302.000000] (2:node@c-1.me) 628824 | 366680 +> [ 302.000000] (2:node@c-1.me) 890968 | 366680 +> [ 302.000000] (2:node@c-1.me) 1415256 | 366680 +> [ 302.000000] (2:node@c-1.me) 2463832 | 366680 +> [ 302.000000] (2:node@c-1.me) 4560984 | 366680 +> [ 302.000000] (2:node@c-1.me) 8755288 | 366680 +> [ 302.000000] (2:node@c-1.me) Predecessor: 42 +> [ 306.000000] (4:node@c-3.me) My finger table: +> [ 306.000000] (4:node@c-3.me) Start | Succ +> [ 306.000000] (4:node@c-3.me) 1319739 | 6518808 +> [ 306.000000] (4:node@c-3.me) 1319740 | 6518808 +> [ 306.000000] (4:node@c-3.me) 1319742 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1319746 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1319754 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1319770 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1319802 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1319866 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1319994 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1320250 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1320762 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1321786 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1323834 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1327930 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1336122 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1352506 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1385274 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1450810 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1581882 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1844026 | 1319738 +> [ 306.000000] (4:node@c-3.me) 2368314 | 1319738 +> [ 306.000000] (4:node@c-3.me) 3416890 | 1319738 +> [ 306.000000] (4:node@c-3.me) 5514042 | 1319738 +> [ 306.000000] (4:node@c-3.me) 9708346 | 1319738 +> [ 306.000000] (4:node@c-3.me) Predecessor: 366680 +> [ 339.000000] (9:node@c-8.me) My finger table: +> [ 339.000000] (9:node@c-8.me) Start | Succ +> [ 339.000000] (9:node@c-8.me) 6518809 | 16728096 +> [ 339.000000] (9:node@c-8.me) 6518810 | 16728096 +> [ 339.000000] (9:node@c-8.me) 6518812 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6518816 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6518824 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6518840 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6518872 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6518936 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6519064 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6519320 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6519832 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6520856 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6522904 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6527000 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6535192 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6551576 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6584344 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6649880 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6780952 | 6518808 +> [ 339.000000] (9:node@c-8.me) 7043096 | 6518808 +> [ 339.000000] (9:node@c-8.me) 7567384 | 6518808 +> [ 339.000000] (9:node@c-8.me) 8615960 | 6518808 +> [ 339.000000] (9:node@c-8.me) 10713112 | 6518808 +> [ 339.000000] (9:node@c-8.me) 14907416 | 6518808 +> [ 339.000000] (9:node@c-8.me) Predecessor: 2015253 +> [ 367.000000] (6:node@c-5.me) My finger table: +> [ 367.000000] (6:node@c-5.me) Start | Succ +> [ 367.000000] (6:node@c-5.me) 10874877 | 533744 +> [ 367.000000] (6:node@c-5.me) 10874878 | 533744 +> [ 367.000000] (6:node@c-5.me) 10874880 | 533744 +> [ 367.000000] (6:node@c-5.me) 10874884 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10874892 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10874908 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10874940 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10875004 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10875132 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10875388 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10875900 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10876924 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10878972 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10883068 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10891260 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10907644 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10940412 | 10874876 +> [ 367.000000] (6:node@c-5.me) 11005948 | 10874876 +> [ 367.000000] (6:node@c-5.me) 11137020 | 10874876 +> [ 367.000000] (6:node@c-5.me) 11399164 | 10874876 +> [ 367.000000] (6:node@c-5.me) 11923452 | 10874876 +> [ 367.000000] (6:node@c-5.me) 12972028 | 10874876 +> [ 367.000000] (6:node@c-5.me) 15069180 | 10874876 +> [ 367.000000] (6:node@c-5.me) 2486268 | 10874876 +> [ 367.000000] (6:node@c-5.me) Predecessor: -1 +> [ 368.000000] (3:node@c-2.me) My finger table: +> [ 368.000000] (3:node@c-2.me) Start | Succ +> [ 368.000000] (3:node@c-2.me) 533745 | 10004760 +> [ 368.000000] (3:node@c-2.me) 533746 | 10004760 +> [ 368.000000] (3:node@c-2.me) 533748 | 10004760 +> [ 368.000000] (3:node@c-2.me) 533752 | 533744 +> [ 368.000000] (3:node@c-2.me) 533760 | 533744 +> [ 368.000000] (3:node@c-2.me) 533776 | 533744 +> [ 368.000000] (3:node@c-2.me) 533808 | 533744 +> [ 368.000000] (3:node@c-2.me) 533872 | 533744 +> [ 368.000000] (3:node@c-2.me) 534000 | 533744 +> [ 368.000000] (3:node@c-2.me) 534256 | 533744 +> [ 368.000000] (3:node@c-2.me) 534768 | 533744 +> [ 368.000000] (3:node@c-2.me) 535792 | 533744 +> [ 368.000000] (3:node@c-2.me) 537840 | 533744 +> [ 368.000000] (3:node@c-2.me) 541936 | 533744 +> [ 368.000000] (3:node@c-2.me) 550128 | 533744 +> [ 368.000000] (3:node@c-2.me) 566512 | 533744 +> [ 368.000000] (3:node@c-2.me) 599280 | 533744 +> [ 368.000000] (3:node@c-2.me) 664816 | 533744 +> [ 368.000000] (3:node@c-2.me) 795888 | 533744 +> [ 368.000000] (3:node@c-2.me) 1058032 | 533744 +> [ 368.000000] (3:node@c-2.me) 1582320 | 533744 +> [ 368.000000] (3:node@c-2.me) 2630896 | 533744 +> [ 368.000000] (3:node@c-2.me) 4728048 | 533744 +> [ 368.000000] (3:node@c-2.me) 8922352 | 533744 +> [ 368.000000] (3:node@c-2.me) Predecessor: 10874876 +> [ 368.000000] (5:node@c-4.me) My finger table: +> [ 368.000000] (5:node@c-4.me) Start | Succ +> [ 368.000000] (5:node@c-4.me) 16509406 | 16728096 +> [ 368.000000] (5:node@c-4.me) 16509407 | 366680 +> [ 368.000000] (5:node@c-4.me) 16509409 | 16728096 +> [ 368.000000] (5:node@c-4.me) 16509413 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16509421 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16509437 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16509469 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16509533 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16509661 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16509917 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16510429 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16511453 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16513501 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16517597 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16525789 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16542173 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16574941 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16640477 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16771549 | 16509405 +> [ 368.000000] (5:node@c-4.me) 256477 | 16509405 +> [ 368.000000] (5:node@c-4.me) 780765 | 16509405 +> [ 368.000000] (5:node@c-4.me) 1829341 | 16509405 +> [ 368.000000] (5:node@c-4.me) 3926493 | 16509405 +> [ 368.000000] (5:node@c-4.me) 8120797 | 16509405 +> [ 368.000000] (5:node@c-4.me) Predecessor: 10004760 +> [ 370.000000] (8:node@c-7.me) My finger table: +> [ 370.000000] (8:node@c-7.me) Start | Succ +> [ 370.000000] (8:node@c-7.me) 10004761 | 16509405 +> [ 370.000000] (8:node@c-7.me) 10004762 | 16509405 +> [ 370.000000] (8:node@c-7.me) 10004764 | 16509405 +> [ 370.000000] (8:node@c-7.me) 10004768 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10004776 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10004792 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10004824 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10004888 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10005016 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10005272 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10005784 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10006808 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10008856 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10012952 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10021144 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10037528 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10070296 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10135832 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10266904 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10529048 | 10004760 +> [ 370.000000] (8:node@c-7.me) 11053336 | 10004760 +> [ 370.000000] (8:node@c-7.me) 12101912 | 10004760 +> [ 370.000000] (8:node@c-7.me) 14199064 | 10004760 +> [ 370.000000] (8:node@c-7.me) 1616152 | 10004760 +> [ 370.000000] (8:node@c-7.me) Predecessor: 533744 +> [ 373.000000] (7:node@c-6.me) My finger table: +> [ 373.000000] (7:node@c-6.me) Start | Succ +> [ 373.000000] (7:node@c-6.me) 16728097 | 42 +> [ 373.000000] (7:node@c-6.me) 16728098 | 42 +> [ 373.000000] (7:node@c-6.me) 16728100 | 42 +> [ 373.000000] (7:node@c-6.me) 16728104 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16728112 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16728128 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16728160 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16728224 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16728352 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16728608 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16729120 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16730144 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16732192 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16736288 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16744480 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16760864 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16416 | 16728096 +> [ 373.000000] (7:node@c-6.me) 81952 | 16728096 +> [ 373.000000] (7:node@c-6.me) 213024 | 16728096 +> [ 373.000000] (7:node@c-6.me) 475168 | 16728096 +> [ 373.000000] (7:node@c-6.me) 999456 | 16728096 +> [ 373.000000] (7:node@c-6.me) 2048032 | 16728096 +> [ 373.000000] (7:node@c-6.me) 4145184 | 16728096 +> [ 373.000000] (7:node@c-6.me) 8339488 | 16728096 +> [ 373.000000] (7:node@c-6.me) Predecessor: 6518808 +> [ 375.000000] (2:node@c-1.me) My finger table: +> [ 375.000000] (2:node@c-1.me) Start | Succ +> [ 375.000000] (2:node@c-1.me) 366681 | 1319738 +> [ 375.000000] (2:node@c-1.me) 366682 | 1319738 +> [ 375.000000] (2:node@c-1.me) 366684 | 1319738 +> [ 375.000000] (2:node@c-1.me) 366688 | 366680 +> [ 375.000000] (2:node@c-1.me) 366696 | 366680 +> [ 375.000000] (2:node@c-1.me) 366712 | 366680 +> [ 375.000000] (2:node@c-1.me) 366744 | 366680 +> [ 375.000000] (2:node@c-1.me) 366808 | 366680 +> [ 375.000000] (2:node@c-1.me) 366936 | 366680 +> [ 375.000000] (2:node@c-1.me) 367192 | 366680 +> [ 375.000000] (2:node@c-1.me) 367704 | 366680 +> [ 375.000000] (2:node@c-1.me) 368728 | 366680 +> [ 375.000000] (2:node@c-1.me) 370776 | 366680 +> [ 375.000000] (2:node@c-1.me) 374872 | 366680 +> [ 375.000000] (2:node@c-1.me) 383064 | 366680 +> [ 375.000000] (2:node@c-1.me) 399448 | 366680 +> [ 375.000000] (2:node@c-1.me) 432216 | 366680 +> [ 375.000000] (2:node@c-1.me) 497752 | 366680 +> [ 375.000000] (2:node@c-1.me) 628824 | 366680 +> [ 375.000000] (2:node@c-1.me) 890968 | 366680 +> [ 375.000000] (2:node@c-1.me) 1415256 | 366680 +> [ 375.000000] (2:node@c-1.me) 2463832 | 366680 +> [ 375.000000] (2:node@c-1.me) 4560984 | 366680 +> [ 375.000000] (2:node@c-1.me) 8755288 | 366680 +> [ 375.000000] (2:node@c-1.me) Predecessor: 42 +> [ 382.000000] (1:node@c-0.me) My finger table: +> [ 382.000000] (1:node@c-0.me) Start | Succ +> [ 382.000000] (1:node@c-0.me) 43 | 366680 +> [ 382.000000] (1:node@c-0.me) 44 | 1319738 +> [ 382.000000] (1:node@c-0.me) 46 | 366680 +> [ 382.000000] (1:node@c-0.me) 50 | 42 +> [ 382.000000] (1:node@c-0.me) 58 | 42 +> [ 382.000000] (1:node@c-0.me) 74 | 42 +> [ 382.000000] (1:node@c-0.me) 106 | 42 +> [ 382.000000] (1:node@c-0.me) 170 | 42 +> [ 382.000000] (1:node@c-0.me) 298 | 42 +> [ 382.000000] (1:node@c-0.me) 554 | 42 +> [ 382.000000] (1:node@c-0.me) 1066 | 42 +> [ 382.000000] (1:node@c-0.me) 2090 | 42 +> [ 382.000000] (1:node@c-0.me) 4138 | 42 +> [ 382.000000] (1:node@c-0.me) 8234 | 42 +> [ 382.000000] (1:node@c-0.me) 16426 | 42 +> [ 382.000000] (1:node@c-0.me) 32810 | 42 +> [ 382.000000] (1:node@c-0.me) 65578 | 42 +> [ 382.000000] (1:node@c-0.me) 131114 | 42 +> [ 382.000000] (1:node@c-0.me) 262186 | 42 +> [ 382.000000] (1:node@c-0.me) 524330 | 42 +> [ 382.000000] (1:node@c-0.me) 1048618 | 42 +> [ 382.000000] (1:node@c-0.me) 2097194 | 42 +> [ 382.000000] (1:node@c-0.me) 4194346 | 42 +> [ 382.000000] (1:node@c-0.me) 8388650 | 42 +> [ 382.000000] (1:node@c-0.me) Predecessor: 16728096 +> [ 383.000000] (7:node@c-6.me) My finger table: +> [ 383.000000] (7:node@c-6.me) Start | Succ +> [ 383.000000] (7:node@c-6.me) 16728097 | 42 +> [ 383.000000] (7:node@c-6.me) 16728098 | 42 +> [ 383.000000] (7:node@c-6.me) 16728100 | 42 +> [ 383.000000] (7:node@c-6.me) 16728104 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16728112 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16728128 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16728160 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16728224 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16728352 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16728608 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16729120 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16730144 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16732192 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16736288 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16744480 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16760864 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16416 | 16728096 +> [ 383.000000] (7:node@c-6.me) 81952 | 16728096 +> [ 383.000000] (7:node@c-6.me) 213024 | 16728096 +> [ 383.000000] (7:node@c-6.me) 475168 | 16728096 +> [ 383.000000] (7:node@c-6.me) 999456 | 16728096 +> [ 383.000000] (7:node@c-6.me) 2048032 | 16728096 +> [ 383.000000] (7:node@c-6.me) 4145184 | 16728096 +> [ 383.000000] (7:node@c-6.me) 8339488 | 16728096 +> [ 383.000000] (7:node@c-6.me) Predecessor: 16509405 +> [ 385.000000] (10:node@c-9.me) My finger table: +> [ 385.000000] (10:node@c-9.me) Start | Succ +> [ 385.000000] (10:node@c-9.me) 2015254 | 6518808 +> [ 385.000000] (10:node@c-9.me) 2015255 | 16728096 +> [ 385.000000] (10:node@c-9.me) 2015257 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2015261 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2015269 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2015285 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2015317 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2015381 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2015509 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2015765 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2016277 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2017301 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2019349 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2023445 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2031637 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2048021 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2080789 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2146325 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2277397 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2539541 | 2015253 +> [ 385.000000] (10:node@c-9.me) 3063829 | 2015253 +> [ 385.000000] (10:node@c-9.me) 4112405 | 2015253 +> [ 385.000000] (10:node@c-9.me) 6209557 | 2015253 +> [ 385.000000] (10:node@c-9.me) 10403861 | 2015253 +> [ 385.000000] (10:node@c-9.me) Predecessor: 1319738 +> [ 427.000000] (9:node@c-8.me) My finger table: +> [ 427.000000] (9:node@c-8.me) Start | Succ +> [ 427.000000] (9:node@c-8.me) 6518809 | 10004760 +> [ 427.000000] (9:node@c-8.me) 6518810 | 16728096 +> [ 427.000000] (9:node@c-8.me) 6518812 | 10004760 +> [ 427.000000] (9:node@c-8.me) 6518816 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6518824 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6518840 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6518872 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6518936 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6519064 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6519320 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6519832 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6520856 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6522904 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6527000 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6535192 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6551576 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6584344 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6649880 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6780952 | 6518808 +> [ 427.000000] (9:node@c-8.me) 7043096 | 6518808 +> [ 427.000000] (9:node@c-8.me) 7567384 | 6518808 +> [ 427.000000] (9:node@c-8.me) 8615960 | 6518808 +> [ 427.000000] (9:node@c-8.me) 10713112 | 6518808 +> [ 427.000000] (9:node@c-8.me) 14907416 | 6518808 +> [ 427.000000] (9:node@c-8.me) Predecessor: 2015253 +> [ 432.000000] (10:node@c-9.me) My finger table: +> [ 432.000000] (10:node@c-9.me) Start | Succ +> [ 432.000000] (10:node@c-9.me) 2015254 | 6518808 +> [ 432.000000] (10:node@c-9.me) 2015255 | 16728096 +> [ 432.000000] (10:node@c-9.me) 2015257 | 6518808 +> [ 432.000000] (10:node@c-9.me) 2015261 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2015269 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2015285 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2015317 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2015381 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2015509 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2015765 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2016277 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2017301 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2019349 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2023445 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2031637 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2048021 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2080789 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2146325 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2277397 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2539541 | 2015253 +> [ 432.000000] (10:node@c-9.me) 3063829 | 2015253 +> [ 432.000000] (10:node@c-9.me) 4112405 | 2015253 +> [ 432.000000] (10:node@c-9.me) 6209557 | 2015253 +> [ 432.000000] (10:node@c-9.me) 10403861 | 2015253 +> [ 432.000000] (10:node@c-9.me) Predecessor: 1319738 +> [ 484.000000] (4:node@c-3.me) My finger table: +> [ 484.000000] (4:node@c-3.me) Start | Succ +> [ 484.000000] (4:node@c-3.me) 1319739 | 2015253 +> [ 484.000000] (4:node@c-3.me) 1319740 | 6518808 +> [ 484.000000] (4:node@c-3.me) 1319742 | 2015253 +> [ 484.000000] (4:node@c-3.me) 1319746 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1319754 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1319770 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1319802 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1319866 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1319994 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1320250 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1320762 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1321786 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1323834 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1327930 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1336122 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1352506 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1385274 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1450810 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1581882 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1844026 | 1319738 +> [ 484.000000] (4:node@c-3.me) 2368314 | 1319738 +> [ 484.000000] (4:node@c-3.me) 3416890 | 1319738 +> [ 484.000000] (4:node@c-3.me) 5514042 | 1319738 +> [ 484.000000] (4:node@c-3.me) 9708346 | 1319738 +> [ 484.000000] (4:node@c-3.me) Predecessor: 366680 +> [ 487.000000] (6:node@c-5.me) My finger table: +> [ 487.000000] (6:node@c-5.me) Start | Succ +> [ 487.000000] (6:node@c-5.me) 10874877 | 533744 +> [ 487.000000] (6:node@c-5.me) 10874878 | 533744 +> [ 487.000000] (6:node@c-5.me) 10874880 | 533744 +> [ 487.000000] (6:node@c-5.me) 10874884 | 533744 +> [ 487.000000] (6:node@c-5.me) 10874892 | 10874876 +> [ 487.000000] (6:node@c-5.me) 10874908 | 10874876 +> [ 487.000000] (6:node@c-5.me) 10874940 | 10874876 +> [ 487.000000] (6:node@c-5.me) 10875004 | 10874876 +> [ 487.000000] (6:node@c-5.me) 10875132 | 10874876 +> [ 487.000000] (6:node@c-5.me) 10875388 | 10874876 +> [ 487.000000] (6:node@c-5.me) 10875900 | 10874876 +> [ 487.000000] (6:node@c-5.me) 10876924 | 10874876 +> [ 487.000000] (6:node@c-5.me) 10878972 | 10874876 +> [ 487.000000] (6:node@c-5.me) 10883068 | 10874876 +> [ 487.000000] (6:node@c-5.me) 10891260 | 10874876 +> [ 487.000000] (6:node@c-5.me) 10907644 | 10874876 +> [ 487.000000] (6:node@c-5.me) 10940412 | 10874876 +> [ 487.000000] (6:node@c-5.me) 11005948 | 10874876 +> [ 487.000000] (6:node@c-5.me) 11137020 | 10874876 +> [ 487.000000] (6:node@c-5.me) 11399164 | 10874876 +> [ 487.000000] (6:node@c-5.me) 11923452 | 10874876 +> [ 487.000000] (6:node@c-5.me) 12972028 | 10874876 +> [ 487.000000] (6:node@c-5.me) 15069180 | 10874876 +> [ 487.000000] (6:node@c-5.me) 2486268 | 10874876 +> [ 487.000000] (6:node@c-5.me) Predecessor: -1 +> [ 490.000000] (8:node@c-7.me) My finger table: +> [ 490.000000] (8:node@c-7.me) Start | Succ +> [ 490.000000] (8:node@c-7.me) 10004761 | 16509405 +> [ 490.000000] (8:node@c-7.me) 10004762 | 16509405 +> [ 490.000000] (8:node@c-7.me) 10004764 | 16509405 +> [ 490.000000] (8:node@c-7.me) 10004768 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10004776 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10004792 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10004824 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10004888 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10005016 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10005272 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10005784 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10006808 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10008856 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10012952 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10021144 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10037528 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10070296 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10135832 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10266904 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10529048 | 10004760 +> [ 490.000000] (8:node@c-7.me) 11053336 | 10004760 +> [ 490.000000] (8:node@c-7.me) 12101912 | 10004760 +> [ 490.000000] (8:node@c-7.me) 14199064 | 10004760 +> [ 490.000000] (8:node@c-7.me) 1616152 | 10004760 +> [ 490.000000] (8:node@c-7.me) Predecessor: 6518808 +> [ 491.000000] (8:node@c-7.me) My finger table: +> [ 491.000000] (8:node@c-7.me) Start | Succ +> [ 491.000000] (8:node@c-7.me) 10004761 | 16509405 +> [ 491.000000] (8:node@c-7.me) 10004762 | 16509405 +> [ 491.000000] (8:node@c-7.me) 10004764 | 16509405 +> [ 491.000000] (8:node@c-7.me) 10004768 | 16509405 +> [ 491.000000] (8:node@c-7.me) 10004776 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10004792 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10004824 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10004888 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10005016 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10005272 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10005784 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10006808 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10008856 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10012952 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10021144 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10037528 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10070296 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10135832 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10266904 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10529048 | 10004760 +> [ 491.000000] (8:node@c-7.me) 11053336 | 10004760 +> [ 491.000000] (8:node@c-7.me) 12101912 | 10004760 +> [ 491.000000] (8:node@c-7.me) 14199064 | 10004760 +> [ 491.000000] (8:node@c-7.me) 1616152 | 10004760 +> [ 491.000000] (8:node@c-7.me) Predecessor: 6518808 +> [ 496.000000] (7:node@c-6.me) My finger table: +> [ 496.000000] (7:node@c-6.me) Start | Succ +> [ 496.000000] (7:node@c-6.me) 16728097 | 42 +> [ 496.000000] (7:node@c-6.me) 16728098 | 42 +> [ 496.000000] (7:node@c-6.me) 16728100 | 42 +> [ 496.000000] (7:node@c-6.me) 16728104 | 42 +> [ 496.000000] (7:node@c-6.me) 16728112 | 16728096 +> [ 496.000000] (7:node@c-6.me) 16728128 | 16728096 +> [ 496.000000] (7:node@c-6.me) 16728160 | 16728096 +> [ 496.000000] (7:node@c-6.me) 16728224 | 16728096 +> [ 496.000000] (7:node@c-6.me) 16728352 | 16728096 +> [ 496.000000] (7:node@c-6.me) 16728608 | 16728096 +> [ 496.000000] (7:node@c-6.me) 16729120 | 16728096 +> [ 496.000000] (7:node@c-6.me) 16730144 | 16728096 +> [ 496.000000] (7:node@c-6.me) 16732192 | 16728096 +> [ 496.000000] (7:node@c-6.me) 16736288 | 16728096 +> [ 496.000000] (7:node@c-6.me) 16744480 | 16728096 +> [ 496.000000] (7:node@c-6.me) 16760864 | 16728096 +> [ 496.000000] (7:node@c-6.me) 16416 | 16728096 +> [ 496.000000] (7:node@c-6.me) 81952 | 16728096 +> [ 496.000000] (7:node@c-6.me) 213024 | 16728096 +> [ 496.000000] (7:node@c-6.me) 475168 | 16728096 +> [ 496.000000] (7:node@c-6.me) 999456 | 16728096 +> [ 496.000000] (7:node@c-6.me) 2048032 | 16728096 +> [ 496.000000] (7:node@c-6.me) 4145184 | 16728096 +> [ 496.000000] (7:node@c-6.me) 8339488 | 16728096 +> [ 496.000000] (7:node@c-6.me) Predecessor: 16509405 +> [ 497.000000] (3:node@c-2.me) My finger table: +> [ 497.000000] (3:node@c-2.me) Start | Succ +> [ 497.000000] (3:node@c-2.me) 533745 | 6518808 +> [ 497.000000] (3:node@c-2.me) 533746 | 10004760 +> [ 497.000000] (3:node@c-2.me) 533748 | 10004760 +> [ 497.000000] (3:node@c-2.me) 533752 | 6518808 +> [ 497.000000] (3:node@c-2.me) 533760 | 533744 +> [ 497.000000] (3:node@c-2.me) 533776 | 533744 +> [ 497.000000] (3:node@c-2.me) 533808 | 533744 +> [ 497.000000] (3:node@c-2.me) 533872 | 533744 +> [ 497.000000] (3:node@c-2.me) 534000 | 533744 +> [ 497.000000] (3:node@c-2.me) 534256 | 533744 +> [ 497.000000] (3:node@c-2.me) 534768 | 533744 +> [ 497.000000] (3:node@c-2.me) 535792 | 533744 +> [ 497.000000] (3:node@c-2.me) 537840 | 533744 +> [ 497.000000] (3:node@c-2.me) 541936 | 533744 +> [ 497.000000] (3:node@c-2.me) 550128 | 533744 +> [ 497.000000] (3:node@c-2.me) 566512 | 533744 +> [ 497.000000] (3:node@c-2.me) 599280 | 533744 +> [ 497.000000] (3:node@c-2.me) 664816 | 533744 +> [ 497.000000] (3:node@c-2.me) 795888 | 533744 +> [ 497.000000] (3:node@c-2.me) 1058032 | 533744 +> [ 497.000000] (3:node@c-2.me) 1582320 | 533744 +> [ 497.000000] (3:node@c-2.me) 2630896 | 533744 +> [ 497.000000] (3:node@c-2.me) 4728048 | 533744 +> [ 497.000000] (3:node@c-2.me) 8922352 | 533744 +> [ 497.000000] (3:node@c-2.me) Predecessor: 10874876 +> [ 502.000000] (1:node@c-0.me) My finger table: +> [ 502.000000] (1:node@c-0.me) Start | Succ +> [ 502.000000] (1:node@c-0.me) 43 | 366680 +> [ 502.000000] (1:node@c-0.me) 44 | 1319738 +> [ 502.000000] (1:node@c-0.me) 46 | 366680 +> [ 502.000000] (1:node@c-0.me) 50 | 366680 +> [ 502.000000] (1:node@c-0.me) 58 | 42 +> [ 502.000000] (1:node@c-0.me) 74 | 42 +> [ 502.000000] (1:node@c-0.me) 106 | 42 +> [ 502.000000] (1:node@c-0.me) 170 | 42 +> [ 502.000000] (1:node@c-0.me) 298 | 42 +> [ 502.000000] (1:node@c-0.me) 554 | 42 +> [ 502.000000] (1:node@c-0.me) 1066 | 42 +> [ 502.000000] (1:node@c-0.me) 2090 | 42 +> [ 502.000000] (1:node@c-0.me) 4138 | 42 +> [ 502.000000] (1:node@c-0.me) 8234 | 42 +> [ 502.000000] (1:node@c-0.me) 16426 | 42 +> [ 502.000000] (1:node@c-0.me) 32810 | 42 +> [ 502.000000] (1:node@c-0.me) 65578 | 42 +> [ 502.000000] (1:node@c-0.me) 131114 | 42 +> [ 502.000000] (1:node@c-0.me) 262186 | 42 +> [ 502.000000] (1:node@c-0.me) 524330 | 42 +> [ 502.000000] (1:node@c-0.me) 1048618 | 42 +> [ 502.000000] (1:node@c-0.me) 2097194 | 42 +> [ 502.000000] (1:node@c-0.me) 4194346 | 42 +> [ 502.000000] (1:node@c-0.me) 8388650 | 42 +> [ 502.000000] (1:node@c-0.me) Predecessor: 16728096 +> [ 505.000000] (2:node@c-1.me) My finger table: +> [ 505.000000] (2:node@c-1.me) Start | Succ +> [ 505.000000] (2:node@c-1.me) 366681 | 1319738 +> [ 505.000000] (2:node@c-1.me) 366682 | 1319738 +> [ 505.000000] (2:node@c-1.me) 366684 | 1319738 +> [ 505.000000] (2:node@c-1.me) 366688 | 1319738 +> [ 505.000000] (2:node@c-1.me) 366696 | 366680 +> [ 505.000000] (2:node@c-1.me) 366712 | 366680 +> [ 505.000000] (2:node@c-1.me) 366744 | 366680 +> [ 505.000000] (2:node@c-1.me) 366808 | 366680 +> [ 505.000000] (2:node@c-1.me) 366936 | 366680 +> [ 505.000000] (2:node@c-1.me) 367192 | 366680 +> [ 505.000000] (2:node@c-1.me) 367704 | 366680 +> [ 505.000000] (2:node@c-1.me) 368728 | 366680 +> [ 505.000000] (2:node@c-1.me) 370776 | 366680 +> [ 505.000000] (2:node@c-1.me) 374872 | 366680 +> [ 505.000000] (2:node@c-1.me) 383064 | 366680 +> [ 505.000000] (2:node@c-1.me) 399448 | 366680 +> [ 505.000000] (2:node@c-1.me) 432216 | 366680 +> [ 505.000000] (2:node@c-1.me) 497752 | 366680 +> [ 505.000000] (2:node@c-1.me) 628824 | 366680 +> [ 505.000000] (2:node@c-1.me) 890968 | 366680 +> [ 505.000000] (2:node@c-1.me) 1415256 | 366680 +> [ 505.000000] (2:node@c-1.me) 2463832 | 366680 +> [ 505.000000] (2:node@c-1.me) 4560984 | 366680 +> [ 505.000000] (2:node@c-1.me) 8755288 | 366680 +> [ 505.000000] (2:node@c-1.me) Predecessor: 42 +> [ 513.000000] (5:node@c-4.me) My finger table: +> [ 513.000000] (5:node@c-4.me) Start | Succ +> [ 513.000000] (5:node@c-4.me) 16509406 | 16728096 +> [ 513.000000] (5:node@c-4.me) 16509407 | 366680 +> [ 513.000000] (5:node@c-4.me) 16509409 | 16728096 +> [ 513.000000] (5:node@c-4.me) 16509413 | 16728096 +> [ 513.000000] (5:node@c-4.me) 16509421 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16509437 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16509469 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16509533 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16509661 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16509917 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16510429 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16511453 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16513501 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16517597 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16525789 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16542173 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16574941 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16640477 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16771549 | 16509405 +> [ 513.000000] (5:node@c-4.me) 256477 | 16509405 +> [ 513.000000] (5:node@c-4.me) 780765 | 16509405 +> [ 513.000000] (5:node@c-4.me) 1829341 | 16509405 +> [ 513.000000] (5:node@c-4.me) 3926493 | 16509405 +> [ 513.000000] (5:node@c-4.me) 8120797 | 16509405 +> [ 513.000000] (5:node@c-4.me) Predecessor: 10004760 +> [ 558.000000] (9:node@c-8.me) My finger table: +> [ 558.000000] (9:node@c-8.me) Start | Succ +> [ 558.000000] (9:node@c-8.me) 6518809 | 10004760 +> [ 558.000000] (9:node@c-8.me) 6518810 | 16728096 +> [ 558.000000] (9:node@c-8.me) 6518812 | 10004760 +> [ 558.000000] (9:node@c-8.me) 6518816 | 10004760 +> [ 558.000000] (9:node@c-8.me) 6518824 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6518840 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6518872 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6518936 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6519064 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6519320 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6519832 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6520856 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6522904 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6527000 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6535192 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6551576 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6584344 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6649880 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6780952 | 6518808 +> [ 558.000000] (9:node@c-8.me) 7043096 | 6518808 +> [ 558.000000] (9:node@c-8.me) 7567384 | 6518808 +> [ 558.000000] (9:node@c-8.me) 8615960 | 6518808 +> [ 558.000000] (9:node@c-8.me) 10713112 | 6518808 +> [ 558.000000] (9:node@c-8.me) 14907416 | 6518808 +> [ 558.000000] (9:node@c-8.me) Predecessor: 2015253 +> [ 573.000000] (10:node@c-9.me) My finger table: +> [ 573.000000] (10:node@c-9.me) Start | Succ +> [ 573.000000] (10:node@c-9.me) 2015254 | 6518808 +> [ 573.000000] (10:node@c-9.me) 2015255 | 16728096 +> [ 573.000000] (10:node@c-9.me) 2015257 | 6518808 +> [ 573.000000] (10:node@c-9.me) 2015261 | 6518808 +> [ 573.000000] (10:node@c-9.me) 2015269 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2015285 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2015317 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2015381 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2015509 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2015765 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2016277 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2017301 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2019349 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2023445 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2031637 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2048021 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2080789 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2146325 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2277397 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2539541 | 2015253 +> [ 573.000000] (10:node@c-9.me) 3063829 | 2015253 +> [ 573.000000] (10:node@c-9.me) 4112405 | 2015253 +> [ 573.000000] (10:node@c-9.me) 6209557 | 2015253 +> [ 573.000000] (10:node@c-9.me) 10403861 | 2015253 +> [ 573.000000] (10:node@c-9.me) Predecessor: 1319738 +> [ 600.000000] (4:node@c-3.me) My finger table: +> [ 600.000000] (4:node@c-3.me) Start | Succ +> [ 600.000000] (4:node@c-3.me) 1319739 | 2015253 +> [ 600.000000] (4:node@c-3.me) 1319740 | 6518808 +> [ 600.000000] (4:node@c-3.me) 1319742 | 2015253 +> [ 600.000000] (4:node@c-3.me) 1319746 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1319754 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1319770 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1319802 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1319866 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1319994 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1320250 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1320762 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1321786 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1323834 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1327930 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1336122 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1352506 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1385274 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1450810 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1581882 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1844026 | 1319738 +> [ 600.000000] (4:node@c-3.me) 2368314 | 1319738 +> [ 600.000000] (4:node@c-3.me) 3416890 | 1319738 +> [ 600.000000] (4:node@c-3.me) 5514042 | 1319738 +> [ 600.000000] (4:node@c-3.me) 9708346 | 1319738 +> [ 600.000000] (4:node@c-3.me) Predecessor: 533744 +> [ 610.000000] (6:node@c-5.me) My finger table: +> [ 610.000000] (6:node@c-5.me) Start | Succ +> [ 610.000000] (6:node@c-5.me) 10874877 | 533744 +> [ 610.000000] (6:node@c-5.me) 10874878 | 533744 +> [ 610.000000] (6:node@c-5.me) 10874880 | 533744 +> [ 610.000000] (6:node@c-5.me) 10874884 | 533744 +> [ 610.000000] (6:node@c-5.me) 10874892 | 533744 +> [ 610.000000] (6:node@c-5.me) 10874908 | 10874876 +> [ 610.000000] (6:node@c-5.me) 10874940 | 10874876 +> [ 610.000000] (6:node@c-5.me) 10875004 | 10874876 +> [ 610.000000] (6:node@c-5.me) 10875132 | 10874876 +> [ 610.000000] (6:node@c-5.me) 10875388 | 10874876 +> [ 610.000000] (6:node@c-5.me) 10875900 | 10874876 +> [ 610.000000] (6:node@c-5.me) 10876924 | 10874876 +> [ 610.000000] (6:node@c-5.me) 10878972 | 10874876 +> [ 610.000000] (6:node@c-5.me) 10883068 | 10874876 +> [ 610.000000] (6:node@c-5.me) 10891260 | 10874876 +> [ 610.000000] (6:node@c-5.me) 10907644 | 10874876 +> [ 610.000000] (6:node@c-5.me) 10940412 | 10874876 +> [ 610.000000] (6:node@c-5.me) 11005948 | 10874876 +> [ 610.000000] (6:node@c-5.me) 11137020 | 10874876 +> [ 610.000000] (6:node@c-5.me) 11399164 | 10874876 +> [ 610.000000] (6:node@c-5.me) 11923452 | 10874876 +> [ 610.000000] (6:node@c-5.me) 12972028 | 10874876 +> [ 610.000000] (6:node@c-5.me) 15069180 | 10874876 +> [ 610.000000] (6:node@c-5.me) 2486268 | 10874876 +> [ 610.000000] (6:node@c-5.me) Predecessor: -1 +> [ 656.000000] (5:node@c-4.me) My finger table: +> [ 656.000000] (5:node@c-4.me) Start | Succ +> [ 656.000000] (5:node@c-4.me) 16509406 | 16728096 +> [ 656.000000] (5:node@c-4.me) 16509407 | 366680 +> [ 656.000000] (5:node@c-4.me) 16509409 | 16728096 +> [ 656.000000] (5:node@c-4.me) 16509413 | 16728096 +> [ 656.000000] (5:node@c-4.me) 16509421 | 16728096 +> [ 656.000000] (5:node@c-4.me) 16509437 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16509469 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16509533 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16509661 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16509917 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16510429 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16511453 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16513501 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16517597 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16525789 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16542173 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16574941 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16640477 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16771549 | 16509405 +> [ 656.000000] (5:node@c-4.me) 256477 | 16509405 +> [ 656.000000] (5:node@c-4.me) 780765 | 16509405 +> [ 656.000000] (5:node@c-4.me) 1829341 | 16509405 +> [ 656.000000] (5:node@c-4.me) 3926493 | 16509405 +> [ 656.000000] (5:node@c-4.me) 8120797 | 16509405 +> [ 656.000000] (5:node@c-4.me) Predecessor: 10004760 +> [ 657.000000] (7:node@c-6.me) My finger table: +> [ 657.000000] (7:node@c-6.me) Start | Succ +> [ 657.000000] (7:node@c-6.me) 16728097 | 42 +> [ 657.000000] (7:node@c-6.me) 16728098 | 42 +> [ 657.000000] (7:node@c-6.me) 16728100 | 42 +> [ 657.000000] (7:node@c-6.me) 16728104 | 42 +> [ 657.000000] (7:node@c-6.me) 16728112 | 42 +> [ 657.000000] (7:node@c-6.me) 16728128 | 16728096 +> [ 657.000000] (7:node@c-6.me) 16728160 | 16728096 +> [ 657.000000] (7:node@c-6.me) 16728224 | 16728096 +> [ 657.000000] (7:node@c-6.me) 16728352 | 16728096 +> [ 657.000000] (7:node@c-6.me) 16728608 | 16728096 +> [ 657.000000] (7:node@c-6.me) 16729120 | 16728096 +> [ 657.000000] (7:node@c-6.me) 16730144 | 16728096 +> [ 657.000000] (7:node@c-6.me) 16732192 | 16728096 +> [ 657.000000] (7:node@c-6.me) 16736288 | 16728096 +> [ 657.000000] (7:node@c-6.me) 16744480 | 16728096 +> [ 657.000000] (7:node@c-6.me) 16760864 | 16728096 +> [ 657.000000] (7:node@c-6.me) 16416 | 16728096 +> [ 657.000000] (7:node@c-6.me) 81952 | 16728096 +> [ 657.000000] (7:node@c-6.me) 213024 | 16728096 +> [ 657.000000] (7:node@c-6.me) 475168 | 16728096 +> [ 657.000000] (7:node@c-6.me) 999456 | 16728096 +> [ 657.000000] (7:node@c-6.me) 2048032 | 16728096 +> [ 657.000000] (7:node@c-6.me) 4145184 | 16728096 +> [ 657.000000] (7:node@c-6.me) 8339488 | 16728096 +> [ 657.000000] (7:node@c-6.me) Predecessor: 16509405 +> [ 663.000000] (4:node@c-3.me) My finger table: +> [ 663.000000] (4:node@c-3.me) Start | Succ +> [ 663.000000] (4:node@c-3.me) 1319739 | 2015253 +> [ 663.000000] (4:node@c-3.me) 1319740 | 6518808 +> [ 663.000000] (4:node@c-3.me) 1319742 | 2015253 +> [ 663.000000] (4:node@c-3.me) 1319746 | 2015253 +> [ 663.000000] (4:node@c-3.me) 1319754 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1319770 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1319802 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1319866 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1319994 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1320250 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1320762 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1321786 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1323834 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1327930 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1336122 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1352506 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1385274 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1450810 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1581882 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1844026 | 1319738 +> [ 663.000000] (4:node@c-3.me) 2368314 | 1319738 +> [ 663.000000] (4:node@c-3.me) 3416890 | 1319738 +> [ 663.000000] (4:node@c-3.me) 5514042 | 1319738 +> [ 663.000000] (4:node@c-3.me) 9708346 | 1319738 +> [ 663.000000] (4:node@c-3.me) Predecessor: 533744 +> [ 665.000000] (1:node@c-0.me) My finger table: +> [ 665.000000] (1:node@c-0.me) Start | Succ +> [ 665.000000] (1:node@c-0.me) 43 | 366680 +> [ 665.000000] (1:node@c-0.me) 44 | 1319738 +> [ 665.000000] (1:node@c-0.me) 46 | 366680 +> [ 665.000000] (1:node@c-0.me) 50 | 366680 +> [ 665.000000] (1:node@c-0.me) 58 | 366680 +> [ 665.000000] (1:node@c-0.me) 74 | 42 +> [ 665.000000] (1:node@c-0.me) 106 | 42 +> [ 665.000000] (1:node@c-0.me) 170 | 42 +> [ 665.000000] (1:node@c-0.me) 298 | 42 +> [ 665.000000] (1:node@c-0.me) 554 | 42 +> [ 665.000000] (1:node@c-0.me) 1066 | 42 +> [ 665.000000] (1:node@c-0.me) 2090 | 42 +> [ 665.000000] (1:node@c-0.me) 4138 | 42 +> [ 665.000000] (1:node@c-0.me) 8234 | 42 +> [ 665.000000] (1:node@c-0.me) 16426 | 42 +> [ 665.000000] (1:node@c-0.me) 32810 | 42 +> [ 665.000000] (1:node@c-0.me) 65578 | 42 +> [ 665.000000] (1:node@c-0.me) 131114 | 42 +> [ 665.000000] (1:node@c-0.me) 262186 | 42 +> [ 665.000000] (1:node@c-0.me) 524330 | 42 +> [ 665.000000] (1:node@c-0.me) 1048618 | 42 +> [ 665.000000] (1:node@c-0.me) 2097194 | 42 +> [ 665.000000] (1:node@c-0.me) 4194346 | 42 +> [ 665.000000] (1:node@c-0.me) 8388650 | 42 +> [ 665.000000] (1:node@c-0.me) Predecessor: 16728096 +> [ 669.000000] (8:node@c-7.me) My finger table: +> [ 669.000000] (8:node@c-7.me) Start | Succ +> [ 669.000000] (8:node@c-7.me) 10004761 | 16509405 +> [ 669.000000] (8:node@c-7.me) 10004762 | 16509405 +> [ 669.000000] (8:node@c-7.me) 10004764 | 16509405 +> [ 669.000000] (8:node@c-7.me) 10004768 | 16509405 +> [ 669.000000] (8:node@c-7.me) 10004776 | 16509405 +> [ 669.000000] (8:node@c-7.me) 10004792 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10004824 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10004888 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10005016 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10005272 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10005784 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10006808 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10008856 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10012952 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10021144 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10037528 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10070296 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10135832 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10266904 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10529048 | 10004760 +> [ 669.000000] (8:node@c-7.me) 11053336 | 10004760 +> [ 669.000000] (8:node@c-7.me) 12101912 | 10004760 +> [ 669.000000] (8:node@c-7.me) 14199064 | 10004760 +> [ 669.000000] (8:node@c-7.me) 1616152 | 10004760 +> [ 669.000000] (8:node@c-7.me) Predecessor: 6518808 +> [ 671.000000] (3:node@c-2.me) My finger table: +> [ 671.000000] (3:node@c-2.me) Start | Succ +> [ 671.000000] (3:node@c-2.me) 533745 | 1319738 +> [ 671.000000] (3:node@c-2.me) 533746 | 10004760 +> [ 671.000000] (3:node@c-2.me) 533748 | 10004760 +> [ 671.000000] (3:node@c-2.me) 533752 | 6518808 +> [ 671.000000] (3:node@c-2.me) 533760 | 1319738 +> [ 671.000000] (3:node@c-2.me) 533776 | 533744 +> [ 671.000000] (3:node@c-2.me) 533808 | 533744 +> [ 671.000000] (3:node@c-2.me) 533872 | 533744 +> [ 671.000000] (3:node@c-2.me) 534000 | 533744 +> [ 671.000000] (3:node@c-2.me) 534256 | 533744 +> [ 671.000000] (3:node@c-2.me) 534768 | 533744 +> [ 671.000000] (3:node@c-2.me) 535792 | 533744 +> [ 671.000000] (3:node@c-2.me) 537840 | 533744 +> [ 671.000000] (3:node@c-2.me) 541936 | 533744 +> [ 671.000000] (3:node@c-2.me) 550128 | 533744 +> [ 671.000000] (3:node@c-2.me) 566512 | 533744 +> [ 671.000000] (3:node@c-2.me) 599280 | 533744 +> [ 671.000000] (3:node@c-2.me) 664816 | 533744 +> [ 671.000000] (3:node@c-2.me) 795888 | 533744 +> [ 671.000000] (3:node@c-2.me) 1058032 | 533744 +> [ 671.000000] (3:node@c-2.me) 1582320 | 533744 +> [ 671.000000] (3:node@c-2.me) 2630896 | 533744 +> [ 671.000000] (3:node@c-2.me) 4728048 | 533744 +> [ 671.000000] (3:node@c-2.me) 8922352 | 533744 +> [ 671.000000] (3:node@c-2.me) Predecessor: 10874876 +> [ 678.000000] (9:node@c-8.me) My finger table: +> [ 678.000000] (9:node@c-8.me) Start | Succ +> [ 678.000000] (9:node@c-8.me) 6518809 | 10004760 +> [ 678.000000] (9:node@c-8.me) 6518810 | 16728096 +> [ 678.000000] (9:node@c-8.me) 6518812 | 10004760 +> [ 678.000000] (9:node@c-8.me) 6518816 | 10004760 +> [ 678.000000] (9:node@c-8.me) 6518824 | 10004760 +> [ 678.000000] (9:node@c-8.me) 6518840 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6518872 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6518936 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6519064 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6519320 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6519832 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6520856 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6522904 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6527000 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6535192 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6551576 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6584344 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6649880 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6780952 | 6518808 +> [ 678.000000] (9:node@c-8.me) 7043096 | 6518808 +> [ 678.000000] (9:node@c-8.me) 7567384 | 6518808 +> [ 678.000000] (9:node@c-8.me) 8615960 | 6518808 +> [ 678.000000] (9:node@c-8.me) 10713112 | 6518808 +> [ 678.000000] (9:node@c-8.me) 14907416 | 6518808 +> [ 678.000000] (9:node@c-8.me) Predecessor: 2015253 +> [ 683.000000] (2:node@c-1.me) My finger table: +> [ 683.000000] (2:node@c-1.me) Start | Succ +> [ 683.000000] (2:node@c-1.me) 366681 | 533744 +> [ 683.000000] (2:node@c-1.me) 366682 | 1319738 +> [ 683.000000] (2:node@c-1.me) 366684 | 1319738 +> [ 683.000000] (2:node@c-1.me) 366688 | 1319738 +> [ 683.000000] (2:node@c-1.me) 366696 | 533744 +> [ 683.000000] (2:node@c-1.me) 366712 | 366680 +> [ 683.000000] (2:node@c-1.me) 366744 | 366680 +> [ 683.000000] (2:node@c-1.me) 366808 | 366680 +> [ 683.000000] (2:node@c-1.me) 366936 | 366680 +> [ 683.000000] (2:node@c-1.me) 367192 | 366680 +> [ 683.000000] (2:node@c-1.me) 367704 | 366680 +> [ 683.000000] (2:node@c-1.me) 368728 | 366680 +> [ 683.000000] (2:node@c-1.me) 370776 | 366680 +> [ 683.000000] (2:node@c-1.me) 374872 | 366680 +> [ 683.000000] (2:node@c-1.me) 383064 | 366680 +> [ 683.000000] (2:node@c-1.me) 399448 | 366680 +> [ 683.000000] (2:node@c-1.me) 432216 | 366680 +> [ 683.000000] (2:node@c-1.me) 497752 | 366680 +> [ 683.000000] (2:node@c-1.me) 628824 | 366680 +> [ 683.000000] (2:node@c-1.me) 890968 | 366680 +> [ 683.000000] (2:node@c-1.me) 1415256 | 366680 +> [ 683.000000] (2:node@c-1.me) 2463832 | 366680 +> [ 683.000000] (2:node@c-1.me) 4560984 | 366680 +> [ 683.000000] (2:node@c-1.me) 8755288 | 366680 +> [ 683.000000] (2:node@c-1.me) Predecessor: 42 +> [ 684.000000] (3:node@c-2.me) My finger table: +> [ 684.000000] (3:node@c-2.me) Start | Succ +> [ 684.000000] (3:node@c-2.me) 533745 | 1319738 +> [ 684.000000] (3:node@c-2.me) 533746 | 10004760 +> [ 684.000000] (3:node@c-2.me) 533748 | 10004760 +> [ 684.000000] (3:node@c-2.me) 533752 | 6518808 +> [ 684.000000] (3:node@c-2.me) 533760 | 1319738 +> [ 684.000000] (3:node@c-2.me) 533776 | 533744 +> [ 684.000000] (3:node@c-2.me) 533808 | 533744 +> [ 684.000000] (3:node@c-2.me) 533872 | 533744 +> [ 684.000000] (3:node@c-2.me) 534000 | 533744 +> [ 684.000000] (3:node@c-2.me) 534256 | 533744 +> [ 684.000000] (3:node@c-2.me) 534768 | 533744 +> [ 684.000000] (3:node@c-2.me) 535792 | 533744 +> [ 684.000000] (3:node@c-2.me) 537840 | 533744 +> [ 684.000000] (3:node@c-2.me) 541936 | 533744 +> [ 684.000000] (3:node@c-2.me) 550128 | 533744 +> [ 684.000000] (3:node@c-2.me) 566512 | 533744 +> [ 684.000000] (3:node@c-2.me) 599280 | 533744 +> [ 684.000000] (3:node@c-2.me) 664816 | 533744 +> [ 684.000000] (3:node@c-2.me) 795888 | 533744 +> [ 684.000000] (3:node@c-2.me) 1058032 | 533744 +> [ 684.000000] (3:node@c-2.me) 1582320 | 533744 +> [ 684.000000] (3:node@c-2.me) 2630896 | 533744 +> [ 684.000000] (3:node@c-2.me) 4728048 | 533744 +> [ 684.000000] (3:node@c-2.me) 8922352 | 533744 +> [ 684.000000] (3:node@c-2.me) Predecessor: 366680 +> [ 721.000000] (10:node@c-9.me) My finger table: +> [ 721.000000] (10:node@c-9.me) Start | Succ +> [ 721.000000] (10:node@c-9.me) 2015254 | 6518808 +> [ 721.000000] (10:node@c-9.me) 2015255 | 16728096 +> [ 721.000000] (10:node@c-9.me) 2015257 | 6518808 +> [ 721.000000] (10:node@c-9.me) 2015261 | 6518808 +> [ 721.000000] (10:node@c-9.me) 2015269 | 6518808 +> [ 721.000000] (10:node@c-9.me) 2015285 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2015317 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2015381 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2015509 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2015765 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2016277 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2017301 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2019349 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2023445 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2031637 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2048021 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2080789 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2146325 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2277397 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2539541 | 2015253 +> [ 721.000000] (10:node@c-9.me) 3063829 | 2015253 +> [ 721.000000] (10:node@c-9.me) 4112405 | 2015253 +> [ 721.000000] (10:node@c-9.me) 6209557 | 2015253 +> [ 721.000000] (10:node@c-9.me) 10403861 | 2015253 +> [ 721.000000] (10:node@c-9.me) Predecessor: 1319738 +> [ 744.000000] (6:node@c-5.me) My finger table: +> [ 744.000000] (6:node@c-5.me) Start | Succ +> [ 744.000000] (6:node@c-5.me) 10874877 | 16728096 +> [ 744.000000] (6:node@c-5.me) 10874878 | 533744 +> [ 744.000000] (6:node@c-5.me) 10874880 | 533744 +> [ 744.000000] (6:node@c-5.me) 10874884 | 533744 +> [ 744.000000] (6:node@c-5.me) 10874892 | 533744 +> [ 744.000000] (6:node@c-5.me) 10874908 | 16728096 +> [ 744.000000] (6:node@c-5.me) 10874940 | 10874876 +> [ 744.000000] (6:node@c-5.me) 10875004 | 10874876 +> [ 744.000000] (6:node@c-5.me) 10875132 | 10874876 +> [ 744.000000] (6:node@c-5.me) 10875388 | 10874876 +> [ 744.000000] (6:node@c-5.me) 10875900 | 10874876 +> [ 744.000000] (6:node@c-5.me) 10876924 | 10874876 +> [ 744.000000] (6:node@c-5.me) 10878972 | 10874876 +> [ 744.000000] (6:node@c-5.me) 10883068 | 10874876 +> [ 744.000000] (6:node@c-5.me) 10891260 | 10874876 +> [ 744.000000] (6:node@c-5.me) 10907644 | 10874876 +> [ 744.000000] (6:node@c-5.me) 10940412 | 10874876 +> [ 744.000000] (6:node@c-5.me) 11005948 | 10874876 +> [ 744.000000] (6:node@c-5.me) 11137020 | 10874876 +> [ 744.000000] (6:node@c-5.me) 11399164 | 10874876 +> [ 744.000000] (6:node@c-5.me) 11923452 | 10874876 +> [ 744.000000] (6:node@c-5.me) 12972028 | 10874876 +> [ 744.000000] (6:node@c-5.me) 15069180 | 10874876 +> [ 744.000000] (6:node@c-5.me) 2486268 | 10874876 +> [ 744.000000] (6:node@c-5.me) Predecessor: -1 +> [ 777.000000] (7:node@c-6.me) My finger table: +> [ 777.000000] (7:node@c-6.me) Start | Succ +> [ 777.000000] (7:node@c-6.me) 16728097 | 42 +> [ 777.000000] (7:node@c-6.me) 16728098 | 42 +> [ 777.000000] (7:node@c-6.me) 16728100 | 42 +> [ 777.000000] (7:node@c-6.me) 16728104 | 42 +> [ 777.000000] (7:node@c-6.me) 16728112 | 42 +> [ 777.000000] (7:node@c-6.me) 16728128 | 42 +> [ 777.000000] (7:node@c-6.me) 16728160 | 16728096 +> [ 777.000000] (7:node@c-6.me) 16728224 | 16728096 +> [ 777.000000] (7:node@c-6.me) 16728352 | 16728096 +> [ 777.000000] (7:node@c-6.me) 16728608 | 16728096 +> [ 777.000000] (7:node@c-6.me) 16729120 | 16728096 +> [ 777.000000] (7:node@c-6.me) 16730144 | 16728096 +> [ 777.000000] (7:node@c-6.me) 16732192 | 16728096 +> [ 777.000000] (7:node@c-6.me) 16736288 | 16728096 +> [ 777.000000] (7:node@c-6.me) 16744480 | 16728096 +> [ 777.000000] (7:node@c-6.me) 16760864 | 16728096 +> [ 777.000000] (7:node@c-6.me) 16416 | 16728096 +> [ 777.000000] (7:node@c-6.me) 81952 | 16728096 +> [ 777.000000] (7:node@c-6.me) 213024 | 16728096 +> [ 777.000000] (7:node@c-6.me) 475168 | 16728096 +> [ 777.000000] (7:node@c-6.me) 999456 | 16728096 +> [ 777.000000] (7:node@c-6.me) 2048032 | 16728096 +> [ 777.000000] (7:node@c-6.me) 4145184 | 16728096 +> [ 777.000000] (7:node@c-6.me) 8339488 | 16728096 +> [ 777.000000] (7:node@c-6.me) Predecessor: 16509405 +> [ 786.000000] (5:node@c-4.me) My finger table: +> [ 786.000000] (5:node@c-4.me) Start | Succ +> [ 786.000000] (5:node@c-4.me) 16509406 | 16728096 +> [ 786.000000] (5:node@c-4.me) 16509407 | 366680 +> [ 786.000000] (5:node@c-4.me) 16509409 | 16728096 +> [ 786.000000] (5:node@c-4.me) 16509413 | 16728096 +> [ 786.000000] (5:node@c-4.me) 16509421 | 16728096 +> [ 786.000000] (5:node@c-4.me) 16509437 | 16728096 +> [ 786.000000] (5:node@c-4.me) 16509469 | 16509405 +> [ 786.000000] (5:node@c-4.me) 16509533 | 16509405 +> [ 786.000000] (5:node@c-4.me) 16509661 | 16509405 +> [ 786.000000] (5:node@c-4.me) 16509917 | 16509405 +> [ 786.000000] (5:node@c-4.me) 16510429 | 16509405 +> [ 786.000000] (5:node@c-4.me) 16511453 | 16509405 +> [ 786.000000] (5:node@c-4.me) 16513501 | 16509405 +> [ 786.000000] (5:node@c-4.me) 16517597 | 16509405 +> [ 786.000000] (5:node@c-4.me) 16525789 | 16509405 +> [ 786.000000] (5:node@c-4.me) 16542173 | 16509405 +> [ 786.000000] (5:node@c-4.me) 16574941 | 16509405 +> [ 786.000000] (5:node@c-4.me) 16640477 | 16509405 +> [ 786.000000] (5:node@c-4.me) 16771549 | 16509405 +> [ 786.000000] (5:node@c-4.me) 256477 | 16509405 +> [ 786.000000] (5:node@c-4.me) 780765 | 16509405 +> [ 786.000000] (5:node@c-4.me) 1829341 | 16509405 +> [ 786.000000] (5:node@c-4.me) 3926493 | 16509405 +> [ 786.000000] (5:node@c-4.me) 8120797 | 16509405 +> [ 786.000000] (5:node@c-4.me) Predecessor: 10004760 +> [ 787.000000] (4:node@c-3.me) My finger table: +> [ 787.000000] (4:node@c-3.me) Start | Succ +> [ 787.000000] (4:node@c-3.me) 1319739 | 2015253 +> [ 787.000000] (4:node@c-3.me) 1319740 | 6518808 +> [ 787.000000] (4:node@c-3.me) 1319742 | 2015253 +> [ 787.000000] (4:node@c-3.me) 1319746 | 2015253 +> [ 787.000000] (4:node@c-3.me) 1319754 | 2015253 +> [ 787.000000] (4:node@c-3.me) 1319770 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1319802 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1319866 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1319994 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1320250 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1320762 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1321786 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1323834 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1327930 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1336122 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1352506 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1385274 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1450810 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1581882 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1844026 | 1319738 +> [ 787.000000] (4:node@c-3.me) 2368314 | 1319738 +> [ 787.000000] (4:node@c-3.me) 3416890 | 1319738 +> [ 787.000000] (4:node@c-3.me) 5514042 | 1319738 +> [ 787.000000] (4:node@c-3.me) 9708346 | 1319738 +> [ 787.000000] (4:node@c-3.me) Predecessor: 533744 +> [ 788.000000] (1:node@c-0.me) My finger table: +> [ 788.000000] (1:node@c-0.me) Start | Succ +> [ 788.000000] (1:node@c-0.me) 43 | 366680 +> [ 788.000000] (1:node@c-0.me) 44 | 1319738 +> [ 788.000000] (1:node@c-0.me) 46 | 366680 +> [ 788.000000] (1:node@c-0.me) 50 | 366680 +> [ 788.000000] (1:node@c-0.me) 58 | 366680 +> [ 788.000000] (1:node@c-0.me) 74 | 366680 +> [ 788.000000] (1:node@c-0.me) 106 | 42 +> [ 788.000000] (1:node@c-0.me) 170 | 42 +> [ 788.000000] (1:node@c-0.me) 298 | 42 +> [ 788.000000] (1:node@c-0.me) 554 | 42 +> [ 788.000000] (1:node@c-0.me) 1066 | 42 +> [ 788.000000] (1:node@c-0.me) 2090 | 42 +> [ 788.000000] (1:node@c-0.me) 4138 | 42 +> [ 788.000000] (1:node@c-0.me) 8234 | 42 +> [ 788.000000] (1:node@c-0.me) 16426 | 42 +> [ 788.000000] (1:node@c-0.me) 32810 | 42 +> [ 788.000000] (1:node@c-0.me) 65578 | 42 +> [ 788.000000] (1:node@c-0.me) 131114 | 42 +> [ 788.000000] (1:node@c-0.me) 262186 | 42 +> [ 788.000000] (1:node@c-0.me) 524330 | 42 +> [ 788.000000] (1:node@c-0.me) 1048618 | 42 +> [ 788.000000] (1:node@c-0.me) 2097194 | 42 +> [ 788.000000] (1:node@c-0.me) 4194346 | 42 +> [ 788.000000] (1:node@c-0.me) 8388650 | 42 +> [ 788.000000] (1:node@c-0.me) Predecessor: 16728096 +> [ 793.000000] (3:node@c-2.me) My finger table: +> [ 793.000000] (3:node@c-2.me) Start | Succ +> [ 793.000000] (3:node@c-2.me) 533745 | 1319738 +> [ 793.000000] (3:node@c-2.me) 533746 | 10004760 +> [ 793.000000] (3:node@c-2.me) 533748 | 10004760 +> [ 793.000000] (3:node@c-2.me) 533752 | 6518808 +> [ 793.000000] (3:node@c-2.me) 533760 | 1319738 +> [ 793.000000] (3:node@c-2.me) 533776 | 1319738 +> [ 793.000000] (3:node@c-2.me) 533808 | 533744 +> [ 793.000000] (3:node@c-2.me) 533872 | 533744 +> [ 793.000000] (3:node@c-2.me) 534000 | 533744 +> [ 793.000000] (3:node@c-2.me) 534256 | 533744 +> [ 793.000000] (3:node@c-2.me) 534768 | 533744 +> [ 793.000000] (3:node@c-2.me) 535792 | 533744 +> [ 793.000000] (3:node@c-2.me) 537840 | 533744 +> [ 793.000000] (3:node@c-2.me) 541936 | 533744 +> [ 793.000000] (3:node@c-2.me) 550128 | 533744 +> [ 793.000000] (3:node@c-2.me) 566512 | 533744 +> [ 793.000000] (3:node@c-2.me) 599280 | 533744 +> [ 793.000000] (3:node@c-2.me) 664816 | 533744 +> [ 793.000000] (3:node@c-2.me) 795888 | 533744 +> [ 793.000000] (3:node@c-2.me) 1058032 | 533744 +> [ 793.000000] (3:node@c-2.me) 1582320 | 533744 +> [ 793.000000] (3:node@c-2.me) 2630896 | 533744 +> [ 793.000000] (3:node@c-2.me) 4728048 | 533744 +> [ 793.000000] (3:node@c-2.me) 8922352 | 533744 +> [ 793.000000] (3:node@c-2.me) Predecessor: 366680 +> [ 797.000000] (5:node@c-4.me) My finger table: +> [ 797.000000] (5:node@c-4.me) Start | Succ +> [ 797.000000] (5:node@c-4.me) 16509406 | 16728096 +> [ 797.000000] (5:node@c-4.me) 16509407 | 366680 +> [ 797.000000] (5:node@c-4.me) 16509409 | 16728096 +> [ 797.000000] (5:node@c-4.me) 16509413 | 16728096 +> [ 797.000000] (5:node@c-4.me) 16509421 | 16728096 +> [ 797.000000] (5:node@c-4.me) 16509437 | 16728096 +> [ 797.000000] (5:node@c-4.me) 16509469 | 16509405 +> [ 797.000000] (5:node@c-4.me) 16509533 | 16509405 +> [ 797.000000] (5:node@c-4.me) 16509661 | 16509405 +> [ 797.000000] (5:node@c-4.me) 16509917 | 16509405 +> [ 797.000000] (5:node@c-4.me) 16510429 | 16509405 +> [ 797.000000] (5:node@c-4.me) 16511453 | 16509405 +> [ 797.000000] (5:node@c-4.me) 16513501 | 16509405 +> [ 797.000000] (5:node@c-4.me) 16517597 | 16509405 +> [ 797.000000] (5:node@c-4.me) 16525789 | 16509405 +> [ 797.000000] (5:node@c-4.me) 16542173 | 16509405 +> [ 797.000000] (5:node@c-4.me) 16574941 | 16509405 +> [ 797.000000] (5:node@c-4.me) 16640477 | 16509405 +> [ 797.000000] (5:node@c-4.me) 16771549 | 16509405 +> [ 797.000000] (5:node@c-4.me) 256477 | 16509405 +> [ 797.000000] (5:node@c-4.me) 780765 | 16509405 +> [ 797.000000] (5:node@c-4.me) 1829341 | 16509405 +> [ 797.000000] (5:node@c-4.me) 3926493 | 16509405 +> [ 797.000000] (5:node@c-4.me) 8120797 | 16509405 +> [ 797.000000] (5:node@c-4.me) Predecessor: 10874876 +> [ 798.000000] (8:node@c-7.me) My finger table: +> [ 798.000000] (8:node@c-7.me) Start | Succ +> [ 798.000000] (8:node@c-7.me) 10004761 | 16509405 +> [ 798.000000] (8:node@c-7.me) 10004762 | 16509405 +> [ 798.000000] (8:node@c-7.me) 10004764 | 16509405 +> [ 798.000000] (8:node@c-7.me) 10004768 | 16509405 +> [ 798.000000] (8:node@c-7.me) 10004776 | 16509405 +> [ 798.000000] (8:node@c-7.me) 10004792 | 16509405 +> [ 798.000000] (8:node@c-7.me) 10004824 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10004888 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10005016 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10005272 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10005784 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10006808 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10008856 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10012952 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10021144 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10037528 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10070296 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10135832 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10266904 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10529048 | 10004760 +> [ 798.000000] (8:node@c-7.me) 11053336 | 10004760 +> [ 798.000000] (8:node@c-7.me) 12101912 | 10004760 +> [ 798.000000] (8:node@c-7.me) 14199064 | 10004760 +> [ 798.000000] (8:node@c-7.me) 1616152 | 10004760 +> [ 798.000000] (8:node@c-7.me) Predecessor: 6518808 +> [ 801.000000] (9:node@c-8.me) My finger table: +> [ 801.000000] (9:node@c-8.me) Start | Succ +> [ 801.000000] (9:node@c-8.me) 6518809 | 10004760 +> [ 801.000000] (9:node@c-8.me) 6518810 | 16728096 +> [ 801.000000] (9:node@c-8.me) 6518812 | 10004760 +> [ 801.000000] (9:node@c-8.me) 6518816 | 10004760 +> [ 801.000000] (9:node@c-8.me) 6518824 | 10004760 +> [ 801.000000] (9:node@c-8.me) 6518840 | 10004760 +> [ 801.000000] (9:node@c-8.me) 6518872 | 6518808 +> [ 801.000000] (9:node@c-8.me) 6518936 | 6518808 +> [ 801.000000] (9:node@c-8.me) 6519064 | 6518808 +> [ 801.000000] (9:node@c-8.me) 6519320 | 6518808 +> [ 801.000000] (9:node@c-8.me) 6519832 | 6518808 +> [ 801.000000] (9:node@c-8.me) 6520856 | 6518808 +> [ 801.000000] (9:node@c-8.me) 6522904 | 6518808 +> [ 801.000000] (9:node@c-8.me) 6527000 | 6518808 +> [ 801.000000] (9:node@c-8.me) 6535192 | 6518808 +> [ 801.000000] (9:node@c-8.me) 6551576 | 6518808 +> [ 801.000000] (9:node@c-8.me) 6584344 | 6518808 +> [ 801.000000] (9:node@c-8.me) 6649880 | 6518808 +> [ 801.000000] (9:node@c-8.me) 6780952 | 6518808 +> [ 801.000000] (9:node@c-8.me) 7043096 | 6518808 +> [ 801.000000] (9:node@c-8.me) 7567384 | 6518808 +> [ 801.000000] (9:node@c-8.me) 8615960 | 6518808 +> [ 801.000000] (9:node@c-8.me) 10713112 | 6518808 +> [ 801.000000] (9:node@c-8.me) 14907416 | 6518808 +> [ 801.000000] (9:node@c-8.me) Predecessor: 2015253 +> [ 804.000000] (2:node@c-1.me) My finger table: +> [ 804.000000] (2:node@c-1.me) Start | Succ +> [ 804.000000] (2:node@c-1.me) 366681 | 533744 +> [ 804.000000] (2:node@c-1.me) 366682 | 1319738 +> [ 804.000000] (2:node@c-1.me) 366684 | 1319738 +> [ 804.000000] (2:node@c-1.me) 366688 | 1319738 +> [ 804.000000] (2:node@c-1.me) 366696 | 533744 +> [ 804.000000] (2:node@c-1.me) 366712 | 533744 +> [ 804.000000] (2:node@c-1.me) 366744 | 366680 +> [ 804.000000] (2:node@c-1.me) 366808 | 366680 +> [ 804.000000] (2:node@c-1.me) 366936 | 366680 +> [ 804.000000] (2:node@c-1.me) 367192 | 366680 +> [ 804.000000] (2:node@c-1.me) 367704 | 366680 +> [ 804.000000] (2:node@c-1.me) 368728 | 366680 +> [ 804.000000] (2:node@c-1.me) 370776 | 366680 +> [ 804.000000] (2:node@c-1.me) 374872 | 366680 +> [ 804.000000] (2:node@c-1.me) 383064 | 366680 +> [ 804.000000] (2:node@c-1.me) 399448 | 366680 +> [ 804.000000] (2:node@c-1.me) 432216 | 366680 +> [ 804.000000] (2:node@c-1.me) 497752 | 366680 +> [ 804.000000] (2:node@c-1.me) 628824 | 366680 +> [ 804.000000] (2:node@c-1.me) 890968 | 366680 +> [ 804.000000] (2:node@c-1.me) 1415256 | 366680 +> [ 804.000000] (2:node@c-1.me) 2463832 | 366680 +> [ 804.000000] (2:node@c-1.me) 4560984 | 366680 +> [ 804.000000] (2:node@c-1.me) 8755288 | 366680 +> [ 804.000000] (2:node@c-1.me) Predecessor: 42 +> [ 843.000000] (10:node@c-9.me) My finger table: +> [ 843.000000] (10:node@c-9.me) Start | Succ +> [ 843.000000] (10:node@c-9.me) 2015254 | 6518808 +> [ 843.000000] (10:node@c-9.me) 2015255 | 16728096 +> [ 843.000000] (10:node@c-9.me) 2015257 | 6518808 +> [ 843.000000] (10:node@c-9.me) 2015261 | 6518808 +> [ 843.000000] (10:node@c-9.me) 2015269 | 6518808 +> [ 843.000000] (10:node@c-9.me) 2015285 | 6518808 +> [ 843.000000] (10:node@c-9.me) 2015317 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2015381 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2015509 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2015765 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2016277 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2017301 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2019349 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2023445 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2031637 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2048021 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2080789 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2146325 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2277397 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2539541 | 2015253 +> [ 843.000000] (10:node@c-9.me) 3063829 | 2015253 +> [ 843.000000] (10:node@c-9.me) 4112405 | 2015253 +> [ 843.000000] (10:node@c-9.me) 6209557 | 2015253 +> [ 843.000000] (10:node@c-9.me) 10403861 | 2015253 +> [ 843.000000] (10:node@c-9.me) Predecessor: 1319738 +> [ 865.000000] (6:node@c-5.me) My finger table: +> [ 865.000000] (6:node@c-5.me) Start | Succ +> [ 865.000000] (6:node@c-5.me) 10874877 | 16509405 +> [ 865.000000] (6:node@c-5.me) 10874878 | 533744 +> [ 865.000000] (6:node@c-5.me) 10874880 | 533744 +> [ 865.000000] (6:node@c-5.me) 10874884 | 533744 +> [ 865.000000] (6:node@c-5.me) 10874892 | 533744 +> [ 865.000000] (6:node@c-5.me) 10874908 | 16728096 +> [ 865.000000] (6:node@c-5.me) 10874940 | 16509405 +> [ 865.000000] (6:node@c-5.me) 10875004 | 10874876 +> [ 865.000000] (6:node@c-5.me) 10875132 | 10874876 +> [ 865.000000] (6:node@c-5.me) 10875388 | 10874876 +> [ 865.000000] (6:node@c-5.me) 10875900 | 10874876 +> [ 865.000000] (6:node@c-5.me) 10876924 | 10874876 +> [ 865.000000] (6:node@c-5.me) 10878972 | 10874876 +> [ 865.000000] (6:node@c-5.me) 10883068 | 10874876 +> [ 865.000000] (6:node@c-5.me) 10891260 | 10874876 +> [ 865.000000] (6:node@c-5.me) 10907644 | 10874876 +> [ 865.000000] (6:node@c-5.me) 10940412 | 10874876 +> [ 865.000000] (6:node@c-5.me) 11005948 | 10874876 +> [ 865.000000] (6:node@c-5.me) 11137020 | 10874876 +> [ 865.000000] (6:node@c-5.me) 11399164 | 10874876 +> [ 865.000000] (6:node@c-5.me) 11923452 | 10874876 +> [ 865.000000] (6:node@c-5.me) 12972028 | 10874876 +> [ 865.000000] (6:node@c-5.me) 15069180 | 10874876 +> [ 865.000000] (6:node@c-5.me) 2486268 | 10874876 +> [ 865.000000] (6:node@c-5.me) Predecessor: -1 +> [ 870.000000] (6:node@c-5.me) My finger table: +> [ 870.000000] (6:node@c-5.me) Start | Succ +> [ 870.000000] (6:node@c-5.me) 10874877 | 16509405 +> [ 870.000000] (6:node@c-5.me) 10874878 | 533744 +> [ 870.000000] (6:node@c-5.me) 10874880 | 533744 +> [ 870.000000] (6:node@c-5.me) 10874884 | 533744 +> [ 870.000000] (6:node@c-5.me) 10874892 | 533744 +> [ 870.000000] (6:node@c-5.me) 10874908 | 16728096 +> [ 870.000000] (6:node@c-5.me) 10874940 | 16509405 +> [ 870.000000] (6:node@c-5.me) 10875004 | 10874876 +> [ 870.000000] (6:node@c-5.me) 10875132 | 10874876 +> [ 870.000000] (6:node@c-5.me) 10875388 | 10874876 +> [ 870.000000] (6:node@c-5.me) 10875900 | 10874876 +> [ 870.000000] (6:node@c-5.me) 10876924 | 10874876 +> [ 870.000000] (6:node@c-5.me) 10878972 | 10874876 +> [ 870.000000] (6:node@c-5.me) 10883068 | 10874876 +> [ 870.000000] (6:node@c-5.me) 10891260 | 10874876 +> [ 870.000000] (6:node@c-5.me) 10907644 | 10874876 +> [ 870.000000] (6:node@c-5.me) 10940412 | 10874876 +> [ 870.000000] (6:node@c-5.me) 11005948 | 10874876 +> [ 870.000000] (6:node@c-5.me) 11137020 | 10874876 +> [ 870.000000] (6:node@c-5.me) 11399164 | 10874876 +> [ 870.000000] (6:node@c-5.me) 11923452 | 10874876 +> [ 870.000000] (6:node@c-5.me) 12972028 | 10874876 +> [ 870.000000] (6:node@c-5.me) 15069180 | 10874876 +> [ 870.000000] (6:node@c-5.me) 2486268 | 10874876 +> [ 870.000000] (6:node@c-5.me) Predecessor: 10004760 +> [ 910.000000] (5:node@c-4.me) My finger table: +> [ 910.000000] (5:node@c-4.me) Start | Succ +> [ 910.000000] (5:node@c-4.me) 16509406 | 16728096 +> [ 910.000000] (5:node@c-4.me) 16509407 | 366680 +> [ 910.000000] (5:node@c-4.me) 16509409 | 16728096 +> [ 910.000000] (5:node@c-4.me) 16509413 | 16728096 +> [ 910.000000] (5:node@c-4.me) 16509421 | 16728096 +> [ 910.000000] (5:node@c-4.me) 16509437 | 16728096 +> [ 910.000000] (5:node@c-4.me) 16509469 | 16728096 +> [ 910.000000] (5:node@c-4.me) 16509533 | 16509405 +> [ 910.000000] (5:node@c-4.me) 16509661 | 16509405 +> [ 910.000000] (5:node@c-4.me) 16509917 | 16509405 +> [ 910.000000] (5:node@c-4.me) 16510429 | 16509405 +> [ 910.000000] (5:node@c-4.me) 16511453 | 16509405 +> [ 910.000000] (5:node@c-4.me) 16513501 | 16509405 +> [ 910.000000] (5:node@c-4.me) 16517597 | 16509405 +> [ 910.000000] (5:node@c-4.me) 16525789 | 16509405 +> [ 910.000000] (5:node@c-4.me) 16542173 | 16509405 +> [ 910.000000] (5:node@c-4.me) 16574941 | 16509405 +> [ 910.000000] (5:node@c-4.me) 16640477 | 16509405 +> [ 910.000000] (5:node@c-4.me) 16771549 | 16509405 +> [ 910.000000] (5:node@c-4.me) 256477 | 16509405 +> [ 910.000000] (5:node@c-4.me) 780765 | 16509405 +> [ 910.000000] (5:node@c-4.me) 1829341 | 16509405 +> [ 910.000000] (5:node@c-4.me) 3926493 | 16509405 +> [ 910.000000] (5:node@c-4.me) 8120797 | 16509405 +> [ 910.000000] (5:node@c-4.me) Predecessor: 10874876 +> [ 912.000000] (1:node@c-0.me) My finger table: +> [ 912.000000] (1:node@c-0.me) Start | Succ +> [ 912.000000] (1:node@c-0.me) 43 | 366680 +> [ 912.000000] (1:node@c-0.me) 44 | 1319738 +> [ 912.000000] (1:node@c-0.me) 46 | 366680 +> [ 912.000000] (1:node@c-0.me) 50 | 366680 +> [ 912.000000] (1:node@c-0.me) 58 | 366680 +> [ 912.000000] (1:node@c-0.me) 74 | 366680 +> [ 912.000000] (1:node@c-0.me) 106 | 366680 +> [ 912.000000] (1:node@c-0.me) 170 | 42 +> [ 912.000000] (1:node@c-0.me) 298 | 42 +> [ 912.000000] (1:node@c-0.me) 554 | 42 +> [ 912.000000] (1:node@c-0.me) 1066 | 42 +> [ 912.000000] (1:node@c-0.me) 2090 | 42 +> [ 912.000000] (1:node@c-0.me) 4138 | 42 +> [ 912.000000] (1:node@c-0.me) 8234 | 42 +> [ 912.000000] (1:node@c-0.me) 16426 | 42 +> [ 912.000000] (1:node@c-0.me) 32810 | 42 +> [ 912.000000] (1:node@c-0.me) 65578 | 42 +> [ 912.000000] (1:node@c-0.me) 131114 | 42 +> [ 912.000000] (1:node@c-0.me) 262186 | 42 +> [ 912.000000] (1:node@c-0.me) 524330 | 42 +> [ 912.000000] (1:node@c-0.me) 1048618 | 42 +> [ 912.000000] (1:node@c-0.me) 2097194 | 42 +> [ 912.000000] (1:node@c-0.me) 4194346 | 42 +> [ 912.000000] (1:node@c-0.me) 8388650 | 42 +> [ 912.000000] (1:node@c-0.me) Predecessor: 16728096 +> [ 913.000000] (3:node@c-2.me) My finger table: +> [ 913.000000] (3:node@c-2.me) Start | Succ +> [ 913.000000] (3:node@c-2.me) 533745 | 1319738 +> [ 913.000000] (3:node@c-2.me) 533746 | 10004760 +> [ 913.000000] (3:node@c-2.me) 533748 | 10004760 +> [ 913.000000] (3:node@c-2.me) 533752 | 6518808 +> [ 913.000000] (3:node@c-2.me) 533760 | 1319738 +> [ 913.000000] (3:node@c-2.me) 533776 | 1319738 +> [ 913.000000] (3:node@c-2.me) 533808 | 1319738 +> [ 913.000000] (3:node@c-2.me) 533872 | 533744 +> [ 913.000000] (3:node@c-2.me) 534000 | 533744 +> [ 913.000000] (3:node@c-2.me) 534256 | 533744 +> [ 913.000000] (3:node@c-2.me) 534768 | 533744 +> [ 913.000000] (3:node@c-2.me) 535792 | 533744 +> [ 913.000000] (3:node@c-2.me) 537840 | 533744 +> [ 913.000000] (3:node@c-2.me) 541936 | 533744 +> [ 913.000000] (3:node@c-2.me) 550128 | 533744 +> [ 913.000000] (3:node@c-2.me) 566512 | 533744 +> [ 913.000000] (3:node@c-2.me) 599280 | 533744 +> [ 913.000000] (3:node@c-2.me) 664816 | 533744 +> [ 913.000000] (3:node@c-2.me) 795888 | 533744 +> [ 913.000000] (3:node@c-2.me) 1058032 | 533744 +> [ 913.000000] (3:node@c-2.me) 1582320 | 533744 +> [ 913.000000] (3:node@c-2.me) 2630896 | 533744 +> [ 913.000000] (3:node@c-2.me) 4728048 | 533744 +> [ 913.000000] (3:node@c-2.me) 8922352 | 533744 +> [ 913.000000] (3:node@c-2.me) Predecessor: 366680 +> [ 921.000000] (8:node@c-7.me) My finger table: +> [ 921.000000] (8:node@c-7.me) Start | Succ +> [ 921.000000] (8:node@c-7.me) 10004761 | 10874876 +> [ 921.000000] (8:node@c-7.me) 10004762 | 16509405 +> [ 921.000000] (8:node@c-7.me) 10004764 | 16509405 +> [ 921.000000] (8:node@c-7.me) 10004768 | 16509405 +> [ 921.000000] (8:node@c-7.me) 10004776 | 16509405 +> [ 921.000000] (8:node@c-7.me) 10004792 | 16509405 +> [ 921.000000] (8:node@c-7.me) 10004824 | 10874876 +> [ 921.000000] (8:node@c-7.me) 10004888 | 10004760 +> [ 921.000000] (8:node@c-7.me) 10005016 | 10004760 +> [ 921.000000] (8:node@c-7.me) 10005272 | 10004760 +> [ 921.000000] (8:node@c-7.me) 10005784 | 10004760 +> [ 921.000000] (8:node@c-7.me) 10006808 | 10004760 +> [ 921.000000] (8:node@c-7.me) 10008856 | 10004760 +> [ 921.000000] (8:node@c-7.me) 10012952 | 10004760 +> [ 921.000000] (8:node@c-7.me) 10021144 | 10004760 +> [ 921.000000] (8:node@c-7.me) 10037528 | 10004760 +> [ 921.000000] (8:node@c-7.me) 10070296 | 10004760 +> [ 921.000000] (8:node@c-7.me) 10135832 | 10004760 +> [ 921.000000] (8:node@c-7.me) 10266904 | 10004760 +> [ 921.000000] (8:node@c-7.me) 10529048 | 10004760 +> [ 921.000000] (8:node@c-7.me) 11053336 | 10004760 +> [ 921.000000] (8:node@c-7.me) 12101912 | 10004760 +> [ 921.000000] (8:node@c-7.me) 14199064 | 10004760 +> [ 921.000000] (8:node@c-7.me) 1616152 | 10004760 +> [ 921.000000] (8:node@c-7.me) Predecessor: 6518808 +> [ 964.000000] (2:node@c-1.me) My finger table: +> [ 964.000000] (2:node@c-1.me) Start | Succ +> [ 964.000000] (2:node@c-1.me) 366681 | 533744 +> [ 964.000000] (2:node@c-1.me) 366682 | 1319738 +> [ 964.000000] (2:node@c-1.me) 366684 | 1319738 +> [ 964.000000] (2:node@c-1.me) 366688 | 1319738 +> [ 964.000000] (2:node@c-1.me) 366696 | 533744 +> [ 964.000000] (2:node@c-1.me) 366712 | 533744 +> [ 964.000000] (2:node@c-1.me) 366744 | 533744 +> [ 964.000000] (2:node@c-1.me) 366808 | 366680 +> [ 964.000000] (2:node@c-1.me) 366936 | 366680 +> [ 964.000000] (2:node@c-1.me) 367192 | 366680 +> [ 964.000000] (2:node@c-1.me) 367704 | 366680 +> [ 964.000000] (2:node@c-1.me) 368728 | 366680 +> [ 964.000000] (2:node@c-1.me) 370776 | 366680 +> [ 964.000000] (2:node@c-1.me) 374872 | 366680 +> [ 964.000000] (2:node@c-1.me) 383064 | 366680 +> [ 964.000000] (2:node@c-1.me) 399448 | 366680 +> [ 964.000000] (2:node@c-1.me) 432216 | 366680 +> [ 964.000000] (2:node@c-1.me) 497752 | 366680 +> [ 964.000000] (2:node@c-1.me) 628824 | 366680 +> [ 964.000000] (2:node@c-1.me) 890968 | 366680 +> [ 964.000000] (2:node@c-1.me) 1415256 | 366680 +> [ 964.000000] (2:node@c-1.me) 2463832 | 366680 +> [ 964.000000] (2:node@c-1.me) 4560984 | 366680 +> [ 964.000000] (2:node@c-1.me) 8755288 | 366680 +> [ 964.000000] (2:node@c-1.me) Predecessor: 42 +> [ 966.000000] (4:node@c-3.me) My finger table: +> [ 966.000000] (4:node@c-3.me) Start | Succ +> [ 966.000000] (4:node@c-3.me) 1319739 | 2015253 +> [ 966.000000] (4:node@c-3.me) 1319740 | 6518808 +> [ 966.000000] (4:node@c-3.me) 1319742 | 2015253 +> [ 966.000000] (4:node@c-3.me) 1319746 | 2015253 +> [ 966.000000] (4:node@c-3.me) 1319754 | 2015253 +> [ 966.000000] (4:node@c-3.me) 1319770 | 2015253 +> [ 966.000000] (4:node@c-3.me) 1319802 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1319866 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1319994 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1320250 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1320762 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1321786 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1323834 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1327930 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1336122 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1352506 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1385274 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1450810 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1581882 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1844026 | 1319738 +> [ 966.000000] (4:node@c-3.me) 2368314 | 1319738 +> [ 966.000000] (4:node@c-3.me) 3416890 | 1319738 +> [ 966.000000] (4:node@c-3.me) 5514042 | 1319738 +> [ 966.000000] (4:node@c-3.me) 9708346 | 1319738 +> [ 966.000000] (4:node@c-3.me) Predecessor: 533744 +> [ 966.000000] (7:node@c-6.me) My finger table: +> [ 966.000000] (7:node@c-6.me) Start | Succ +> [ 966.000000] (7:node@c-6.me) 16728097 | 42 +> [ 966.000000] (7:node@c-6.me) 16728098 | 42 +> [ 966.000000] (7:node@c-6.me) 16728100 | 42 +> [ 966.000000] (7:node@c-6.me) 16728104 | 42 +> [ 966.000000] (7:node@c-6.me) 16728112 | 42 +> [ 966.000000] (7:node@c-6.me) 16728128 | 42 +> [ 966.000000] (7:node@c-6.me) 16728160 | 42 +> [ 966.000000] (7:node@c-6.me) 16728224 | 16728096 +> [ 966.000000] (7:node@c-6.me) 16728352 | 16728096 +> [ 966.000000] (7:node@c-6.me) 16728608 | 16728096 +> [ 966.000000] (7:node@c-6.me) 16729120 | 16728096 +> [ 966.000000] (7:node@c-6.me) 16730144 | 16728096 +> [ 966.000000] (7:node@c-6.me) 16732192 | 16728096 +> [ 966.000000] (7:node@c-6.me) 16736288 | 16728096 +> [ 966.000000] (7:node@c-6.me) 16744480 | 16728096 +> [ 966.000000] (7:node@c-6.me) 16760864 | 16728096 +> [ 966.000000] (7:node@c-6.me) 16416 | 16728096 +> [ 966.000000] (7:node@c-6.me) 81952 | 16728096 +> [ 966.000000] (7:node@c-6.me) 213024 | 16728096 +> [ 966.000000] (7:node@c-6.me) 475168 | 16728096 +> [ 966.000000] (7:node@c-6.me) 999456 | 16728096 +> [ 966.000000] (7:node@c-6.me) 2048032 | 16728096 +> [ 966.000000] (7:node@c-6.me) 4145184 | 16728096 +> [ 966.000000] (7:node@c-6.me) 8339488 | 16728096 +> [ 966.000000] (7:node@c-6.me) Predecessor: 16509405 +> [ 973.000000] (9:node@c-8.me) My finger table: +> [ 973.000000] (9:node@c-8.me) Start | Succ +> [ 973.000000] (9:node@c-8.me) 6518809 | 10004760 +> [ 973.000000] (9:node@c-8.me) 6518810 | 16728096 +> [ 973.000000] (9:node@c-8.me) 6518812 | 10004760 +> [ 973.000000] (9:node@c-8.me) 6518816 | 10004760 +> [ 973.000000] (9:node@c-8.me) 6518824 | 10004760 +> [ 973.000000] (9:node@c-8.me) 6518840 | 10004760 +> [ 973.000000] (9:node@c-8.me) 6518872 | 10004760 +> [ 973.000000] (9:node@c-8.me) 6518936 | 6518808 +> [ 973.000000] (9:node@c-8.me) 6519064 | 6518808 +> [ 973.000000] (9:node@c-8.me) 6519320 | 6518808 +> [ 973.000000] (9:node@c-8.me) 6519832 | 6518808 +> [ 973.000000] (9:node@c-8.me) 6520856 | 6518808 +> [ 973.000000] (9:node@c-8.me) 6522904 | 6518808 +> [ 973.000000] (9:node@c-8.me) 6527000 | 6518808 +> [ 973.000000] (9:node@c-8.me) 6535192 | 6518808 +> [ 973.000000] (9:node@c-8.me) 6551576 | 6518808 +> [ 973.000000] (9:node@c-8.me) 6584344 | 6518808 +> [ 973.000000] (9:node@c-8.me) 6649880 | 6518808 +> [ 973.000000] (9:node@c-8.me) 6780952 | 6518808 +> [ 973.000000] (9:node@c-8.me) 7043096 | 6518808 +> [ 973.000000] (9:node@c-8.me) 7567384 | 6518808 +> [ 973.000000] (9:node@c-8.me) 8615960 | 6518808 +> [ 973.000000] (9:node@c-8.me) 10713112 | 6518808 +> [ 973.000000] (9:node@c-8.me) 14907416 | 6518808 +> [ 973.000000] (9:node@c-8.me) Predecessor: 2015253 +> [ 979.000000] (10:node@c-9.me) My finger table: +> [ 979.000000] (10:node@c-9.me) Start | Succ +> [ 979.000000] (10:node@c-9.me) 2015254 | 6518808 +> [ 979.000000] (10:node@c-9.me) 2015255 | 16728096 +> [ 979.000000] (10:node@c-9.me) 2015257 | 6518808 +> [ 979.000000] (10:node@c-9.me) 2015261 | 6518808 +> [ 979.000000] (10:node@c-9.me) 2015269 | 6518808 +> [ 979.000000] (10:node@c-9.me) 2015285 | 6518808 +> [ 979.000000] (10:node@c-9.me) 2015317 | 6518808 +> [ 979.000000] (10:node@c-9.me) 2015381 | 2015253 +> [ 979.000000] (10:node@c-9.me) 2015509 | 2015253 +> [ 979.000000] (10:node@c-9.me) 2015765 | 2015253 +> [ 979.000000] (10:node@c-9.me) 2016277 | 2015253 +> [ 979.000000] (10:node@c-9.me) 2017301 | 2015253 +> [ 979.000000] (10:node@c-9.me) 2019349 | 2015253 +> [ 979.000000] (10:node@c-9.me) 2023445 | 2015253 +> [ 979.000000] (10:node@c-9.me) 2031637 | 2015253 +> [ 979.000000] (10:node@c-9.me) 2048021 | 2015253 +> [ 979.000000] (10:node@c-9.me) 2080789 | 2015253 +> [ 979.000000] (10:node@c-9.me) 2146325 | 2015253 +> [ 979.000000] (10:node@c-9.me) 2277397 | 2015253 +> [ 979.000000] (10:node@c-9.me) 2539541 | 2015253 +> [ 979.000000] (10:node@c-9.me) 3063829 | 2015253 +> [ 979.000000] (10:node@c-9.me) 4112405 | 2015253 +> [ 979.000000] (10:node@c-9.me) 6209557 | 2015253 +> [ 979.000000] (10:node@c-9.me) 10403861 | 2015253 +> [ 979.000000] (10:node@c-9.me) Predecessor: 1319738 +> [ 987.000000] (6:node@c-5.me) My finger table: +> [ 987.000000] (6:node@c-5.me) Start | Succ +> [ 987.000000] (6:node@c-5.me) 10874877 | 16509405 +> [ 987.000000] (6:node@c-5.me) 10874878 | 533744 +> [ 987.000000] (6:node@c-5.me) 10874880 | 533744 +> [ 987.000000] (6:node@c-5.me) 10874884 | 533744 +> [ 987.000000] (6:node@c-5.me) 10874892 | 533744 +> [ 987.000000] (6:node@c-5.me) 10874908 | 16728096 +> [ 987.000000] (6:node@c-5.me) 10874940 | 16509405 +> [ 987.000000] (6:node@c-5.me) 10875004 | 16509405 +> [ 987.000000] (6:node@c-5.me) 10875132 | 10874876 +> [ 987.000000] (6:node@c-5.me) 10875388 | 10874876 +> [ 987.000000] (6:node@c-5.me) 10875900 | 10874876 +> [ 987.000000] (6:node@c-5.me) 10876924 | 10874876 +> [ 987.000000] (6:node@c-5.me) 10878972 | 10874876 +> [ 987.000000] (6:node@c-5.me) 10883068 | 10874876 +> [ 987.000000] (6:node@c-5.me) 10891260 | 10874876 +> [ 987.000000] (6:node@c-5.me) 10907644 | 10874876 +> [ 987.000000] (6:node@c-5.me) 10940412 | 10874876 +> [ 987.000000] (6:node@c-5.me) 11005948 | 10874876 +> [ 987.000000] (6:node@c-5.me) 11137020 | 10874876 +> [ 987.000000] (6:node@c-5.me) 11399164 | 10874876 +> [ 987.000000] (6:node@c-5.me) 11923452 | 10874876 +> [ 987.000000] (6:node@c-5.me) 12972028 | 10874876 +> [ 987.000000] (6:node@c-5.me) 15069180 | 10874876 +> [ 987.000000] (6:node@c-5.me) 2486268 | 10874876 +> [ 987.000000] (6:node@c-5.me) Predecessor: 10004760 +> [1196.000000] (0:@) Messages created: 1827 +> [1196.000000] (0:@) Simulated time: 1196 \ No newline at end of file diff --git a/examples/msg/chord/chord_crosstraffic.tesh b/examples/msg/chord/chord_crosstraffic.tesh index dce7b71cd0..78b5acc4ad 100644 --- a/examples/msg/chord/chord_crosstraffic.tesh +++ b/examples/msg/chord/chord_crosstraffic.tesh @@ -128,314 +128,296 @@ $ $SG_TEST_EXENV ${bindir:=.}/chord$EXEEXT -nb_bits=6 ${srcdir:=.}/../msg_platfo > [141.383343] (1:node@Gatien) 0 | 48 > [141.383343] (1:node@Gatien) 16 | 48 > [141.383343] (1:node@Gatien) Predecessor: 42 -> [187.430835] (2:node@McGee) My finger table: -> [187.430835] (2:node@McGee) Start | Succ -> [187.430835] (2:node@McGee) 43 | 48 -> [187.430835] (2:node@McGee) 44 | 42 -> [187.430835] (2:node@McGee) 46 | 42 -> [187.430835] (2:node@McGee) 50 | 42 -> [187.430835] (2:node@McGee) 58 | 42 -> [187.430835] (2:node@McGee) 10 | 42 -> [187.430835] (2:node@McGee) Predecessor: 8 -> [224.180962] (2:node@McGee) My finger table: -> [224.180962] (2:node@McGee) Start | Succ -> [224.180962] (2:node@McGee) 43 | 48 -> [224.180962] (2:node@McGee) 44 | 42 -> [224.180962] (2:node@McGee) 46 | 42 -> [224.180962] (2:node@McGee) 50 | 42 -> [224.180962] (2:node@McGee) 58 | 42 -> [224.180962] (2:node@McGee) 10 | 42 -> [224.180962] (2:node@McGee) Predecessor: 38 -> [238.097222] (7:node@Boivin) My finger table: -> [238.097222] (7:node@Boivin) Start | Succ -> [238.097222] (7:node@Boivin) 9 | 38 -> [238.097222] (7:node@Boivin) 10 | 8 -> [238.097222] (7:node@Boivin) 12 | 8 -> [238.097222] (7:node@Boivin) 16 | 8 -> [238.097222] (7:node@Boivin) 24 | 8 -> [238.097222] (7:node@Boivin) 40 | 8 -> [238.097222] (7:node@Boivin) Predecessor: 1 -> [244.544647] (1:node@Gatien) My finger table: -> [244.544647] (1:node@Gatien) Start | Succ -> [244.544647] (1:node@Gatien) 49 | 1 -> [244.544647] (1:node@Gatien) 50 | 1 -> [244.544647] (1:node@Gatien) 52 | 48 -> [244.544647] (1:node@Gatien) 56 | 48 -> [244.544647] (1:node@Gatien) 0 | 48 -> [244.544647] (1:node@Gatien) 16 | 48 -> [244.544647] (1:node@Gatien) Predecessor: 42 -> [251.309994] (7:node@Boivin) My finger table: -> [251.309994] (7:node@Boivin) Start | Succ -> [251.309994] (7:node@Boivin) 9 | 38 -> [251.309994] (7:node@Boivin) 10 | 38 -> [251.309994] (7:node@Boivin) 12 | 8 -> [251.309994] (7:node@Boivin) 16 | 8 -> [251.309994] (7:node@Boivin) 24 | 8 -> [251.309994] (7:node@Boivin) 40 | 8 -> [251.309994] (7:node@Boivin) Predecessor: 1 -> [252.819580] (2:node@McGee) My finger table: -> [252.819580] (2:node@McGee) Start | Succ -> [252.819580] (2:node@McGee) 43 | 48 -> [252.819580] (2:node@McGee) 44 | 48 -> [252.819580] (2:node@McGee) 46 | 42 -> [252.819580] (2:node@McGee) 50 | 42 -> [252.819580] (2:node@McGee) 58 | 42 -> [252.819580] (2:node@McGee) 10 | 42 -> [252.819580] (2:node@McGee) Predecessor: 38 -> [268.906974] (6:node@Jean_Yves) My finger table: -> [268.906974] (6:node@Jean_Yves) Start | Succ -> [268.906974] (6:node@Jean_Yves) 15 | 38 -> [268.906974] (6:node@Jean_Yves) 16 | 38 -> [268.906974] (6:node@Jean_Yves) 18 | 14 -> [268.906974] (6:node@Jean_Yves) 22 | 14 -> [268.906974] (6:node@Jean_Yves) 30 | 14 -> [268.906974] (6:node@Jean_Yves) 46 | 14 -> [268.906974] (6:node@Jean_Yves) Predecessor: -1 -> [272.587495] (3:node@iRMX) My finger table: -> [272.587495] (3:node@iRMX) Start | Succ -> [272.587495] (3:node@iRMX) 39 | 42 -> [272.587495] (3:node@iRMX) 40 | 38 -> [272.587495] (3:node@iRMX) 42 | 38 -> [272.587495] (3:node@iRMX) 46 | 38 -> [272.587495] (3:node@iRMX) 54 | 38 -> [272.587495] (3:node@iRMX) 6 | 38 -> [272.587495] (3:node@iRMX) Predecessor: 8 -> [275.995507] (8:node@Jacquelin) My finger table: -> [275.995507] (8:node@Jacquelin) Start | Succ -> [275.995507] (8:node@Jacquelin) 2 | 8 -> [275.995507] (8:node@Jacquelin) 3 | 8 -> [275.995507] (8:node@Jacquelin) 5 | 1 -> [275.995507] (8:node@Jacquelin) 9 | 1 -> [275.995507] (8:node@Jacquelin) 17 | 1 -> [275.995507] (8:node@Jacquelin) 33 | 1 -> [275.995507] (8:node@Jacquelin) Predecessor: 48 -> [278.895082] (3:node@iRMX) My finger table: -> [278.895082] (3:node@iRMX) Start | Succ -> [278.895082] (3:node@iRMX) 39 | 42 -> [278.895082] (3:node@iRMX) 40 | 38 -> [278.895082] (3:node@iRMX) 42 | 38 -> [278.895082] (3:node@iRMX) 46 | 38 -> [278.895082] (3:node@iRMX) 54 | 38 -> [278.895082] (3:node@iRMX) 6 | 38 -> [278.895082] (3:node@iRMX) Predecessor: 14 -> [285.028772] (3:node@iRMX) My finger table: -> [285.028772] (3:node@iRMX) Start | Succ -> [285.028772] (3:node@iRMX) 39 | 42 -> [285.028772] (3:node@iRMX) 40 | 42 -> [285.028772] (3:node@iRMX) 42 | 38 -> [285.028772] (3:node@iRMX) 46 | 38 -> [285.028772] (3:node@iRMX) 54 | 38 -> [285.028772] (3:node@iRMX) 6 | 38 -> [285.028772] (3:node@iRMX) Predecessor: 14 -> [299.124613] (4:node@Geoff) My finger table: -> [299.124613] (4:node@Geoff) Start | Succ -> [299.124613] (4:node@Geoff) 33 | 38 -> [299.124613] (4:node@Geoff) 34 | 38 -> [299.124613] (4:node@Geoff) 36 | 32 -> [299.124613] (4:node@Geoff) 40 | 32 -> [299.124613] (4:node@Geoff) 48 | 32 -> [299.124613] (4:node@Geoff) 0 | 32 -> [299.124613] (4:node@Geoff) Predecessor: -1 -> [302.471288] (5:node@TeX) My finger table: -> [302.471288] (5:node@TeX) Start | Succ -> [302.471288] (5:node@TeX) 22 | 38 -> [302.471288] (5:node@TeX) 23 | 38 -> [302.471288] (5:node@TeX) 25 | 21 -> [302.471288] (5:node@TeX) 29 | 21 -> [302.471288] (5:node@TeX) 37 | 21 -> [302.471288] (5:node@TeX) 53 | 21 -> [302.471288] (5:node@TeX) Predecessor: -1 -> [309.606669] (3:node@iRMX) My finger table: -> [309.606669] (3:node@iRMX) Start | Succ -> [309.606669] (3:node@iRMX) 39 | 42 -> [309.606669] (3:node@iRMX) 40 | 42 -> [309.606669] (3:node@iRMX) 42 | 38 -> [309.606669] (3:node@iRMX) 46 | 38 -> [309.606669] (3:node@iRMX) 54 | 38 -> [309.606669] (3:node@iRMX) 6 | 38 -> [309.606669] (3:node@iRMX) Predecessor: 32 -> [352.254169] (6:node@Jean_Yves) My finger table: -> [352.254169] (6:node@Jean_Yves) Start | Succ -> [352.254169] (6:node@Jean_Yves) 15 | 32 -> [352.254169] (6:node@Jean_Yves) 16 | 38 -> [352.254169] (6:node@Jean_Yves) 18 | 14 -> [352.254169] (6:node@Jean_Yves) 22 | 14 -> [352.254169] (6:node@Jean_Yves) 30 | 14 -> [352.254169] (6:node@Jean_Yves) 46 | 14 -> [352.254169] (6:node@Jean_Yves) Predecessor: 8 -> [367.424317] (4:node@Geoff) My finger table: -> [367.424317] (4:node@Geoff) Start | Succ -> [367.424317] (4:node@Geoff) 33 | 38 -> [367.424317] (4:node@Geoff) 34 | 38 -> [367.424317] (4:node@Geoff) 36 | 32 -> [367.424317] (4:node@Geoff) 40 | 32 -> [367.424317] (4:node@Geoff) 48 | 32 -> [367.424317] (4:node@Geoff) 0 | 32 -> [367.424317] (4:node@Geoff) Predecessor: 14 -> [368.585370] (1:node@Gatien) My finger table: -> [368.585370] (1:node@Gatien) Start | Succ -> [368.585370] (1:node@Gatien) 49 | 1 -> [368.585370] (1:node@Gatien) 50 | 1 -> [368.585370] (1:node@Gatien) 52 | 1 -> [368.585370] (1:node@Gatien) 56 | 48 -> [368.585370] (1:node@Gatien) 0 | 48 -> [368.585370] (1:node@Gatien) 16 | 48 -> [368.585370] (1:node@Gatien) Predecessor: 42 -> [374.895628] (2:node@McGee) My finger table: -> [374.895628] (2:node@McGee) Start | Succ -> [374.895628] (2:node@McGee) 43 | 48 -> [374.895628] (2:node@McGee) 44 | 48 -> [374.895628] (2:node@McGee) 46 | 48 -> [374.895628] (2:node@McGee) 50 | 42 -> [374.895628] (2:node@McGee) 58 | 42 -> [374.895628] (2:node@McGee) 10 | 42 -> [374.895628] (2:node@McGee) Predecessor: 38 -> [392.072209] (7:node@Boivin) My finger table: -> [392.072209] (7:node@Boivin) Start | Succ -> [392.072209] (7:node@Boivin) 9 | 14 -> [392.072209] (7:node@Boivin) 10 | 38 -> [392.072209] (7:node@Boivin) 12 | 14 -> [392.072209] (7:node@Boivin) 16 | 8 -> [392.072209] (7:node@Boivin) 24 | 8 -> [392.072209] (7:node@Boivin) 40 | 8 -> [392.072209] (7:node@Boivin) Predecessor: 1 -> [398.554322] (4:node@Geoff) My finger table: -> [398.554322] (4:node@Geoff) Start | Succ -> [398.554322] (4:node@Geoff) 33 | 38 -> [398.554322] (4:node@Geoff) 34 | 38 -> [398.554322] (4:node@Geoff) 36 | 32 -> [398.554322] (4:node@Geoff) 40 | 32 -> [398.554322] (4:node@Geoff) 48 | 32 -> [398.554322] (4:node@Geoff) 0 | 32 -> [398.554322] (4:node@Geoff) Predecessor: 21 -> [400.952052] (6:node@Jean_Yves) My finger table: -> [400.952052] (6:node@Jean_Yves) Start | Succ -> [400.952052] (6:node@Jean_Yves) 15 | 21 -> [400.952052] (6:node@Jean_Yves) 16 | 38 -> [400.952052] (6:node@Jean_Yves) 18 | 21 -> [400.952052] (6:node@Jean_Yves) 22 | 14 -> [400.952052] (6:node@Jean_Yves) 30 | 14 -> [400.952052] (6:node@Jean_Yves) 46 | 14 -> [400.952052] (6:node@Jean_Yves) Predecessor: 8 -> [405.305451] (8:node@Jacquelin) My finger table: -> [405.305451] (8:node@Jacquelin) Start | Succ -> [405.305451] (8:node@Jacquelin) 2 | 8 -> [405.305451] (8:node@Jacquelin) 3 | 8 -> [405.305451] (8:node@Jacquelin) 5 | 8 -> [405.305451] (8:node@Jacquelin) 9 | 1 -> [405.305451] (8:node@Jacquelin) 17 | 1 -> [405.305451] (8:node@Jacquelin) 33 | 1 -> [405.305451] (8:node@Jacquelin) Predecessor: 48 -> [410.451797] (3:node@iRMX) My finger table: -> [410.451797] (3:node@iRMX) Start | Succ -> [410.451797] (3:node@iRMX) 39 | 42 -> [410.451797] (3:node@iRMX) 40 | 42 -> [410.451797] (3:node@iRMX) 42 | 42 -> [410.451797] (3:node@iRMX) 46 | 38 -> [410.451797] (3:node@iRMX) 54 | 38 -> [410.451797] (3:node@iRMX) 6 | 38 -> [410.451797] (3:node@iRMX) Predecessor: 32 -> [420.675344] (4:node@Geoff) My finger table: -> [420.675344] (4:node@Geoff) Start | Succ -> [420.675344] (4:node@Geoff) 33 | 38 -> [420.675344] (4:node@Geoff) 34 | 38 -> [420.675344] (4:node@Geoff) 36 | 38 -> [420.675344] (4:node@Geoff) 40 | 32 -> [420.675344] (4:node@Geoff) 48 | 32 -> [420.675344] (4:node@Geoff) 0 | 32 -> [420.675344] (4:node@Geoff) Predecessor: 21 -> [423.624187] (5:node@TeX) My finger table: -> [423.624187] (5:node@TeX) Start | Succ -> [423.624187] (5:node@TeX) 22 | 32 -> [423.624187] (5:node@TeX) 23 | 38 -> [423.624187] (5:node@TeX) 25 | 32 -> [423.624187] (5:node@TeX) 29 | 21 -> [423.624187] (5:node@TeX) 37 | 21 -> [423.624187] (5:node@TeX) 53 | 21 -> [423.624187] (5:node@TeX) Predecessor: -1 -> [437.092176] (5:node@TeX) My finger table: -> [437.092176] (5:node@TeX) Start | Succ -> [437.092176] (5:node@TeX) 22 | 32 -> [437.092176] (5:node@TeX) 23 | 38 -> [437.092176] (5:node@TeX) 25 | 32 -> [437.092176] (5:node@TeX) 29 | 21 -> [437.092176] (5:node@TeX) 37 | 21 -> [437.092176] (5:node@TeX) 53 | 21 -> [437.092176] (5:node@TeX) Predecessor: 14 -> [492.679275] (1:node@Gatien) My finger table: -> [492.679275] (1:node@Gatien) Start | Succ -> [492.679275] (1:node@Gatien) 49 | 1 -> [492.679275] (1:node@Gatien) 50 | 1 -> [492.679275] (1:node@Gatien) 52 | 1 -> [492.679275] (1:node@Gatien) 56 | 1 -> [492.679275] (1:node@Gatien) 0 | 48 -> [492.679275] (1:node@Gatien) 16 | 48 -> [492.679275] (1:node@Gatien) Predecessor: 42 -> [518.542807] (7:node@Boivin) My finger table: -> [518.542807] (7:node@Boivin) Start | Succ -> [518.542807] (7:node@Boivin) 9 | 14 -> [518.542807] (7:node@Boivin) 10 | 38 -> [518.542807] (7:node@Boivin) 12 | 14 -> [518.542807] (7:node@Boivin) 16 | 21 -> [518.542807] (7:node@Boivin) 24 | 8 -> [518.542807] (7:node@Boivin) 40 | 8 -> [518.542807] (7:node@Boivin) Predecessor: 1 -> [535.761245] (2:node@McGee) My finger table: -> [535.761245] (2:node@McGee) Start | Succ -> [535.761245] (2:node@McGee) 43 | 48 -> [535.761245] (2:node@McGee) 44 | 48 -> [535.761245] (2:node@McGee) 46 | 48 -> [535.761245] (2:node@McGee) 50 | 1 -> [535.761245] (2:node@McGee) 58 | 42 -> [535.761245] (2:node@McGee) 10 | 42 -> [535.761245] (2:node@McGee) Predecessor: 38 -> [536.972611] (8:node@Jacquelin) My finger table: -> [536.972611] (8:node@Jacquelin) Start | Succ -> [536.972611] (8:node@Jacquelin) 2 | 8 -> [536.972611] (8:node@Jacquelin) 3 | 8 -> [536.972611] (8:node@Jacquelin) 5 | 8 -> [536.972611] (8:node@Jacquelin) 9 | 14 -> [536.972611] (8:node@Jacquelin) 17 | 1 -> [536.972611] (8:node@Jacquelin) 33 | 1 -> [536.972611] (8:node@Jacquelin) Predecessor: 48 -> [549.045448] (3:node@iRMX) My finger table: -> [549.045448] (3:node@iRMX) Start | Succ -> [549.045448] (3:node@iRMX) 39 | 42 -> [549.045448] (3:node@iRMX) 40 | 42 -> [549.045448] (3:node@iRMX) 42 | 42 -> [549.045448] (3:node@iRMX) 46 | 48 -> [549.045448] (3:node@iRMX) 54 | 38 -> [549.045448] (3:node@iRMX) 6 | 38 -> [549.045448] (3:node@iRMX) Predecessor: 32 -> [555.217227] (6:node@Jean_Yves) My finger table: -> [555.217227] (6:node@Jean_Yves) Start | Succ -> [555.217227] (6:node@Jean_Yves) 15 | 21 -> [555.217227] (6:node@Jean_Yves) 16 | 38 -> [555.217227] (6:node@Jean_Yves) 18 | 21 -> [555.217227] (6:node@Jean_Yves) 22 | 32 -> [555.217227] (6:node@Jean_Yves) 30 | 14 -> [555.217227] (6:node@Jean_Yves) 46 | 14 -> [555.217227] (6:node@Jean_Yves) Predecessor: 8 -> [560.036449] (5:node@TeX) My finger table: -> [560.036449] (5:node@TeX) Start | Succ -> [560.036449] (5:node@TeX) 22 | 32 -> [560.036449] (5:node@TeX) 23 | 38 -> [560.036449] (5:node@TeX) 25 | 32 -> [560.036449] (5:node@TeX) 29 | 32 -> [560.036449] (5:node@TeX) 37 | 21 -> [560.036449] (5:node@TeX) 53 | 21 -> [560.036449] (5:node@TeX) Predecessor: 14 -> [577.866994] (4:node@Geoff) My finger table: -> [577.866994] (4:node@Geoff) Start | Succ -> [577.866994] (4:node@Geoff) 33 | 38 -> [577.866994] (4:node@Geoff) 34 | 38 -> [577.866994] (4:node@Geoff) 36 | 38 -> [577.866994] (4:node@Geoff) 40 | 42 -> [577.866994] (4:node@Geoff) 48 | 32 -> [577.866994] (4:node@Geoff) 0 | 32 -> [577.866994] (4:node@Geoff) Predecessor: 21 -> [803.668999] (0:@) Messages created: 768 -> [803.668999] (0:@) Simulated time: 803.669 +> [193.730915] (2:node@McGee) My finger table: +> [193.730915] (2:node@McGee) Start | Succ +> [193.730915] (2:node@McGee) 43 | 48 +> [193.730915] (2:node@McGee) 44 | 42 +> [193.730915] (2:node@McGee) 46 | 42 +> [193.730915] (2:node@McGee) 50 | 42 +> [193.730915] (2:node@McGee) 58 | 42 +> [193.730915] (2:node@McGee) 10 | 42 +> [193.730915] (2:node@McGee) Predecessor: 8 +> [242.028917] (1:node@Gatien) My finger table: +> [242.028917] (1:node@Gatien) Start | Succ +> [242.028917] (1:node@Gatien) 49 | 1 +> [242.028917] (1:node@Gatien) 50 | 1 +> [242.028917] (1:node@Gatien) 52 | 48 +> [242.028917] (1:node@Gatien) 56 | 48 +> [242.028917] (1:node@Gatien) 0 | 48 +> [242.028917] (1:node@Gatien) 16 | 48 +> [242.028917] (1:node@Gatien) Predecessor: 42 +> [242.939681] (2:node@McGee) My finger table: +> [242.939681] (2:node@McGee) Start | Succ +> [242.939681] (2:node@McGee) 43 | 48 +> [242.939681] (2:node@McGee) 44 | 42 +> [242.939681] (2:node@McGee) 46 | 42 +> [242.939681] (2:node@McGee) 50 | 42 +> [242.939681] (2:node@McGee) 58 | 42 +> [242.939681] (2:node@McGee) 10 | 42 +> [242.939681] (2:node@McGee) Predecessor: 38 +> [246.478513] (2:node@McGee) My finger table: +> [246.478513] (2:node@McGee) Start | Succ +> [246.478513] (2:node@McGee) 43 | 48 +> [246.478513] (2:node@McGee) 44 | 48 +> [246.478513] (2:node@McGee) 46 | 42 +> [246.478513] (2:node@McGee) 50 | 42 +> [246.478513] (2:node@McGee) 58 | 42 +> [246.478513] (2:node@McGee) 10 | 42 +> [246.478513] (2:node@McGee) Predecessor: 38 +> [248.768529] (7:node@Boivin) My finger table: +> [248.768529] (7:node@Boivin) Start | Succ +> [248.768529] (7:node@Boivin) 9 | 38 +> [248.768529] (7:node@Boivin) 10 | 38 +> [248.768529] (7:node@Boivin) 12 | 8 +> [248.768529] (7:node@Boivin) 16 | 8 +> [248.768529] (7:node@Boivin) 24 | 8 +> [248.768529] (7:node@Boivin) 40 | 8 +> [248.768529] (7:node@Boivin) Predecessor: -1 +> [255.578816] (4:node@Geoff) My finger table: +> [255.578816] (4:node@Geoff) Start | Succ +> [255.578816] (4:node@Geoff) 33 | 42 +> [255.578816] (4:node@Geoff) 34 | 42 +> [255.578816] (4:node@Geoff) 36 | 32 +> [255.578816] (4:node@Geoff) 40 | 32 +> [255.578816] (4:node@Geoff) 48 | 32 +> [255.578816] (4:node@Geoff) 0 | 32 +> [255.578816] (4:node@Geoff) Predecessor: -1 +> [268.081409] (8:node@Jacquelin) My finger table: +> [268.081409] (8:node@Jacquelin) Start | Succ +> [268.081409] (8:node@Jacquelin) 2 | 8 +> [268.081409] (8:node@Jacquelin) 3 | 8 +> [268.081409] (8:node@Jacquelin) 5 | 1 +> [268.081409] (8:node@Jacquelin) 9 | 1 +> [268.081409] (8:node@Jacquelin) 17 | 1 +> [268.081409] (8:node@Jacquelin) 33 | 1 +> [268.081409] (8:node@Jacquelin) Predecessor: 48 +> [269.130295] (7:node@Boivin) My finger table: +> [269.130295] (7:node@Boivin) Start | Succ +> [269.130295] (7:node@Boivin) 9 | 38 +> [269.130295] (7:node@Boivin) 10 | 38 +> [269.130295] (7:node@Boivin) 12 | 8 +> [269.130295] (7:node@Boivin) 16 | 8 +> [269.130295] (7:node@Boivin) 24 | 8 +> [269.130295] (7:node@Boivin) 40 | 8 +> [269.130295] (7:node@Boivin) Predecessor: 1 +> [272.405922] (3:node@iRMX) My finger table: +> [272.405922] (3:node@iRMX) Start | Succ +> [272.405922] (3:node@iRMX) 39 | 42 +> [272.405922] (3:node@iRMX) 40 | 42 +> [272.405922] (3:node@iRMX) 42 | 38 +> [272.405922] (3:node@iRMX) 46 | 38 +> [272.405922] (3:node@iRMX) 54 | 38 +> [272.405922] (3:node@iRMX) 6 | 38 +> [272.405922] (3:node@iRMX) Predecessor: -1 +> [284.571217] (5:node@TeX) My finger table: +> [284.571217] (5:node@TeX) Start | Succ +> [284.571217] (5:node@TeX) 22 | 38 +> [284.571217] (5:node@TeX) 23 | 38 +> [284.571217] (5:node@TeX) 25 | 21 +> [284.571217] (5:node@TeX) 29 | 21 +> [284.571217] (5:node@TeX) 37 | 21 +> [284.571217] (5:node@TeX) 53 | 21 +> [284.571217] (5:node@TeX) Predecessor: -1 +> [289.289472] (3:node@iRMX) My finger table: +> [289.289472] (3:node@iRMX) Start | Succ +> [289.289472] (3:node@iRMX) 39 | 42 +> [289.289472] (3:node@iRMX) 40 | 42 +> [289.289472] (3:node@iRMX) 42 | 38 +> [289.289472] (3:node@iRMX) 46 | 38 +> [289.289472] (3:node@iRMX) 54 | 38 +> [289.289472] (3:node@iRMX) 6 | 38 +> [289.289472] (3:node@iRMX) Predecessor: 21 +> [305.097152] (6:node@Jean_Yves) My finger table: +> [305.097152] (6:node@Jean_Yves) Start | Succ +> [305.097152] (6:node@Jean_Yves) 15 | 21 +> [305.097152] (6:node@Jean_Yves) 16 | 21 +> [305.097152] (6:node@Jean_Yves) 18 | 14 +> [305.097152] (6:node@Jean_Yves) 22 | 14 +> [305.097152] (6:node@Jean_Yves) 30 | 14 +> [305.097152] (6:node@Jean_Yves) 46 | 14 +> [305.097152] (6:node@Jean_Yves) Predecessor: -1 +> [313.745119] (3:node@iRMX) My finger table: +> [313.745119] (3:node@iRMX) Start | Succ +> [313.745119] (3:node@iRMX) 39 | 42 +> [313.745119] (3:node@iRMX) 40 | 42 +> [313.745119] (3:node@iRMX) 42 | 38 +> [313.745119] (3:node@iRMX) 46 | 38 +> [313.745119] (3:node@iRMX) 54 | 38 +> [313.745119] (3:node@iRMX) 6 | 38 +> [313.745119] (3:node@iRMX) Predecessor: 32 +> [338.952043] (5:node@TeX) My finger table: +> [338.952043] (5:node@TeX) Start | Succ +> [338.952043] (5:node@TeX) 22 | 32 +> [338.952043] (5:node@TeX) 23 | 38 +> [338.952043] (5:node@TeX) 25 | 21 +> [338.952043] (5:node@TeX) 29 | 21 +> [338.952043] (5:node@TeX) 37 | 21 +> [338.952043] (5:node@TeX) 53 | 21 +> [338.952043] (5:node@TeX) Predecessor: 14 +> [359.463171] (4:node@Geoff) My finger table: +> [359.463171] (4:node@Geoff) Start | Succ +> [359.463171] (4:node@Geoff) 33 | 38 +> [359.463171] (4:node@Geoff) 34 | 42 +> [359.463171] (4:node@Geoff) 36 | 32 +> [359.463171] (4:node@Geoff) 40 | 32 +> [359.463171] (4:node@Geoff) 48 | 32 +> [359.463171] (4:node@Geoff) 0 | 32 +> [359.463171] (4:node@Geoff) Predecessor: 21 +> [365.649541] (1:node@Gatien) My finger table: +> [365.649541] (1:node@Gatien) Start | Succ +> [365.649541] (1:node@Gatien) 49 | 1 +> [365.649541] (1:node@Gatien) 50 | 1 +> [365.649541] (1:node@Gatien) 52 | 1 +> [365.649541] (1:node@Gatien) 56 | 48 +> [365.649541] (1:node@Gatien) 0 | 48 +> [365.649541] (1:node@Gatien) 16 | 48 +> [365.649541] (1:node@Gatien) Predecessor: 42 +> [367.870562] (2:node@McGee) My finger table: +> [367.870562] (2:node@McGee) Start | Succ +> [367.870562] (2:node@McGee) 43 | 48 +> [367.870562] (2:node@McGee) 44 | 48 +> [367.870562] (2:node@McGee) 46 | 48 +> [367.870562] (2:node@McGee) 50 | 42 +> [367.870562] (2:node@McGee) 58 | 42 +> [367.870562] (2:node@McGee) 10 | 42 +> [367.870562] (2:node@McGee) Predecessor: 38 +> [371.550256] (7:node@Boivin) My finger table: +> [371.550256] (7:node@Boivin) Start | Succ +> [371.550256] (7:node@Boivin) 9 | 21 +> [371.550256] (7:node@Boivin) 10 | 38 +> [371.550256] (7:node@Boivin) 12 | 21 +> [371.550256] (7:node@Boivin) 16 | 8 +> [371.550256] (7:node@Boivin) 24 | 8 +> [371.550256] (7:node@Boivin) 40 | 8 +> [371.550256] (7:node@Boivin) Predecessor: 1 +> [388.564180] (4:node@Geoff) My finger table: +> [388.564180] (4:node@Geoff) Start | Succ +> [388.564180] (4:node@Geoff) 33 | 38 +> [388.564180] (4:node@Geoff) 34 | 42 +> [388.564180] (4:node@Geoff) 36 | 38 +> [388.564180] (4:node@Geoff) 40 | 32 +> [388.564180] (4:node@Geoff) 48 | 32 +> [388.564180] (4:node@Geoff) 0 | 32 +> [388.564180] (4:node@Geoff) Predecessor: 21 +> [389.021761] (8:node@Jacquelin) My finger table: +> [389.021761] (8:node@Jacquelin) Start | Succ +> [389.021761] (8:node@Jacquelin) 2 | 8 +> [389.021761] (8:node@Jacquelin) 3 | 8 +> [389.021761] (8:node@Jacquelin) 5 | 8 +> [389.021761] (8:node@Jacquelin) 9 | 1 +> [389.021761] (8:node@Jacquelin) 17 | 1 +> [389.021761] (8:node@Jacquelin) 33 | 1 +> [389.021761] (8:node@Jacquelin) Predecessor: 48 +> [393.088792] (3:node@iRMX) My finger table: +> [393.088792] (3:node@iRMX) Start | Succ +> [393.088792] (3:node@iRMX) 39 | 42 +> [393.088792] (3:node@iRMX) 40 | 42 +> [393.088792] (3:node@iRMX) 42 | 42 +> [393.088792] (3:node@iRMX) 46 | 38 +> [393.088792] (3:node@iRMX) 54 | 38 +> [393.088792] (3:node@iRMX) 6 | 38 +> [393.088792] (3:node@iRMX) Predecessor: 32 +> [412.961743] (5:node@TeX) My finger table: +> [412.961743] (5:node@TeX) Start | Succ +> [412.961743] (5:node@TeX) 22 | 32 +> [412.961743] (5:node@TeX) 23 | 38 +> [412.961743] (5:node@TeX) 25 | 32 +> [412.961743] (5:node@TeX) 29 | 21 +> [412.961743] (5:node@TeX) 37 | 21 +> [412.961743] (5:node@TeX) 53 | 21 +> [412.961743] (5:node@TeX) Predecessor: 14 +> [434.596538] (6:node@Jean_Yves) My finger table: +> [434.596538] (6:node@Jean_Yves) Start | Succ +> [434.596538] (6:node@Jean_Yves) 15 | 21 +> [434.596538] (6:node@Jean_Yves) 16 | 21 +> [434.596538] (6:node@Jean_Yves) 18 | 14 +> [434.596538] (6:node@Jean_Yves) 22 | 14 +> [434.596538] (6:node@Jean_Yves) 30 | 14 +> [434.596538] (6:node@Jean_Yves) 46 | 14 +> [434.596538] (6:node@Jean_Yves) Predecessor: 8 +> [443.806985] (6:node@Jean_Yves) My finger table: +> [443.806985] (6:node@Jean_Yves) Start | Succ +> [443.806985] (6:node@Jean_Yves) 15 | 21 +> [443.806985] (6:node@Jean_Yves) 16 | 21 +> [443.806985] (6:node@Jean_Yves) 18 | 21 +> [443.806985] (6:node@Jean_Yves) 22 | 14 +> [443.806985] (6:node@Jean_Yves) 30 | 14 +> [443.806985] (6:node@Jean_Yves) 46 | 14 +> [443.806985] (6:node@Jean_Yves) Predecessor: 8 +> [488.763655] (1:node@Gatien) My finger table: +> [488.763655] (1:node@Gatien) Start | Succ +> [488.763655] (1:node@Gatien) 49 | 1 +> [488.763655] (1:node@Gatien) 50 | 1 +> [488.763655] (1:node@Gatien) 52 | 1 +> [488.763655] (1:node@Gatien) 56 | 1 +> [488.763655] (1:node@Gatien) 0 | 48 +> [488.763655] (1:node@Gatien) 16 | 48 +> [488.763655] (1:node@Gatien) Predecessor: 42 +> [502.910503] (2:node@McGee) My finger table: +> [502.910503] (2:node@McGee) Start | Succ +> [502.910503] (2:node@McGee) 43 | 48 +> [502.910503] (2:node@McGee) 44 | 48 +> [502.910503] (2:node@McGee) 46 | 48 +> [502.910503] (2:node@McGee) 50 | 1 +> [502.910503] (2:node@McGee) 58 | 42 +> [502.910503] (2:node@McGee) 10 | 42 +> [502.910503] (2:node@McGee) Predecessor: 38 +> [511.133139] (8:node@Jacquelin) My finger table: +> [511.133139] (8:node@Jacquelin) Start | Succ +> [511.133139] (8:node@Jacquelin) 2 | 8 +> [511.133139] (8:node@Jacquelin) 3 | 8 +> [511.133139] (8:node@Jacquelin) 5 | 8 +> [511.133139] (8:node@Jacquelin) 9 | 14 +> [511.133139] (8:node@Jacquelin) 17 | 1 +> [511.133139] (8:node@Jacquelin) 33 | 1 +> [511.133139] (8:node@Jacquelin) Predecessor: 48 +> [528.169821] (7:node@Boivin) My finger table: +> [528.169821] (7:node@Boivin) Start | Succ +> [528.169821] (7:node@Boivin) 9 | 14 +> [528.169821] (7:node@Boivin) 10 | 38 +> [528.169821] (7:node@Boivin) 12 | 21 +> [528.169821] (7:node@Boivin) 16 | 21 +> [528.169821] (7:node@Boivin) 24 | 8 +> [528.169821] (7:node@Boivin) 40 | 8 +> [528.169821] (7:node@Boivin) Predecessor: 1 +> [538.778249] (3:node@iRMX) My finger table: +> [538.778249] (3:node@iRMX) Start | Succ +> [538.778249] (3:node@iRMX) 39 | 42 +> [538.778249] (3:node@iRMX) 40 | 42 +> [538.778249] (3:node@iRMX) 42 | 42 +> [538.778249] (3:node@iRMX) 46 | 48 +> [538.778249] (3:node@iRMX) 54 | 38 +> [538.778249] (3:node@iRMX) 6 | 38 +> [538.778249] (3:node@iRMX) Predecessor: 32 +> [561.853873] (5:node@TeX) My finger table: +> [561.853873] (5:node@TeX) Start | Succ +> [561.853873] (5:node@TeX) 22 | 32 +> [561.853873] (5:node@TeX) 23 | 38 +> [561.853873] (5:node@TeX) 25 | 32 +> [561.853873] (5:node@TeX) 29 | 32 +> [561.853873] (5:node@TeX) 37 | 21 +> [561.853873] (5:node@TeX) 53 | 21 +> [561.853873] (5:node@TeX) Predecessor: 14 +> [564.892208] (4:node@Geoff) My finger table: +> [564.892208] (4:node@Geoff) Start | Succ +> [564.892208] (4:node@Geoff) 33 | 38 +> [564.892208] (4:node@Geoff) 34 | 42 +> [564.892208] (4:node@Geoff) 36 | 38 +> [564.892208] (4:node@Geoff) 40 | 42 +> [564.892208] (4:node@Geoff) 48 | 32 +> [564.892208] (4:node@Geoff) 0 | 32 +> [564.892208] (4:node@Geoff) Predecessor: 21 +> [580.440544] (6:node@Jean_Yves) My finger table: +> [580.440544] (6:node@Jean_Yves) Start | Succ +> [580.440544] (6:node@Jean_Yves) 15 | 21 +> [580.440544] (6:node@Jean_Yves) 16 | 21 +> [580.440544] (6:node@Jean_Yves) 18 | 21 +> [580.440544] (6:node@Jean_Yves) 22 | 32 +> [580.440544] (6:node@Jean_Yves) 30 | 14 +> [580.440544] (6:node@Jean_Yves) 46 | 14 +> [580.440544] (6:node@Jean_Yves) Predecessor: 8 +> [805.312658] (0:@) Messages created: 789 +> [805.312658] (0:@) Simulated time: 805.313 ! output sort $ $SG_TEST_EXENV ${bindir:=.}/chord$EXEEXT ${srcdir:=.}/../../platforms/cluster.xml ${srcdir:=.}/chord10.xml --log=msg_chord.thres:verbose "--log=root.fmt:[%11.6r]%e(%i:%P@%h)%e%m%n" --cfg=network/model:Constant @@ -1044,1976 +1026,1949 @@ $ $SG_TEST_EXENV ${bindir:=.}/chord$EXEEXT ${srcdir:=.}/../../platforms/cluster. > [ 110.000000] (9:node@c-8.me) 10713112 | 6518808 > [ 110.000000] (9:node@c-8.me) 14907416 | 6518808 > [ 110.000000] (9:node@c-8.me) Predecessor: 1319738 -> [ 145.000000] (1:node@c-0.me) My finger table: -> [ 145.000000] (1:node@c-0.me) Start | Succ -> [ 145.000000] (1:node@c-0.me) 43 | 1319738 -> [ 145.000000] (1:node@c-0.me) 44 | 42 -> [ 145.000000] (1:node@c-0.me) 46 | 42 -> [ 145.000000] (1:node@c-0.me) 50 | 42 -> [ 145.000000] (1:node@c-0.me) 58 | 42 -> [ 145.000000] (1:node@c-0.me) 74 | 42 -> [ 145.000000] (1:node@c-0.me) 106 | 42 -> [ 145.000000] (1:node@c-0.me) 170 | 42 -> [ 145.000000] (1:node@c-0.me) 298 | 42 -> [ 145.000000] (1:node@c-0.me) 554 | 42 -> [ 145.000000] (1:node@c-0.me) 1066 | 42 -> [ 145.000000] (1:node@c-0.me) 2090 | 42 -> [ 145.000000] (1:node@c-0.me) 4138 | 42 -> [ 145.000000] (1:node@c-0.me) 8234 | 42 -> [ 145.000000] (1:node@c-0.me) 16426 | 42 -> [ 145.000000] (1:node@c-0.me) 32810 | 42 -> [ 145.000000] (1:node@c-0.me) 65578 | 42 -> [ 145.000000] (1:node@c-0.me) 131114 | 42 -> [ 145.000000] (1:node@c-0.me) 262186 | 42 -> [ 145.000000] (1:node@c-0.me) 524330 | 42 -> [ 145.000000] (1:node@c-0.me) 1048618 | 42 -> [ 145.000000] (1:node@c-0.me) 2097194 | 42 -> [ 145.000000] (1:node@c-0.me) 4194346 | 42 -> [ 145.000000] (1:node@c-0.me) 8388650 | 42 -> [ 145.000000] (1:node@c-0.me) Predecessor: 16728096 -> [ 157.000000] (4:node@c-3.me) My finger table: -> [ 157.000000] (4:node@c-3.me) Start | Succ -> [ 157.000000] (4:node@c-3.me) 1319739 | 6518808 -> [ 157.000000] (4:node@c-3.me) 1319740 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1319742 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1319746 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1319754 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1319770 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1319802 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1319866 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1319994 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1320250 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1320762 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1321786 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1323834 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1327930 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1336122 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1352506 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1385274 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1450810 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1581882 | 1319738 -> [ 157.000000] (4:node@c-3.me) 1844026 | 1319738 -> [ 157.000000] (4:node@c-3.me) 2368314 | 1319738 -> [ 157.000000] (4:node@c-3.me) 3416890 | 1319738 -> [ 157.000000] (4:node@c-3.me) 5514042 | 1319738 -> [ 157.000000] (4:node@c-3.me) 9708346 | 1319738 -> [ 157.000000] (4:node@c-3.me) Predecessor: 366680 -> [ 184.000000] (7:node@c-6.me) My finger table: -> [ 184.000000] (7:node@c-6.me) Start | Succ -> [ 184.000000] (7:node@c-6.me) 16728097 | 42 -> [ 184.000000] (7:node@c-6.me) 16728098 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16728100 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16728104 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16728112 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16728128 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16728160 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16728224 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16728352 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16728608 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16729120 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16730144 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16732192 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16736288 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16744480 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16760864 | 16728096 -> [ 184.000000] (7:node@c-6.me) 16416 | 16728096 -> [ 184.000000] (7:node@c-6.me) 81952 | 16728096 -> [ 184.000000] (7:node@c-6.me) 213024 | 16728096 -> [ 184.000000] (7:node@c-6.me) 475168 | 16728096 -> [ 184.000000] (7:node@c-6.me) 999456 | 16728096 -> [ 184.000000] (7:node@c-6.me) 2048032 | 16728096 -> [ 184.000000] (7:node@c-6.me) 4145184 | 16728096 -> [ 184.000000] (7:node@c-6.me) 8339488 | 16728096 -> [ 184.000000] (7:node@c-6.me) Predecessor: 6518808 -> [ 202.000000] (2:node@c-1.me) My finger table: -> [ 202.000000] (2:node@c-1.me) Start | Succ -> [ 202.000000] (2:node@c-1.me) 366681 | 1319738 -> [ 202.000000] (2:node@c-1.me) 366682 | 366680 -> [ 202.000000] (2:node@c-1.me) 366684 | 366680 -> [ 202.000000] (2:node@c-1.me) 366688 | 366680 -> [ 202.000000] (2:node@c-1.me) 366696 | 366680 -> [ 202.000000] (2:node@c-1.me) 366712 | 366680 -> [ 202.000000] (2:node@c-1.me) 366744 | 366680 -> [ 202.000000] (2:node@c-1.me) 366808 | 366680 -> [ 202.000000] (2:node@c-1.me) 366936 | 366680 -> [ 202.000000] (2:node@c-1.me) 367192 | 366680 -> [ 202.000000] (2:node@c-1.me) 367704 | 366680 -> [ 202.000000] (2:node@c-1.me) 368728 | 366680 -> [ 202.000000] (2:node@c-1.me) 370776 | 366680 -> [ 202.000000] (2:node@c-1.me) 374872 | 366680 -> [ 202.000000] (2:node@c-1.me) 383064 | 366680 -> [ 202.000000] (2:node@c-1.me) 399448 | 366680 -> [ 202.000000] (2:node@c-1.me) 432216 | 366680 -> [ 202.000000] (2:node@c-1.me) 497752 | 366680 -> [ 202.000000] (2:node@c-1.me) 628824 | 366680 -> [ 202.000000] (2:node@c-1.me) 890968 | 366680 -> [ 202.000000] (2:node@c-1.me) 1415256 | 366680 -> [ 202.000000] (2:node@c-1.me) 2463832 | 366680 -> [ 202.000000] (2:node@c-1.me) 4560984 | 366680 -> [ 202.000000] (2:node@c-1.me) 8755288 | 366680 -> [ 202.000000] (2:node@c-1.me) Predecessor: 42 -> [ 221.000000] (9:node@c-8.me) My finger table: -> [ 221.000000] (9:node@c-8.me) Start | Succ -> [ 221.000000] (9:node@c-8.me) 6518809 | 16728096 -> [ 221.000000] (9:node@c-8.me) 6518810 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6518812 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6518816 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6518824 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6518840 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6518872 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6518936 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6519064 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6519320 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6519832 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6520856 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6522904 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6527000 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6535192 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6551576 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6584344 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6649880 | 6518808 -> [ 221.000000] (9:node@c-8.me) 6780952 | 6518808 -> [ 221.000000] (9:node@c-8.me) 7043096 | 6518808 -> [ 221.000000] (9:node@c-8.me) 7567384 | 6518808 -> [ 221.000000] (9:node@c-8.me) 8615960 | 6518808 -> [ 221.000000] (9:node@c-8.me) 10713112 | 6518808 -> [ 221.000000] (9:node@c-8.me) 14907416 | 6518808 -> [ 221.000000] (9:node@c-8.me) Predecessor: 2015253 -> [ 240.000000] (6:node@c-5.me) My finger table: -> [ 240.000000] (6:node@c-5.me) Start | Succ -> [ 240.000000] (6:node@c-5.me) 10874877 | 533744 -> [ 240.000000] (6:node@c-5.me) 10874878 | 533744 -> [ 240.000000] (6:node@c-5.me) 10874880 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10874884 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10874892 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10874908 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10874940 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10875004 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10875132 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10875388 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10875900 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10876924 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10878972 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10883068 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10891260 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10907644 | 10874876 -> [ 240.000000] (6:node@c-5.me) 10940412 | 10874876 -> [ 240.000000] (6:node@c-5.me) 11005948 | 10874876 -> [ 240.000000] (6:node@c-5.me) 11137020 | 10874876 -> [ 240.000000] (6:node@c-5.me) 11399164 | 10874876 -> [ 240.000000] (6:node@c-5.me) 11923452 | 10874876 -> [ 240.000000] (6:node@c-5.me) 12972028 | 10874876 -> [ 240.000000] (6:node@c-5.me) 15069180 | 10874876 -> [ 240.000000] (6:node@c-5.me) 2486268 | 10874876 -> [ 240.000000] (6:node@c-5.me) Predecessor: -1 -> [ 247.000000] (5:node@c-4.me) My finger table: -> [ 247.000000] (5:node@c-4.me) Start | Succ -> [ 247.000000] (5:node@c-4.me) 16509406 | 16728096 -> [ 247.000000] (5:node@c-4.me) 16509407 | 16728096 -> [ 247.000000] (5:node@c-4.me) 16509409 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16509413 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16509421 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16509437 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16509469 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16509533 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16509661 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16509917 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16510429 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16511453 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16513501 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16517597 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16525789 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16542173 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16574941 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16640477 | 16509405 -> [ 247.000000] (5:node@c-4.me) 16771549 | 16509405 -> [ 247.000000] (5:node@c-4.me) 256477 | 16509405 -> [ 247.000000] (5:node@c-4.me) 780765 | 16509405 -> [ 247.000000] (5:node@c-4.me) 1829341 | 16509405 -> [ 247.000000] (5:node@c-4.me) 3926493 | 16509405 -> [ 247.000000] (5:node@c-4.me) 8120797 | 16509405 -> [ 247.000000] (5:node@c-4.me) Predecessor: 10004760 -> [ 250.000000] (1:node@c-0.me) My finger table: -> [ 250.000000] (1:node@c-0.me) Start | Succ -> [ 250.000000] (1:node@c-0.me) 43 | 366680 -> [ 250.000000] (1:node@c-0.me) 44 | 366680 -> [ 250.000000] (1:node@c-0.me) 46 | 42 -> [ 250.000000] (1:node@c-0.me) 50 | 42 -> [ 250.000000] (1:node@c-0.me) 58 | 42 -> [ 250.000000] (1:node@c-0.me) 74 | 42 -> [ 250.000000] (1:node@c-0.me) 106 | 42 -> [ 250.000000] (1:node@c-0.me) 170 | 42 -> [ 250.000000] (1:node@c-0.me) 298 | 42 -> [ 250.000000] (1:node@c-0.me) 554 | 42 -> [ 250.000000] (1:node@c-0.me) 1066 | 42 -> [ 250.000000] (1:node@c-0.me) 2090 | 42 -> [ 250.000000] (1:node@c-0.me) 4138 | 42 -> [ 250.000000] (1:node@c-0.me) 8234 | 42 -> [ 250.000000] (1:node@c-0.me) 16426 | 42 -> [ 250.000000] (1:node@c-0.me) 32810 | 42 -> [ 250.000000] (1:node@c-0.me) 65578 | 42 -> [ 250.000000] (1:node@c-0.me) 131114 | 42 -> [ 250.000000] (1:node@c-0.me) 262186 | 42 -> [ 250.000000] (1:node@c-0.me) 524330 | 42 -> [ 250.000000] (1:node@c-0.me) 1048618 | 42 -> [ 250.000000] (1:node@c-0.me) 2097194 | 42 -> [ 250.000000] (1:node@c-0.me) 4194346 | 42 -> [ 250.000000] (1:node@c-0.me) 8388650 | 42 -> [ 250.000000] (1:node@c-0.me) Predecessor: 16728096 -> [ 251.000000] (3:node@c-2.me) My finger table: -> [ 251.000000] (3:node@c-2.me) Start | Succ -> [ 251.000000] (3:node@c-2.me) 533745 | 10004760 -> [ 251.000000] (3:node@c-2.me) 533746 | 10004760 -> [ 251.000000] (3:node@c-2.me) 533748 | 533744 -> [ 251.000000] (3:node@c-2.me) 533752 | 533744 -> [ 251.000000] (3:node@c-2.me) 533760 | 533744 -> [ 251.000000] (3:node@c-2.me) 533776 | 533744 -> [ 251.000000] (3:node@c-2.me) 533808 | 533744 -> [ 251.000000] (3:node@c-2.me) 533872 | 533744 -> [ 251.000000] (3:node@c-2.me) 534000 | 533744 -> [ 251.000000] (3:node@c-2.me) 534256 | 533744 -> [ 251.000000] (3:node@c-2.me) 534768 | 533744 -> [ 251.000000] (3:node@c-2.me) 535792 | 533744 -> [ 251.000000] (3:node@c-2.me) 537840 | 533744 -> [ 251.000000] (3:node@c-2.me) 541936 | 533744 -> [ 251.000000] (3:node@c-2.me) 550128 | 533744 -> [ 251.000000] (3:node@c-2.me) 566512 | 533744 -> [ 251.000000] (3:node@c-2.me) 599280 | 533744 -> [ 251.000000] (3:node@c-2.me) 664816 | 533744 -> [ 251.000000] (3:node@c-2.me) 795888 | 533744 -> [ 251.000000] (3:node@c-2.me) 1058032 | 533744 -> [ 251.000000] (3:node@c-2.me) 1582320 | 533744 -> [ 251.000000] (3:node@c-2.me) 2630896 | 533744 -> [ 251.000000] (3:node@c-2.me) 4728048 | 533744 -> [ 251.000000] (3:node@c-2.me) 8922352 | 533744 -> [ 251.000000] (3:node@c-2.me) Predecessor: 10874876 -> [ 253.000000] (8:node@c-7.me) My finger table: -> [ 253.000000] (8:node@c-7.me) Start | Succ -> [ 253.000000] (8:node@c-7.me) 10004761 | 16509405 -> [ 253.000000] (8:node@c-7.me) 10004762 | 16509405 -> [ 253.000000] (8:node@c-7.me) 10004764 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10004768 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10004776 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10004792 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10004824 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10004888 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10005016 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10005272 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10005784 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10006808 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10008856 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10012952 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10021144 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10037528 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10070296 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10135832 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10266904 | 10004760 -> [ 253.000000] (8:node@c-7.me) 10529048 | 10004760 -> [ 253.000000] (8:node@c-7.me) 11053336 | 10004760 -> [ 253.000000] (8:node@c-7.me) 12101912 | 10004760 -> [ 253.000000] (8:node@c-7.me) 14199064 | 10004760 -> [ 253.000000] (8:node@c-7.me) 1616152 | 10004760 -> [ 253.000000] (8:node@c-7.me) Predecessor: 533744 -> [ 263.000000] (2:node@c-1.me) My finger table: -> [ 263.000000] (2:node@c-1.me) Start | Succ -> [ 263.000000] (2:node@c-1.me) 366681 | 1319738 -> [ 263.000000] (2:node@c-1.me) 366682 | 1319738 -> [ 263.000000] (2:node@c-1.me) 366684 | 366680 -> [ 263.000000] (2:node@c-1.me) 366688 | 366680 -> [ 263.000000] (2:node@c-1.me) 366696 | 366680 -> [ 263.000000] (2:node@c-1.me) 366712 | 366680 -> [ 263.000000] (2:node@c-1.me) 366744 | 366680 -> [ 263.000000] (2:node@c-1.me) 366808 | 366680 -> [ 263.000000] (2:node@c-1.me) 366936 | 366680 -> [ 263.000000] (2:node@c-1.me) 367192 | 366680 -> [ 263.000000] (2:node@c-1.me) 367704 | 366680 -> [ 263.000000] (2:node@c-1.me) 368728 | 366680 -> [ 263.000000] (2:node@c-1.me) 370776 | 366680 -> [ 263.000000] (2:node@c-1.me) 374872 | 366680 -> [ 263.000000] (2:node@c-1.me) 383064 | 366680 -> [ 263.000000] (2:node@c-1.me) 399448 | 366680 -> [ 263.000000] (2:node@c-1.me) 432216 | 366680 -> [ 263.000000] (2:node@c-1.me) 497752 | 366680 -> [ 263.000000] (2:node@c-1.me) 628824 | 366680 -> [ 263.000000] (2:node@c-1.me) 890968 | 366680 -> [ 263.000000] (2:node@c-1.me) 1415256 | 366680 -> [ 263.000000] (2:node@c-1.me) 2463832 | 366680 -> [ 263.000000] (2:node@c-1.me) 4560984 | 366680 -> [ 263.000000] (2:node@c-1.me) 8755288 | 366680 -> [ 263.000000] (2:node@c-1.me) Predecessor: 42 -> [ 268.000000] (4:node@c-3.me) My finger table: -> [ 268.000000] (4:node@c-3.me) Start | Succ -> [ 268.000000] (4:node@c-3.me) 1319739 | 2015253 -> [ 268.000000] (4:node@c-3.me) 1319740 | 2015253 -> [ 268.000000] (4:node@c-3.me) 1319742 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1319746 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1319754 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1319770 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1319802 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1319866 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1319994 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1320250 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1320762 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1321786 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1323834 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1327930 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1336122 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1352506 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1385274 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1450810 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1581882 | 1319738 -> [ 268.000000] (4:node@c-3.me) 1844026 | 1319738 -> [ 268.000000] (4:node@c-3.me) 2368314 | 1319738 -> [ 268.000000] (4:node@c-3.me) 3416890 | 1319738 -> [ 268.000000] (4:node@c-3.me) 5514042 | 1319738 -> [ 268.000000] (4:node@c-3.me) 9708346 | 1319738 -> [ 268.000000] (4:node@c-3.me) Predecessor: 366680 -> [ 269.000000] (10:node@c-9.me) My finger table: -> [ 269.000000] (10:node@c-9.me) Start | Succ -> [ 269.000000] (10:node@c-9.me) 2015254 | 6518808 -> [ 269.000000] (10:node@c-9.me) 2015255 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2015257 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2015261 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2015269 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2015285 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2015317 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2015381 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2015509 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2015765 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2016277 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2017301 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2019349 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2023445 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2031637 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2048021 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2080789 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2146325 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2277397 | 2015253 -> [ 269.000000] (10:node@c-9.me) 2539541 | 2015253 -> [ 269.000000] (10:node@c-9.me) 3063829 | 2015253 -> [ 269.000000] (10:node@c-9.me) 4112405 | 2015253 -> [ 269.000000] (10:node@c-9.me) 6209557 | 2015253 -> [ 269.000000] (10:node@c-9.me) 10403861 | 2015253 -> [ 269.000000] (10:node@c-9.me) Predecessor: 1319738 -> [ 274.000000] (10:node@c-9.me) My finger table: -> [ 274.000000] (10:node@c-9.me) Start | Succ -> [ 274.000000] (10:node@c-9.me) 2015254 | 6518808 -> [ 274.000000] (10:node@c-9.me) 2015255 | 6518808 -> [ 274.000000] (10:node@c-9.me) 2015257 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2015261 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2015269 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2015285 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2015317 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2015381 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2015509 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2015765 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2016277 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2017301 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2019349 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2023445 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2031637 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2048021 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2080789 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2146325 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2277397 | 2015253 -> [ 274.000000] (10:node@c-9.me) 2539541 | 2015253 -> [ 274.000000] (10:node@c-9.me) 3063829 | 2015253 -> [ 274.000000] (10:node@c-9.me) 4112405 | 2015253 -> [ 274.000000] (10:node@c-9.me) 6209557 | 2015253 -> [ 274.000000] (10:node@c-9.me) 10403861 | 2015253 -> [ 274.000000] (10:node@c-9.me) Predecessor: 1319738 -> [ 274.000000] (9:node@c-8.me) My finger table: -> [ 274.000000] (9:node@c-8.me) Start | Succ -> [ 274.000000] (9:node@c-8.me) 6518809 | 16728096 -> [ 274.000000] (9:node@c-8.me) 6518810 | 16728096 -> [ 274.000000] (9:node@c-8.me) 6518812 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6518816 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6518824 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6518840 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6518872 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6518936 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6519064 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6519320 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6519832 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6520856 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6522904 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6527000 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6535192 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6551576 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6584344 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6649880 | 6518808 -> [ 274.000000] (9:node@c-8.me) 6780952 | 6518808 -> [ 274.000000] (9:node@c-8.me) 7043096 | 6518808 -> [ 274.000000] (9:node@c-8.me) 7567384 | 6518808 -> [ 274.000000] (9:node@c-8.me) 8615960 | 6518808 -> [ 274.000000] (9:node@c-8.me) 10713112 | 6518808 -> [ 274.000000] (9:node@c-8.me) 14907416 | 6518808 -> [ 274.000000] (9:node@c-8.me) Predecessor: 2015253 -> [ 275.000000] (7:node@c-6.me) My finger table: -> [ 275.000000] (7:node@c-6.me) Start | Succ -> [ 275.000000] (7:node@c-6.me) 16728097 | 42 -> [ 275.000000] (7:node@c-6.me) 16728098 | 42 -> [ 275.000000] (7:node@c-6.me) 16728100 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16728104 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16728112 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16728128 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16728160 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16728224 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16728352 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16728608 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16729120 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16730144 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16732192 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16736288 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16744480 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16760864 | 16728096 -> [ 275.000000] (7:node@c-6.me) 16416 | 16728096 -> [ 275.000000] (7:node@c-6.me) 81952 | 16728096 -> [ 275.000000] (7:node@c-6.me) 213024 | 16728096 -> [ 275.000000] (7:node@c-6.me) 475168 | 16728096 -> [ 275.000000] (7:node@c-6.me) 999456 | 16728096 -> [ 275.000000] (7:node@c-6.me) 2048032 | 16728096 -> [ 275.000000] (7:node@c-6.me) 4145184 | 16728096 -> [ 275.000000] (7:node@c-6.me) 8339488 | 16728096 -> [ 275.000000] (7:node@c-6.me) Predecessor: 6518808 -> [ 288.000000] (7:node@c-6.me) My finger table: -> [ 288.000000] (7:node@c-6.me) Start | Succ -> [ 288.000000] (7:node@c-6.me) 16728097 | 42 -> [ 288.000000] (7:node@c-6.me) 16728098 | 42 -> [ 288.000000] (7:node@c-6.me) 16728100 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16728104 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16728112 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16728128 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16728160 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16728224 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16728352 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16728608 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16729120 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16730144 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16732192 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16736288 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16744480 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16760864 | 16728096 -> [ 288.000000] (7:node@c-6.me) 16416 | 16728096 -> [ 288.000000] (7:node@c-6.me) 81952 | 16728096 -> [ 288.000000] (7:node@c-6.me) 213024 | 16728096 -> [ 288.000000] (7:node@c-6.me) 475168 | 16728096 -> [ 288.000000] (7:node@c-6.me) 999456 | 16728096 -> [ 288.000000] (7:node@c-6.me) 2048032 | 16728096 -> [ 288.000000] (7:node@c-6.me) 4145184 | 16728096 -> [ 288.000000] (7:node@c-6.me) 8339488 | 16728096 -> [ 288.000000] (7:node@c-6.me) Predecessor: 16509405 -> [ 361.000000] (8:node@c-7.me) My finger table: -> [ 361.000000] (8:node@c-7.me) Start | Succ -> [ 361.000000] (8:node@c-7.me) 10004761 | 16509405 -> [ 361.000000] (8:node@c-7.me) 10004762 | 16509405 -> [ 361.000000] (8:node@c-7.me) 10004764 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10004768 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10004776 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10004792 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10004824 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10004888 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10005016 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10005272 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10005784 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10006808 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10008856 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10012952 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10021144 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10037528 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10070296 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10135832 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10266904 | 10004760 -> [ 361.000000] (8:node@c-7.me) 10529048 | 10004760 -> [ 361.000000] (8:node@c-7.me) 11053336 | 10004760 -> [ 361.000000] (8:node@c-7.me) 12101912 | 10004760 -> [ 361.000000] (8:node@c-7.me) 14199064 | 10004760 -> [ 361.000000] (8:node@c-7.me) 1616152 | 10004760 -> [ 361.000000] (8:node@c-7.me) Predecessor: 6518808 -> [ 364.000000] (6:node@c-5.me) My finger table: -> [ 364.000000] (6:node@c-5.me) Start | Succ -> [ 364.000000] (6:node@c-5.me) 10874877 | 533744 -> [ 364.000000] (6:node@c-5.me) 10874878 | 533744 -> [ 364.000000] (6:node@c-5.me) 10874880 | 533744 -> [ 364.000000] (6:node@c-5.me) 10874884 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10874892 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10874908 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10874940 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10875004 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10875132 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10875388 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10875900 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10876924 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10878972 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10883068 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10891260 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10907644 | 10874876 -> [ 364.000000] (6:node@c-5.me) 10940412 | 10874876 -> [ 364.000000] (6:node@c-5.me) 11005948 | 10874876 -> [ 364.000000] (6:node@c-5.me) 11137020 | 10874876 -> [ 364.000000] (6:node@c-5.me) 11399164 | 10874876 -> [ 364.000000] (6:node@c-5.me) 11923452 | 10874876 -> [ 364.000000] (6:node@c-5.me) 12972028 | 10874876 -> [ 364.000000] (6:node@c-5.me) 15069180 | 10874876 -> [ 364.000000] (6:node@c-5.me) 2486268 | 10874876 -> [ 364.000000] (6:node@c-5.me) Predecessor: -1 -> [ 371.000000] (3:node@c-2.me) My finger table: -> [ 371.000000] (3:node@c-2.me) Start | Succ -> [ 371.000000] (3:node@c-2.me) 533745 | 10004760 -> [ 371.000000] (3:node@c-2.me) 533746 | 10004760 -> [ 371.000000] (3:node@c-2.me) 533748 | 10004760 -> [ 371.000000] (3:node@c-2.me) 533752 | 533744 -> [ 371.000000] (3:node@c-2.me) 533760 | 533744 -> [ 371.000000] (3:node@c-2.me) 533776 | 533744 -> [ 371.000000] (3:node@c-2.me) 533808 | 533744 -> [ 371.000000] (3:node@c-2.me) 533872 | 533744 -> [ 371.000000] (3:node@c-2.me) 534000 | 533744 -> [ 371.000000] (3:node@c-2.me) 534256 | 533744 -> [ 371.000000] (3:node@c-2.me) 534768 | 533744 -> [ 371.000000] (3:node@c-2.me) 535792 | 533744 -> [ 371.000000] (3:node@c-2.me) 537840 | 533744 -> [ 371.000000] (3:node@c-2.me) 541936 | 533744 -> [ 371.000000] (3:node@c-2.me) 550128 | 533744 -> [ 371.000000] (3:node@c-2.me) 566512 | 533744 -> [ 371.000000] (3:node@c-2.me) 599280 | 533744 -> [ 371.000000] (3:node@c-2.me) 664816 | 533744 -> [ 371.000000] (3:node@c-2.me) 795888 | 533744 -> [ 371.000000] (3:node@c-2.me) 1058032 | 533744 -> [ 371.000000] (3:node@c-2.me) 1582320 | 533744 -> [ 371.000000] (3:node@c-2.me) 2630896 | 533744 -> [ 371.000000] (3:node@c-2.me) 4728048 | 533744 -> [ 371.000000] (3:node@c-2.me) 8922352 | 533744 -> [ 371.000000] (3:node@c-2.me) Predecessor: 10874876 -> [ 372.000000] (1:node@c-0.me) My finger table: -> [ 372.000000] (1:node@c-0.me) Start | Succ -> [ 372.000000] (1:node@c-0.me) 43 | 366680 -> [ 372.000000] (1:node@c-0.me) 44 | 366680 -> [ 372.000000] (1:node@c-0.me) 46 | 366680 -> [ 372.000000] (1:node@c-0.me) 50 | 42 -> [ 372.000000] (1:node@c-0.me) 58 | 42 -> [ 372.000000] (1:node@c-0.me) 74 | 42 -> [ 372.000000] (1:node@c-0.me) 106 | 42 -> [ 372.000000] (1:node@c-0.me) 170 | 42 -> [ 372.000000] (1:node@c-0.me) 298 | 42 -> [ 372.000000] (1:node@c-0.me) 554 | 42 -> [ 372.000000] (1:node@c-0.me) 1066 | 42 -> [ 372.000000] (1:node@c-0.me) 2090 | 42 -> [ 372.000000] (1:node@c-0.me) 4138 | 42 -> [ 372.000000] (1:node@c-0.me) 8234 | 42 -> [ 372.000000] (1:node@c-0.me) 16426 | 42 -> [ 372.000000] (1:node@c-0.me) 32810 | 42 -> [ 372.000000] (1:node@c-0.me) 65578 | 42 -> [ 372.000000] (1:node@c-0.me) 131114 | 42 -> [ 372.000000] (1:node@c-0.me) 262186 | 42 -> [ 372.000000] (1:node@c-0.me) 524330 | 42 -> [ 372.000000] (1:node@c-0.me) 1048618 | 42 -> [ 372.000000] (1:node@c-0.me) 2097194 | 42 -> [ 372.000000] (1:node@c-0.me) 4194346 | 42 -> [ 372.000000] (1:node@c-0.me) 8388650 | 42 -> [ 372.000000] (1:node@c-0.me) Predecessor: 16728096 -> [ 374.000000] (8:node@c-7.me) My finger table: -> [ 374.000000] (8:node@c-7.me) Start | Succ -> [ 374.000000] (8:node@c-7.me) 10004761 | 16509405 -> [ 374.000000] (8:node@c-7.me) 10004762 | 16509405 -> [ 374.000000] (8:node@c-7.me) 10004764 | 16509405 -> [ 374.000000] (8:node@c-7.me) 10004768 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10004776 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10004792 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10004824 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10004888 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10005016 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10005272 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10005784 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10006808 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10008856 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10012952 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10021144 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10037528 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10070296 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10135832 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10266904 | 10004760 -> [ 374.000000] (8:node@c-7.me) 10529048 | 10004760 -> [ 374.000000] (8:node@c-7.me) 11053336 | 10004760 -> [ 374.000000] (8:node@c-7.me) 12101912 | 10004760 -> [ 374.000000] (8:node@c-7.me) 14199064 | 10004760 -> [ 374.000000] (8:node@c-7.me) 1616152 | 10004760 -> [ 374.000000] (8:node@c-7.me) Predecessor: 6518808 -> [ 375.000000] (5:node@c-4.me) My finger table: -> [ 375.000000] (5:node@c-4.me) Start | Succ -> [ 375.000000] (5:node@c-4.me) 16509406 | 16728096 -> [ 375.000000] (5:node@c-4.me) 16509407 | 16728096 -> [ 375.000000] (5:node@c-4.me) 16509409 | 16728096 -> [ 375.000000] (5:node@c-4.me) 16509413 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16509421 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16509437 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16509469 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16509533 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16509661 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16509917 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16510429 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16511453 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16513501 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16517597 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16525789 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16542173 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16574941 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16640477 | 16509405 -> [ 375.000000] (5:node@c-4.me) 16771549 | 16509405 -> [ 375.000000] (5:node@c-4.me) 256477 | 16509405 -> [ 375.000000] (5:node@c-4.me) 780765 | 16509405 -> [ 375.000000] (5:node@c-4.me) 1829341 | 16509405 -> [ 375.000000] (5:node@c-4.me) 3926493 | 16509405 -> [ 375.000000] (5:node@c-4.me) 8120797 | 16509405 -> [ 375.000000] (5:node@c-4.me) Predecessor: 10004760 -> [ 395.000000] (9:node@c-8.me) My finger table: -> [ 395.000000] (9:node@c-8.me) Start | Succ -> [ 395.000000] (9:node@c-8.me) 6518809 | 10004760 -> [ 395.000000] (9:node@c-8.me) 6518810 | 16728096 -> [ 395.000000] (9:node@c-8.me) 6518812 | 10004760 -> [ 395.000000] (9:node@c-8.me) 6518816 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6518824 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6518840 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6518872 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6518936 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6519064 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6519320 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6519832 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6520856 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6522904 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6527000 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6535192 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6551576 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6584344 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6649880 | 6518808 -> [ 395.000000] (9:node@c-8.me) 6780952 | 6518808 -> [ 395.000000] (9:node@c-8.me) 7043096 | 6518808 -> [ 395.000000] (9:node@c-8.me) 7567384 | 6518808 -> [ 395.000000] (9:node@c-8.me) 8615960 | 6518808 -> [ 395.000000] (9:node@c-8.me) 10713112 | 6518808 -> [ 395.000000] (9:node@c-8.me) 14907416 | 6518808 -> [ 395.000000] (9:node@c-8.me) Predecessor: 2015253 -> [ 398.000000] (7:node@c-6.me) My finger table: -> [ 398.000000] (7:node@c-6.me) Start | Succ -> [ 398.000000] (7:node@c-6.me) 16728097 | 42 -> [ 398.000000] (7:node@c-6.me) 16728098 | 42 -> [ 398.000000] (7:node@c-6.me) 16728100 | 42 -> [ 398.000000] (7:node@c-6.me) 16728104 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16728112 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16728128 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16728160 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16728224 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16728352 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16728608 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16729120 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16730144 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16732192 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16736288 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16744480 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16760864 | 16728096 -> [ 398.000000] (7:node@c-6.me) 16416 | 16728096 -> [ 398.000000] (7:node@c-6.me) 81952 | 16728096 -> [ 398.000000] (7:node@c-6.me) 213024 | 16728096 -> [ 398.000000] (7:node@c-6.me) 475168 | 16728096 -> [ 398.000000] (7:node@c-6.me) 999456 | 16728096 -> [ 398.000000] (7:node@c-6.me) 2048032 | 16728096 -> [ 398.000000] (7:node@c-6.me) 4145184 | 16728096 -> [ 398.000000] (7:node@c-6.me) 8339488 | 16728096 -> [ 398.000000] (7:node@c-6.me) Predecessor: 16509405 -> [ 405.000000] (4:node@c-3.me) My finger table: -> [ 405.000000] (4:node@c-3.me) Start | Succ -> [ 405.000000] (4:node@c-3.me) 1319739 | 2015253 -> [ 405.000000] (4:node@c-3.me) 1319740 | 2015253 -> [ 405.000000] (4:node@c-3.me) 1319742 | 2015253 -> [ 405.000000] (4:node@c-3.me) 1319746 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1319754 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1319770 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1319802 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1319866 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1319994 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1320250 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1320762 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1321786 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1323834 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1327930 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1336122 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1352506 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1385274 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1450810 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1581882 | 1319738 -> [ 405.000000] (4:node@c-3.me) 1844026 | 1319738 -> [ 405.000000] (4:node@c-3.me) 2368314 | 1319738 -> [ 405.000000] (4:node@c-3.me) 3416890 | 1319738 -> [ 405.000000] (4:node@c-3.me) 5514042 | 1319738 -> [ 405.000000] (4:node@c-3.me) 9708346 | 1319738 -> [ 405.000000] (4:node@c-3.me) Predecessor: 366680 -> [ 411.000000] (2:node@c-1.me) My finger table: -> [ 411.000000] (2:node@c-1.me) Start | Succ -> [ 411.000000] (2:node@c-1.me) 366681 | 1319738 -> [ 411.000000] (2:node@c-1.me) 366682 | 1319738 -> [ 411.000000] (2:node@c-1.me) 366684 | 1319738 -> [ 411.000000] (2:node@c-1.me) 366688 | 366680 -> [ 411.000000] (2:node@c-1.me) 366696 | 366680 -> [ 411.000000] (2:node@c-1.me) 366712 | 366680 -> [ 411.000000] (2:node@c-1.me) 366744 | 366680 -> [ 411.000000] (2:node@c-1.me) 366808 | 366680 -> [ 411.000000] (2:node@c-1.me) 366936 | 366680 -> [ 411.000000] (2:node@c-1.me) 367192 | 366680 -> [ 411.000000] (2:node@c-1.me) 367704 | 366680 -> [ 411.000000] (2:node@c-1.me) 368728 | 366680 -> [ 411.000000] (2:node@c-1.me) 370776 | 366680 -> [ 411.000000] (2:node@c-1.me) 374872 | 366680 -> [ 411.000000] (2:node@c-1.me) 383064 | 366680 -> [ 411.000000] (2:node@c-1.me) 399448 | 366680 -> [ 411.000000] (2:node@c-1.me) 432216 | 366680 -> [ 411.000000] (2:node@c-1.me) 497752 | 366680 -> [ 411.000000] (2:node@c-1.me) 628824 | 366680 -> [ 411.000000] (2:node@c-1.me) 890968 | 366680 -> [ 411.000000] (2:node@c-1.me) 1415256 | 366680 -> [ 411.000000] (2:node@c-1.me) 2463832 | 366680 -> [ 411.000000] (2:node@c-1.me) 4560984 | 366680 -> [ 411.000000] (2:node@c-1.me) 8755288 | 366680 -> [ 411.000000] (2:node@c-1.me) Predecessor: 42 -> [ 426.000000] (10:node@c-9.me) My finger table: -> [ 426.000000] (10:node@c-9.me) Start | Succ -> [ 426.000000] (10:node@c-9.me) 2015254 | 6518808 -> [ 426.000000] (10:node@c-9.me) 2015255 | 6518808 -> [ 426.000000] (10:node@c-9.me) 2015257 | 6518808 -> [ 426.000000] (10:node@c-9.me) 2015261 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2015269 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2015285 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2015317 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2015381 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2015509 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2015765 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2016277 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2017301 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2019349 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2023445 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2031637 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2048021 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2080789 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2146325 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2277397 | 2015253 -> [ 426.000000] (10:node@c-9.me) 2539541 | 2015253 -> [ 426.000000] (10:node@c-9.me) 3063829 | 2015253 -> [ 426.000000] (10:node@c-9.me) 4112405 | 2015253 -> [ 426.000000] (10:node@c-9.me) 6209557 | 2015253 -> [ 426.000000] (10:node@c-9.me) 10403861 | 2015253 -> [ 426.000000] (10:node@c-9.me) Predecessor: 1319738 -> [ 486.000000] (6:node@c-5.me) My finger table: -> [ 486.000000] (6:node@c-5.me) Start | Succ -> [ 486.000000] (6:node@c-5.me) 10874877 | 533744 -> [ 486.000000] (6:node@c-5.me) 10874878 | 533744 -> [ 486.000000] (6:node@c-5.me) 10874880 | 533744 -> [ 486.000000] (6:node@c-5.me) 10874884 | 533744 -> [ 486.000000] (6:node@c-5.me) 10874892 | 10874876 -> [ 486.000000] (6:node@c-5.me) 10874908 | 10874876 -> [ 486.000000] (6:node@c-5.me) 10874940 | 10874876 -> [ 486.000000] (6:node@c-5.me) 10875004 | 10874876 -> [ 486.000000] (6:node@c-5.me) 10875132 | 10874876 -> [ 486.000000] (6:node@c-5.me) 10875388 | 10874876 -> [ 486.000000] (6:node@c-5.me) 10875900 | 10874876 -> [ 486.000000] (6:node@c-5.me) 10876924 | 10874876 -> [ 486.000000] (6:node@c-5.me) 10878972 | 10874876 -> [ 486.000000] (6:node@c-5.me) 10883068 | 10874876 -> [ 486.000000] (6:node@c-5.me) 10891260 | 10874876 -> [ 486.000000] (6:node@c-5.me) 10907644 | 10874876 -> [ 486.000000] (6:node@c-5.me) 10940412 | 10874876 -> [ 486.000000] (6:node@c-5.me) 11005948 | 10874876 -> [ 486.000000] (6:node@c-5.me) 11137020 | 10874876 -> [ 486.000000] (6:node@c-5.me) 11399164 | 10874876 -> [ 486.000000] (6:node@c-5.me) 11923452 | 10874876 -> [ 486.000000] (6:node@c-5.me) 12972028 | 10874876 -> [ 486.000000] (6:node@c-5.me) 15069180 | 10874876 -> [ 486.000000] (6:node@c-5.me) 2486268 | 10874876 -> [ 486.000000] (6:node@c-5.me) Predecessor: -1 -> [ 491.000000] (4:node@c-3.me) My finger table: -> [ 491.000000] (4:node@c-3.me) Start | Succ -> [ 491.000000] (4:node@c-3.me) 1319739 | 2015253 -> [ 491.000000] (4:node@c-3.me) 1319740 | 2015253 -> [ 491.000000] (4:node@c-3.me) 1319742 | 2015253 -> [ 491.000000] (4:node@c-3.me) 1319746 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1319754 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1319770 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1319802 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1319866 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1319994 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1320250 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1320762 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1321786 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1323834 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1327930 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1336122 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1352506 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1385274 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1450810 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1581882 | 1319738 -> [ 491.000000] (4:node@c-3.me) 1844026 | 1319738 -> [ 491.000000] (4:node@c-3.me) 2368314 | 1319738 -> [ 491.000000] (4:node@c-3.me) 3416890 | 1319738 -> [ 491.000000] (4:node@c-3.me) 5514042 | 1319738 -> [ 491.000000] (4:node@c-3.me) 9708346 | 1319738 -> [ 491.000000] (4:node@c-3.me) Predecessor: 533744 -> [ 492.000000] (1:node@c-0.me) My finger table: -> [ 492.000000] (1:node@c-0.me) Start | Succ -> [ 492.000000] (1:node@c-0.me) 43 | 366680 -> [ 492.000000] (1:node@c-0.me) 44 | 366680 -> [ 492.000000] (1:node@c-0.me) 46 | 366680 -> [ 492.000000] (1:node@c-0.me) 50 | 366680 -> [ 492.000000] (1:node@c-0.me) 58 | 42 -> [ 492.000000] (1:node@c-0.me) 74 | 42 -> [ 492.000000] (1:node@c-0.me) 106 | 42 -> [ 492.000000] (1:node@c-0.me) 170 | 42 -> [ 492.000000] (1:node@c-0.me) 298 | 42 -> [ 492.000000] (1:node@c-0.me) 554 | 42 -> [ 492.000000] (1:node@c-0.me) 1066 | 42 -> [ 492.000000] (1:node@c-0.me) 2090 | 42 -> [ 492.000000] (1:node@c-0.me) 4138 | 42 -> [ 492.000000] (1:node@c-0.me) 8234 | 42 -> [ 492.000000] (1:node@c-0.me) 16426 | 42 -> [ 492.000000] (1:node@c-0.me) 32810 | 42 -> [ 492.000000] (1:node@c-0.me) 65578 | 42 -> [ 492.000000] (1:node@c-0.me) 131114 | 42 -> [ 492.000000] (1:node@c-0.me) 262186 | 42 -> [ 492.000000] (1:node@c-0.me) 524330 | 42 -> [ 492.000000] (1:node@c-0.me) 1048618 | 42 -> [ 492.000000] (1:node@c-0.me) 2097194 | 42 -> [ 492.000000] (1:node@c-0.me) 4194346 | 42 -> [ 492.000000] (1:node@c-0.me) 8388650 | 42 -> [ 492.000000] (1:node@c-0.me) Predecessor: 16728096 -> [ 495.000000] (3:node@c-2.me) My finger table: -> [ 495.000000] (3:node@c-2.me) Start | Succ -> [ 495.000000] (3:node@c-2.me) 533745 | 1319738 -> [ 495.000000] (3:node@c-2.me) 533746 | 10004760 -> [ 495.000000] (3:node@c-2.me) 533748 | 10004760 -> [ 495.000000] (3:node@c-2.me) 533752 | 1319738 -> [ 495.000000] (3:node@c-2.me) 533760 | 533744 -> [ 495.000000] (3:node@c-2.me) 533776 | 533744 -> [ 495.000000] (3:node@c-2.me) 533808 | 533744 -> [ 495.000000] (3:node@c-2.me) 533872 | 533744 -> [ 495.000000] (3:node@c-2.me) 534000 | 533744 -> [ 495.000000] (3:node@c-2.me) 534256 | 533744 -> [ 495.000000] (3:node@c-2.me) 534768 | 533744 -> [ 495.000000] (3:node@c-2.me) 535792 | 533744 -> [ 495.000000] (3:node@c-2.me) 537840 | 533744 -> [ 495.000000] (3:node@c-2.me) 541936 | 533744 -> [ 495.000000] (3:node@c-2.me) 550128 | 533744 -> [ 495.000000] (3:node@c-2.me) 566512 | 533744 -> [ 495.000000] (3:node@c-2.me) 599280 | 533744 -> [ 495.000000] (3:node@c-2.me) 664816 | 533744 -> [ 495.000000] (3:node@c-2.me) 795888 | 533744 -> [ 495.000000] (3:node@c-2.me) 1058032 | 533744 -> [ 495.000000] (3:node@c-2.me) 1582320 | 533744 -> [ 495.000000] (3:node@c-2.me) 2630896 | 533744 -> [ 495.000000] (3:node@c-2.me) 4728048 | 533744 -> [ 495.000000] (3:node@c-2.me) 8922352 | 533744 -> [ 495.000000] (3:node@c-2.me) Predecessor: 10874876 -> [ 502.000000] (8:node@c-7.me) My finger table: -> [ 502.000000] (8:node@c-7.me) Start | Succ -> [ 502.000000] (8:node@c-7.me) 10004761 | 16509405 -> [ 502.000000] (8:node@c-7.me) 10004762 | 16509405 -> [ 502.000000] (8:node@c-7.me) 10004764 | 16509405 -> [ 502.000000] (8:node@c-7.me) 10004768 | 16509405 -> [ 502.000000] (8:node@c-7.me) 10004776 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10004792 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10004824 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10004888 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10005016 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10005272 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10005784 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10006808 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10008856 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10012952 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10021144 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10037528 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10070296 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10135832 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10266904 | 10004760 -> [ 502.000000] (8:node@c-7.me) 10529048 | 10004760 -> [ 502.000000] (8:node@c-7.me) 11053336 | 10004760 -> [ 502.000000] (8:node@c-7.me) 12101912 | 10004760 -> [ 502.000000] (8:node@c-7.me) 14199064 | 10004760 -> [ 502.000000] (8:node@c-7.me) 1616152 | 10004760 -> [ 502.000000] (8:node@c-7.me) Predecessor: 6518808 -> [ 505.000000] (5:node@c-4.me) My finger table: -> [ 505.000000] (5:node@c-4.me) Start | Succ -> [ 505.000000] (5:node@c-4.me) 16509406 | 16728096 -> [ 505.000000] (5:node@c-4.me) 16509407 | 16728096 -> [ 505.000000] (5:node@c-4.me) 16509409 | 16728096 -> [ 505.000000] (5:node@c-4.me) 16509413 | 16728096 -> [ 505.000000] (5:node@c-4.me) 16509421 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16509437 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16509469 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16509533 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16509661 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16509917 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16510429 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16511453 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16513501 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16517597 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16525789 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16542173 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16574941 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16640477 | 16509405 -> [ 505.000000] (5:node@c-4.me) 16771549 | 16509405 -> [ 505.000000] (5:node@c-4.me) 256477 | 16509405 -> [ 505.000000] (5:node@c-4.me) 780765 | 16509405 -> [ 505.000000] (5:node@c-4.me) 1829341 | 16509405 -> [ 505.000000] (5:node@c-4.me) 3926493 | 16509405 -> [ 505.000000] (5:node@c-4.me) 8120797 | 16509405 -> [ 505.000000] (5:node@c-4.me) Predecessor: 10004760 -> [ 521.000000] (7:node@c-6.me) My finger table: -> [ 521.000000] (7:node@c-6.me) Start | Succ -> [ 521.000000] (7:node@c-6.me) 16728097 | 42 -> [ 521.000000] (7:node@c-6.me) 16728098 | 42 -> [ 521.000000] (7:node@c-6.me) 16728100 | 42 -> [ 521.000000] (7:node@c-6.me) 16728104 | 42 -> [ 521.000000] (7:node@c-6.me) 16728112 | 16728096 -> [ 521.000000] (7:node@c-6.me) 16728128 | 16728096 -> [ 521.000000] (7:node@c-6.me) 16728160 | 16728096 -> [ 521.000000] (7:node@c-6.me) 16728224 | 16728096 -> [ 521.000000] (7:node@c-6.me) 16728352 | 16728096 -> [ 521.000000] (7:node@c-6.me) 16728608 | 16728096 -> [ 521.000000] (7:node@c-6.me) 16729120 | 16728096 -> [ 521.000000] (7:node@c-6.me) 16730144 | 16728096 -> [ 521.000000] (7:node@c-6.me) 16732192 | 16728096 -> [ 521.000000] (7:node@c-6.me) 16736288 | 16728096 -> [ 521.000000] (7:node@c-6.me) 16744480 | 16728096 -> [ 521.000000] (7:node@c-6.me) 16760864 | 16728096 -> [ 521.000000] (7:node@c-6.me) 16416 | 16728096 -> [ 521.000000] (7:node@c-6.me) 81952 | 16728096 -> [ 521.000000] (7:node@c-6.me) 213024 | 16728096 -> [ 521.000000] (7:node@c-6.me) 475168 | 16728096 -> [ 521.000000] (7:node@c-6.me) 999456 | 16728096 -> [ 521.000000] (7:node@c-6.me) 2048032 | 16728096 -> [ 521.000000] (7:node@c-6.me) 4145184 | 16728096 -> [ 521.000000] (7:node@c-6.me) 8339488 | 16728096 -> [ 521.000000] (7:node@c-6.me) Predecessor: 16509405 -> [ 535.000000] (9:node@c-8.me) My finger table: -> [ 535.000000] (9:node@c-8.me) Start | Succ -> [ 535.000000] (9:node@c-8.me) 6518809 | 10004760 -> [ 535.000000] (9:node@c-8.me) 6518810 | 16728096 -> [ 535.000000] (9:node@c-8.me) 6518812 | 10004760 -> [ 535.000000] (9:node@c-8.me) 6518816 | 10004760 -> [ 535.000000] (9:node@c-8.me) 6518824 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6518840 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6518872 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6518936 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6519064 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6519320 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6519832 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6520856 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6522904 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6527000 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6535192 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6551576 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6584344 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6649880 | 6518808 -> [ 535.000000] (9:node@c-8.me) 6780952 | 6518808 -> [ 535.000000] (9:node@c-8.me) 7043096 | 6518808 -> [ 535.000000] (9:node@c-8.me) 7567384 | 6518808 -> [ 535.000000] (9:node@c-8.me) 8615960 | 6518808 -> [ 535.000000] (9:node@c-8.me) 10713112 | 6518808 -> [ 535.000000] (9:node@c-8.me) 14907416 | 6518808 -> [ 535.000000] (9:node@c-8.me) Predecessor: 2015253 -> [ 537.000000] (4:node@c-3.me) My finger table: -> [ 537.000000] (4:node@c-3.me) Start | Succ -> [ 537.000000] (4:node@c-3.me) 1319739 | 2015253 -> [ 537.000000] (4:node@c-3.me) 1319740 | 2015253 -> [ 537.000000] (4:node@c-3.me) 1319742 | 2015253 -> [ 537.000000] (4:node@c-3.me) 1319746 | 2015253 -> [ 537.000000] (4:node@c-3.me) 1319754 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1319770 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1319802 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1319866 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1319994 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1320250 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1320762 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1321786 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1323834 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1327930 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1336122 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1352506 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1385274 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1450810 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1581882 | 1319738 -> [ 537.000000] (4:node@c-3.me) 1844026 | 1319738 -> [ 537.000000] (4:node@c-3.me) 2368314 | 1319738 -> [ 537.000000] (4:node@c-3.me) 3416890 | 1319738 -> [ 537.000000] (4:node@c-3.me) 5514042 | 1319738 -> [ 537.000000] (4:node@c-3.me) 9708346 | 1319738 -> [ 537.000000] (4:node@c-3.me) Predecessor: 533744 -> [ 539.000000] (2:node@c-1.me) My finger table: -> [ 539.000000] (2:node@c-1.me) Start | Succ -> [ 539.000000] (2:node@c-1.me) 366681 | 533744 -> [ 539.000000] (2:node@c-1.me) 366682 | 1319738 -> [ 539.000000] (2:node@c-1.me) 366684 | 1319738 -> [ 539.000000] (2:node@c-1.me) 366688 | 533744 -> [ 539.000000] (2:node@c-1.me) 366696 | 366680 -> [ 539.000000] (2:node@c-1.me) 366712 | 366680 -> [ 539.000000] (2:node@c-1.me) 366744 | 366680 -> [ 539.000000] (2:node@c-1.me) 366808 | 366680 -> [ 539.000000] (2:node@c-1.me) 366936 | 366680 -> [ 539.000000] (2:node@c-1.me) 367192 | 366680 -> [ 539.000000] (2:node@c-1.me) 367704 | 366680 -> [ 539.000000] (2:node@c-1.me) 368728 | 366680 -> [ 539.000000] (2:node@c-1.me) 370776 | 366680 -> [ 539.000000] (2:node@c-1.me) 374872 | 366680 -> [ 539.000000] (2:node@c-1.me) 383064 | 366680 -> [ 539.000000] (2:node@c-1.me) 399448 | 366680 -> [ 539.000000] (2:node@c-1.me) 432216 | 366680 -> [ 539.000000] (2:node@c-1.me) 497752 | 366680 -> [ 539.000000] (2:node@c-1.me) 628824 | 366680 -> [ 539.000000] (2:node@c-1.me) 890968 | 366680 -> [ 539.000000] (2:node@c-1.me) 1415256 | 366680 -> [ 539.000000] (2:node@c-1.me) 2463832 | 366680 -> [ 539.000000] (2:node@c-1.me) 4560984 | 366680 -> [ 539.000000] (2:node@c-1.me) 8755288 | 366680 -> [ 539.000000] (2:node@c-1.me) Predecessor: 42 -> [ 540.000000] (3:node@c-2.me) My finger table: -> [ 540.000000] (3:node@c-2.me) Start | Succ -> [ 540.000000] (3:node@c-2.me) 533745 | 1319738 -> [ 540.000000] (3:node@c-2.me) 533746 | 10004760 -> [ 540.000000] (3:node@c-2.me) 533748 | 10004760 -> [ 540.000000] (3:node@c-2.me) 533752 | 1319738 -> [ 540.000000] (3:node@c-2.me) 533760 | 533744 -> [ 540.000000] (3:node@c-2.me) 533776 | 533744 -> [ 540.000000] (3:node@c-2.me) 533808 | 533744 -> [ 540.000000] (3:node@c-2.me) 533872 | 533744 -> [ 540.000000] (3:node@c-2.me) 534000 | 533744 -> [ 540.000000] (3:node@c-2.me) 534256 | 533744 -> [ 540.000000] (3:node@c-2.me) 534768 | 533744 -> [ 540.000000] (3:node@c-2.me) 535792 | 533744 -> [ 540.000000] (3:node@c-2.me) 537840 | 533744 -> [ 540.000000] (3:node@c-2.me) 541936 | 533744 -> [ 540.000000] (3:node@c-2.me) 550128 | 533744 -> [ 540.000000] (3:node@c-2.me) 566512 | 533744 -> [ 540.000000] (3:node@c-2.me) 599280 | 533744 -> [ 540.000000] (3:node@c-2.me) 664816 | 533744 -> [ 540.000000] (3:node@c-2.me) 795888 | 533744 -> [ 540.000000] (3:node@c-2.me) 1058032 | 533744 -> [ 540.000000] (3:node@c-2.me) 1582320 | 533744 -> [ 540.000000] (3:node@c-2.me) 2630896 | 533744 -> [ 540.000000] (3:node@c-2.me) 4728048 | 533744 -> [ 540.000000] (3:node@c-2.me) 8922352 | 533744 -> [ 540.000000] (3:node@c-2.me) Predecessor: 366680 -> [ 567.000000] (10:node@c-9.me) My finger table: -> [ 567.000000] (10:node@c-9.me) Start | Succ -> [ 567.000000] (10:node@c-9.me) 2015254 | 6518808 -> [ 567.000000] (10:node@c-9.me) 2015255 | 6518808 -> [ 567.000000] (10:node@c-9.me) 2015257 | 6518808 -> [ 567.000000] (10:node@c-9.me) 2015261 | 6518808 -> [ 567.000000] (10:node@c-9.me) 2015269 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2015285 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2015317 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2015381 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2015509 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2015765 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2016277 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2017301 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2019349 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2023445 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2031637 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2048021 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2080789 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2146325 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2277397 | 2015253 -> [ 567.000000] (10:node@c-9.me) 2539541 | 2015253 -> [ 567.000000] (10:node@c-9.me) 3063829 | 2015253 -> [ 567.000000] (10:node@c-9.me) 4112405 | 2015253 -> [ 567.000000] (10:node@c-9.me) 6209557 | 2015253 -> [ 567.000000] (10:node@c-9.me) 10403861 | 2015253 -> [ 567.000000] (10:node@c-9.me) Predecessor: 1319738 -> [ 613.000000] (1:node@c-0.me) My finger table: -> [ 613.000000] (1:node@c-0.me) Start | Succ -> [ 613.000000] (1:node@c-0.me) 43 | 366680 -> [ 613.000000] (1:node@c-0.me) 44 | 366680 -> [ 613.000000] (1:node@c-0.me) 46 | 366680 -> [ 613.000000] (1:node@c-0.me) 50 | 366680 -> [ 613.000000] (1:node@c-0.me) 58 | 366680 -> [ 613.000000] (1:node@c-0.me) 74 | 42 -> [ 613.000000] (1:node@c-0.me) 106 | 42 -> [ 613.000000] (1:node@c-0.me) 170 | 42 -> [ 613.000000] (1:node@c-0.me) 298 | 42 -> [ 613.000000] (1:node@c-0.me) 554 | 42 -> [ 613.000000] (1:node@c-0.me) 1066 | 42 -> [ 613.000000] (1:node@c-0.me) 2090 | 42 -> [ 613.000000] (1:node@c-0.me) 4138 | 42 -> [ 613.000000] (1:node@c-0.me) 8234 | 42 -> [ 613.000000] (1:node@c-0.me) 16426 | 42 -> [ 613.000000] (1:node@c-0.me) 32810 | 42 -> [ 613.000000] (1:node@c-0.me) 65578 | 42 -> [ 613.000000] (1:node@c-0.me) 131114 | 42 -> [ 613.000000] (1:node@c-0.me) 262186 | 42 -> [ 613.000000] (1:node@c-0.me) 524330 | 42 -> [ 613.000000] (1:node@c-0.me) 1048618 | 42 -> [ 613.000000] (1:node@c-0.me) 2097194 | 42 -> [ 613.000000] (1:node@c-0.me) 4194346 | 42 -> [ 613.000000] (1:node@c-0.me) 8388650 | 42 -> [ 613.000000] (1:node@c-0.me) Predecessor: 16728096 -> [ 616.000000] (3:node@c-2.me) My finger table: -> [ 616.000000] (3:node@c-2.me) Start | Succ -> [ 616.000000] (3:node@c-2.me) 533745 | 1319738 -> [ 616.000000] (3:node@c-2.me) 533746 | 10004760 -> [ 616.000000] (3:node@c-2.me) 533748 | 10004760 -> [ 616.000000] (3:node@c-2.me) 533752 | 1319738 -> [ 616.000000] (3:node@c-2.me) 533760 | 1319738 -> [ 616.000000] (3:node@c-2.me) 533776 | 533744 -> [ 616.000000] (3:node@c-2.me) 533808 | 533744 -> [ 616.000000] (3:node@c-2.me) 533872 | 533744 -> [ 616.000000] (3:node@c-2.me) 534000 | 533744 -> [ 616.000000] (3:node@c-2.me) 534256 | 533744 -> [ 616.000000] (3:node@c-2.me) 534768 | 533744 -> [ 616.000000] (3:node@c-2.me) 535792 | 533744 -> [ 616.000000] (3:node@c-2.me) 537840 | 533744 -> [ 616.000000] (3:node@c-2.me) 541936 | 533744 -> [ 616.000000] (3:node@c-2.me) 550128 | 533744 -> [ 616.000000] (3:node@c-2.me) 566512 | 533744 -> [ 616.000000] (3:node@c-2.me) 599280 | 533744 -> [ 616.000000] (3:node@c-2.me) 664816 | 533744 -> [ 616.000000] (3:node@c-2.me) 795888 | 533744 -> [ 616.000000] (3:node@c-2.me) 1058032 | 533744 -> [ 616.000000] (3:node@c-2.me) 1582320 | 533744 -> [ 616.000000] (3:node@c-2.me) 2630896 | 533744 -> [ 616.000000] (3:node@c-2.me) 4728048 | 533744 -> [ 616.000000] (3:node@c-2.me) 8922352 | 533744 -> [ 616.000000] (3:node@c-2.me) Predecessor: 366680 -> [ 620.000000] (6:node@c-5.me) My finger table: -> [ 620.000000] (6:node@c-5.me) Start | Succ -> [ 620.000000] (6:node@c-5.me) 10874877 | 16728096 -> [ 620.000000] (6:node@c-5.me) 10874878 | 533744 -> [ 620.000000] (6:node@c-5.me) 10874880 | 533744 -> [ 620.000000] (6:node@c-5.me) 10874884 | 533744 -> [ 620.000000] (6:node@c-5.me) 10874892 | 16728096 -> [ 620.000000] (6:node@c-5.me) 10874908 | 10874876 -> [ 620.000000] (6:node@c-5.me) 10874940 | 10874876 -> [ 620.000000] (6:node@c-5.me) 10875004 | 10874876 -> [ 620.000000] (6:node@c-5.me) 10875132 | 10874876 -> [ 620.000000] (6:node@c-5.me) 10875388 | 10874876 -> [ 620.000000] (6:node@c-5.me) 10875900 | 10874876 -> [ 620.000000] (6:node@c-5.me) 10876924 | 10874876 -> [ 620.000000] (6:node@c-5.me) 10878972 | 10874876 -> [ 620.000000] (6:node@c-5.me) 10883068 | 10874876 -> [ 620.000000] (6:node@c-5.me) 10891260 | 10874876 -> [ 620.000000] (6:node@c-5.me) 10907644 | 10874876 -> [ 620.000000] (6:node@c-5.me) 10940412 | 10874876 -> [ 620.000000] (6:node@c-5.me) 11005948 | 10874876 -> [ 620.000000] (6:node@c-5.me) 11137020 | 10874876 -> [ 620.000000] (6:node@c-5.me) 11399164 | 10874876 -> [ 620.000000] (6:node@c-5.me) 11923452 | 10874876 -> [ 620.000000] (6:node@c-5.me) 12972028 | 10874876 -> [ 620.000000] (6:node@c-5.me) 15069180 | 10874876 -> [ 620.000000] (6:node@c-5.me) 2486268 | 10874876 -> [ 620.000000] (6:node@c-5.me) Predecessor: -1 -> [ 629.000000] (8:node@c-7.me) My finger table: -> [ 629.000000] (8:node@c-7.me) Start | Succ -> [ 629.000000] (8:node@c-7.me) 10004761 | 16509405 -> [ 629.000000] (8:node@c-7.me) 10004762 | 16509405 -> [ 629.000000] (8:node@c-7.me) 10004764 | 16509405 -> [ 629.000000] (8:node@c-7.me) 10004768 | 16509405 -> [ 629.000000] (8:node@c-7.me) 10004776 | 16509405 -> [ 629.000000] (8:node@c-7.me) 10004792 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10004824 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10004888 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10005016 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10005272 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10005784 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10006808 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10008856 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10012952 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10021144 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10037528 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10070296 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10135832 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10266904 | 10004760 -> [ 629.000000] (8:node@c-7.me) 10529048 | 10004760 -> [ 629.000000] (8:node@c-7.me) 11053336 | 10004760 -> [ 629.000000] (8:node@c-7.me) 12101912 | 10004760 -> [ 629.000000] (8:node@c-7.me) 14199064 | 10004760 -> [ 629.000000] (8:node@c-7.me) 1616152 | 10004760 -> [ 629.000000] (8:node@c-7.me) Predecessor: 6518808 -> [ 630.000000] (5:node@c-4.me) My finger table: -> [ 630.000000] (5:node@c-4.me) Start | Succ -> [ 630.000000] (5:node@c-4.me) 16509406 | 16728096 -> [ 630.000000] (5:node@c-4.me) 16509407 | 16728096 -> [ 630.000000] (5:node@c-4.me) 16509409 | 16728096 -> [ 630.000000] (5:node@c-4.me) 16509413 | 16728096 -> [ 630.000000] (5:node@c-4.me) 16509421 | 16728096 -> [ 630.000000] (5:node@c-4.me) 16509437 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16509469 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16509533 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16509661 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16509917 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16510429 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16511453 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16513501 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16517597 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16525789 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16542173 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16574941 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16640477 | 16509405 -> [ 630.000000] (5:node@c-4.me) 16771549 | 16509405 -> [ 630.000000] (5:node@c-4.me) 256477 | 16509405 -> [ 630.000000] (5:node@c-4.me) 780765 | 16509405 -> [ 630.000000] (5:node@c-4.me) 1829341 | 16509405 -> [ 630.000000] (5:node@c-4.me) 3926493 | 16509405 -> [ 630.000000] (5:node@c-4.me) 8120797 | 16509405 -> [ 630.000000] (5:node@c-4.me) Predecessor: 10004760 -> [ 653.000000] (7:node@c-6.me) My finger table: -> [ 653.000000] (7:node@c-6.me) Start | Succ -> [ 653.000000] (7:node@c-6.me) 16728097 | 42 -> [ 653.000000] (7:node@c-6.me) 16728098 | 42 -> [ 653.000000] (7:node@c-6.me) 16728100 | 42 -> [ 653.000000] (7:node@c-6.me) 16728104 | 42 -> [ 653.000000] (7:node@c-6.me) 16728112 | 42 -> [ 653.000000] (7:node@c-6.me) 16728128 | 16728096 -> [ 653.000000] (7:node@c-6.me) 16728160 | 16728096 -> [ 653.000000] (7:node@c-6.me) 16728224 | 16728096 -> [ 653.000000] (7:node@c-6.me) 16728352 | 16728096 -> [ 653.000000] (7:node@c-6.me) 16728608 | 16728096 -> [ 653.000000] (7:node@c-6.me) 16729120 | 16728096 -> [ 653.000000] (7:node@c-6.me) 16730144 | 16728096 -> [ 653.000000] (7:node@c-6.me) 16732192 | 16728096 -> [ 653.000000] (7:node@c-6.me) 16736288 | 16728096 -> [ 653.000000] (7:node@c-6.me) 16744480 | 16728096 -> [ 653.000000] (7:node@c-6.me) 16760864 | 16728096 -> [ 653.000000] (7:node@c-6.me) 16416 | 16728096 -> [ 653.000000] (7:node@c-6.me) 81952 | 16728096 -> [ 653.000000] (7:node@c-6.me) 213024 | 16728096 -> [ 653.000000] (7:node@c-6.me) 475168 | 16728096 -> [ 653.000000] (7:node@c-6.me) 999456 | 16728096 -> [ 653.000000] (7:node@c-6.me) 2048032 | 16728096 -> [ 653.000000] (7:node@c-6.me) 4145184 | 16728096 -> [ 653.000000] (7:node@c-6.me) 8339488 | 16728096 -> [ 653.000000] (7:node@c-6.me) Predecessor: 16509405 -> [ 663.000000] (2:node@c-1.me) My finger table: -> [ 663.000000] (2:node@c-1.me) Start | Succ -> [ 663.000000] (2:node@c-1.me) 366681 | 533744 -> [ 663.000000] (2:node@c-1.me) 366682 | 1319738 -> [ 663.000000] (2:node@c-1.me) 366684 | 1319738 -> [ 663.000000] (2:node@c-1.me) 366688 | 533744 -> [ 663.000000] (2:node@c-1.me) 366696 | 533744 -> [ 663.000000] (2:node@c-1.me) 366712 | 366680 -> [ 663.000000] (2:node@c-1.me) 366744 | 366680 -> [ 663.000000] (2:node@c-1.me) 366808 | 366680 -> [ 663.000000] (2:node@c-1.me) 366936 | 366680 -> [ 663.000000] (2:node@c-1.me) 367192 | 366680 -> [ 663.000000] (2:node@c-1.me) 367704 | 366680 -> [ 663.000000] (2:node@c-1.me) 368728 | 366680 -> [ 663.000000] (2:node@c-1.me) 370776 | 366680 -> [ 663.000000] (2:node@c-1.me) 374872 | 366680 -> [ 663.000000] (2:node@c-1.me) 383064 | 366680 -> [ 663.000000] (2:node@c-1.me) 399448 | 366680 -> [ 663.000000] (2:node@c-1.me) 432216 | 366680 -> [ 663.000000] (2:node@c-1.me) 497752 | 366680 -> [ 663.000000] (2:node@c-1.me) 628824 | 366680 -> [ 663.000000] (2:node@c-1.me) 890968 | 366680 -> [ 663.000000] (2:node@c-1.me) 1415256 | 366680 -> [ 663.000000] (2:node@c-1.me) 2463832 | 366680 -> [ 663.000000] (2:node@c-1.me) 4560984 | 366680 -> [ 663.000000] (2:node@c-1.me) 8755288 | 366680 -> [ 663.000000] (2:node@c-1.me) Predecessor: 42 -> [ 668.000000] (4:node@c-3.me) My finger table: -> [ 668.000000] (4:node@c-3.me) Start | Succ -> [ 668.000000] (4:node@c-3.me) 1319739 | 2015253 -> [ 668.000000] (4:node@c-3.me) 1319740 | 2015253 -> [ 668.000000] (4:node@c-3.me) 1319742 | 2015253 -> [ 668.000000] (4:node@c-3.me) 1319746 | 2015253 -> [ 668.000000] (4:node@c-3.me) 1319754 | 2015253 -> [ 668.000000] (4:node@c-3.me) 1319770 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1319802 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1319866 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1319994 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1320250 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1320762 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1321786 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1323834 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1327930 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1336122 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1352506 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1385274 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1450810 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1581882 | 1319738 -> [ 668.000000] (4:node@c-3.me) 1844026 | 1319738 -> [ 668.000000] (4:node@c-3.me) 2368314 | 1319738 -> [ 668.000000] (4:node@c-3.me) 3416890 | 1319738 -> [ 668.000000] (4:node@c-3.me) 5514042 | 1319738 -> [ 668.000000] (4:node@c-3.me) 9708346 | 1319738 -> [ 668.000000] (4:node@c-3.me) Predecessor: 533744 -> [ 683.000000] (5:node@c-4.me) My finger table: -> [ 683.000000] (5:node@c-4.me) Start | Succ -> [ 683.000000] (5:node@c-4.me) 16509406 | 16728096 -> [ 683.000000] (5:node@c-4.me) 16509407 | 16728096 -> [ 683.000000] (5:node@c-4.me) 16509409 | 16728096 -> [ 683.000000] (5:node@c-4.me) 16509413 | 16728096 -> [ 683.000000] (5:node@c-4.me) 16509421 | 16728096 -> [ 683.000000] (5:node@c-4.me) 16509437 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16509469 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16509533 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16509661 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16509917 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16510429 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16511453 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16513501 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16517597 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16525789 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16542173 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16574941 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16640477 | 16509405 -> [ 683.000000] (5:node@c-4.me) 16771549 | 16509405 -> [ 683.000000] (5:node@c-4.me) 256477 | 16509405 -> [ 683.000000] (5:node@c-4.me) 780765 | 16509405 -> [ 683.000000] (5:node@c-4.me) 1829341 | 16509405 -> [ 683.000000] (5:node@c-4.me) 3926493 | 16509405 -> [ 683.000000] (5:node@c-4.me) 8120797 | 16509405 -> [ 683.000000] (5:node@c-4.me) Predecessor: 10874876 -> [ 688.000000] (9:node@c-8.me) My finger table: -> [ 688.000000] (9:node@c-8.me) Start | Succ -> [ 688.000000] (9:node@c-8.me) 6518809 | 10004760 -> [ 688.000000] (9:node@c-8.me) 6518810 | 16728096 -> [ 688.000000] (9:node@c-8.me) 6518812 | 10004760 -> [ 688.000000] (9:node@c-8.me) 6518816 | 10004760 -> [ 688.000000] (9:node@c-8.me) 6518824 | 10004760 -> [ 688.000000] (9:node@c-8.me) 6518840 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6518872 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6518936 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6519064 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6519320 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6519832 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6520856 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6522904 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6527000 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6535192 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6551576 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6584344 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6649880 | 6518808 -> [ 688.000000] (9:node@c-8.me) 6780952 | 6518808 -> [ 688.000000] (9:node@c-8.me) 7043096 | 6518808 -> [ 688.000000] (9:node@c-8.me) 7567384 | 6518808 -> [ 688.000000] (9:node@c-8.me) 8615960 | 6518808 -> [ 688.000000] (9:node@c-8.me) 10713112 | 6518808 -> [ 688.000000] (9:node@c-8.me) 14907416 | 6518808 -> [ 688.000000] (9:node@c-8.me) Predecessor: 2015253 -> [ 699.000000] (10:node@c-9.me) My finger table: -> [ 699.000000] (10:node@c-9.me) Start | Succ -> [ 699.000000] (10:node@c-9.me) 2015254 | 6518808 -> [ 699.000000] (10:node@c-9.me) 2015255 | 6518808 -> [ 699.000000] (10:node@c-9.me) 2015257 | 6518808 -> [ 699.000000] (10:node@c-9.me) 2015261 | 6518808 -> [ 699.000000] (10:node@c-9.me) 2015269 | 6518808 -> [ 699.000000] (10:node@c-9.me) 2015285 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2015317 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2015381 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2015509 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2015765 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2016277 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2017301 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2019349 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2023445 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2031637 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2048021 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2080789 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2146325 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2277397 | 2015253 -> [ 699.000000] (10:node@c-9.me) 2539541 | 2015253 -> [ 699.000000] (10:node@c-9.me) 3063829 | 2015253 -> [ 699.000000] (10:node@c-9.me) 4112405 | 2015253 -> [ 699.000000] (10:node@c-9.me) 6209557 | 2015253 -> [ 699.000000] (10:node@c-9.me) 10403861 | 2015253 -> [ 699.000000] (10:node@c-9.me) Predecessor: 1319738 -> [ 733.000000] (6:node@c-5.me) My finger table: -> [ 733.000000] (6:node@c-5.me) Start | Succ -> [ 733.000000] (6:node@c-5.me) 10874877 | 16509405 -> [ 733.000000] (6:node@c-5.me) 10874878 | 533744 -> [ 733.000000] (6:node@c-5.me) 10874880 | 533744 -> [ 733.000000] (6:node@c-5.me) 10874884 | 533744 -> [ 733.000000] (6:node@c-5.me) 10874892 | 16728096 -> [ 733.000000] (6:node@c-5.me) 10874908 | 10874876 -> [ 733.000000] (6:node@c-5.me) 10874940 | 10874876 -> [ 733.000000] (6:node@c-5.me) 10875004 | 10874876 -> [ 733.000000] (6:node@c-5.me) 10875132 | 10874876 -> [ 733.000000] (6:node@c-5.me) 10875388 | 10874876 -> [ 733.000000] (6:node@c-5.me) 10875900 | 10874876 -> [ 733.000000] (6:node@c-5.me) 10876924 | 10874876 -> [ 733.000000] (6:node@c-5.me) 10878972 | 10874876 -> [ 733.000000] (6:node@c-5.me) 10883068 | 10874876 -> [ 733.000000] (6:node@c-5.me) 10891260 | 10874876 -> [ 733.000000] (6:node@c-5.me) 10907644 | 10874876 -> [ 733.000000] (6:node@c-5.me) 10940412 | 10874876 -> [ 733.000000] (6:node@c-5.me) 11005948 | 10874876 -> [ 733.000000] (6:node@c-5.me) 11137020 | 10874876 -> [ 733.000000] (6:node@c-5.me) 11399164 | 10874876 -> [ 733.000000] (6:node@c-5.me) 11923452 | 10874876 -> [ 733.000000] (6:node@c-5.me) 12972028 | 10874876 -> [ 733.000000] (6:node@c-5.me) 15069180 | 10874876 -> [ 733.000000] (6:node@c-5.me) 2486268 | 10874876 -> [ 733.000000] (6:node@c-5.me) Predecessor: 10004760 -> [ 735.000000] (1:node@c-0.me) My finger table: -> [ 735.000000] (1:node@c-0.me) Start | Succ -> [ 735.000000] (1:node@c-0.me) 43 | 366680 -> [ 735.000000] (1:node@c-0.me) 44 | 366680 -> [ 735.000000] (1:node@c-0.me) 46 | 366680 -> [ 735.000000] (1:node@c-0.me) 50 | 366680 -> [ 735.000000] (1:node@c-0.me) 58 | 366680 -> [ 735.000000] (1:node@c-0.me) 74 | 366680 -> [ 735.000000] (1:node@c-0.me) 106 | 42 -> [ 735.000000] (1:node@c-0.me) 170 | 42 -> [ 735.000000] (1:node@c-0.me) 298 | 42 -> [ 735.000000] (1:node@c-0.me) 554 | 42 -> [ 735.000000] (1:node@c-0.me) 1066 | 42 -> [ 735.000000] (1:node@c-0.me) 2090 | 42 -> [ 735.000000] (1:node@c-0.me) 4138 | 42 -> [ 735.000000] (1:node@c-0.me) 8234 | 42 -> [ 735.000000] (1:node@c-0.me) 16426 | 42 -> [ 735.000000] (1:node@c-0.me) 32810 | 42 -> [ 735.000000] (1:node@c-0.me) 65578 | 42 -> [ 735.000000] (1:node@c-0.me) 131114 | 42 -> [ 735.000000] (1:node@c-0.me) 262186 | 42 -> [ 735.000000] (1:node@c-0.me) 524330 | 42 -> [ 735.000000] (1:node@c-0.me) 1048618 | 42 -> [ 735.000000] (1:node@c-0.me) 2097194 | 42 -> [ 735.000000] (1:node@c-0.me) 4194346 | 42 -> [ 735.000000] (1:node@c-0.me) 8388650 | 42 -> [ 735.000000] (1:node@c-0.me) Predecessor: 16728096 -> [ 743.000000] (3:node@c-2.me) My finger table: -> [ 743.000000] (3:node@c-2.me) Start | Succ -> [ 743.000000] (3:node@c-2.me) 533745 | 1319738 -> [ 743.000000] (3:node@c-2.me) 533746 | 10004760 -> [ 743.000000] (3:node@c-2.me) 533748 | 10004760 -> [ 743.000000] (3:node@c-2.me) 533752 | 1319738 -> [ 743.000000] (3:node@c-2.me) 533760 | 1319738 -> [ 743.000000] (3:node@c-2.me) 533776 | 1319738 -> [ 743.000000] (3:node@c-2.me) 533808 | 533744 -> [ 743.000000] (3:node@c-2.me) 533872 | 533744 -> [ 743.000000] (3:node@c-2.me) 534000 | 533744 -> [ 743.000000] (3:node@c-2.me) 534256 | 533744 -> [ 743.000000] (3:node@c-2.me) 534768 | 533744 -> [ 743.000000] (3:node@c-2.me) 535792 | 533744 -> [ 743.000000] (3:node@c-2.me) 537840 | 533744 -> [ 743.000000] (3:node@c-2.me) 541936 | 533744 -> [ 743.000000] (3:node@c-2.me) 550128 | 533744 -> [ 743.000000] (3:node@c-2.me) 566512 | 533744 -> [ 743.000000] (3:node@c-2.me) 599280 | 533744 -> [ 743.000000] (3:node@c-2.me) 664816 | 533744 -> [ 743.000000] (3:node@c-2.me) 795888 | 533744 -> [ 743.000000] (3:node@c-2.me) 1058032 | 533744 -> [ 743.000000] (3:node@c-2.me) 1582320 | 533744 -> [ 743.000000] (3:node@c-2.me) 2630896 | 533744 -> [ 743.000000] (3:node@c-2.me) 4728048 | 533744 -> [ 743.000000] (3:node@c-2.me) 8922352 | 533744 -> [ 743.000000] (3:node@c-2.me) Predecessor: 366680 -> [ 752.000000] (5:node@c-4.me) My finger table: -> [ 752.000000] (5:node@c-4.me) Start | Succ -> [ 752.000000] (5:node@c-4.me) 16509406 | 16728096 -> [ 752.000000] (5:node@c-4.me) 16509407 | 16728096 -> [ 752.000000] (5:node@c-4.me) 16509409 | 16728096 -> [ 752.000000] (5:node@c-4.me) 16509413 | 16728096 -> [ 752.000000] (5:node@c-4.me) 16509421 | 16728096 -> [ 752.000000] (5:node@c-4.me) 16509437 | 16728096 -> [ 752.000000] (5:node@c-4.me) 16509469 | 16509405 -> [ 752.000000] (5:node@c-4.me) 16509533 | 16509405 -> [ 752.000000] (5:node@c-4.me) 16509661 | 16509405 -> [ 752.000000] (5:node@c-4.me) 16509917 | 16509405 -> [ 752.000000] (5:node@c-4.me) 16510429 | 16509405 -> [ 752.000000] (5:node@c-4.me) 16511453 | 16509405 -> [ 752.000000] (5:node@c-4.me) 16513501 | 16509405 -> [ 752.000000] (5:node@c-4.me) 16517597 | 16509405 -> [ 752.000000] (5:node@c-4.me) 16525789 | 16509405 -> [ 752.000000] (5:node@c-4.me) 16542173 | 16509405 -> [ 752.000000] (5:node@c-4.me) 16574941 | 16509405 -> [ 752.000000] (5:node@c-4.me) 16640477 | 16509405 -> [ 752.000000] (5:node@c-4.me) 16771549 | 16509405 -> [ 752.000000] (5:node@c-4.me) 256477 | 16509405 -> [ 752.000000] (5:node@c-4.me) 780765 | 16509405 -> [ 752.000000] (5:node@c-4.me) 1829341 | 16509405 -> [ 752.000000] (5:node@c-4.me) 3926493 | 16509405 -> [ 752.000000] (5:node@c-4.me) 8120797 | 16509405 -> [ 752.000000] (5:node@c-4.me) Predecessor: 10874876 -> [ 753.000000] (6:node@c-5.me) My finger table: -> [ 753.000000] (6:node@c-5.me) Start | Succ -> [ 753.000000] (6:node@c-5.me) 10874877 | 16509405 -> [ 753.000000] (6:node@c-5.me) 10874878 | 533744 -> [ 753.000000] (6:node@c-5.me) 10874880 | 533744 -> [ 753.000000] (6:node@c-5.me) 10874884 | 533744 -> [ 753.000000] (6:node@c-5.me) 10874892 | 16728096 -> [ 753.000000] (6:node@c-5.me) 10874908 | 16509405 -> [ 753.000000] (6:node@c-5.me) 10874940 | 10874876 -> [ 753.000000] (6:node@c-5.me) 10875004 | 10874876 -> [ 753.000000] (6:node@c-5.me) 10875132 | 10874876 -> [ 753.000000] (6:node@c-5.me) 10875388 | 10874876 -> [ 753.000000] (6:node@c-5.me) 10875900 | 10874876 -> [ 753.000000] (6:node@c-5.me) 10876924 | 10874876 -> [ 753.000000] (6:node@c-5.me) 10878972 | 10874876 -> [ 753.000000] (6:node@c-5.me) 10883068 | 10874876 -> [ 753.000000] (6:node@c-5.me) 10891260 | 10874876 -> [ 753.000000] (6:node@c-5.me) 10907644 | 10874876 -> [ 753.000000] (6:node@c-5.me) 10940412 | 10874876 -> [ 753.000000] (6:node@c-5.me) 11005948 | 10874876 -> [ 753.000000] (6:node@c-5.me) 11137020 | 10874876 -> [ 753.000000] (6:node@c-5.me) 11399164 | 10874876 -> [ 753.000000] (6:node@c-5.me) 11923452 | 10874876 -> [ 753.000000] (6:node@c-5.me) 12972028 | 10874876 -> [ 753.000000] (6:node@c-5.me) 15069180 | 10874876 -> [ 753.000000] (6:node@c-5.me) 2486268 | 10874876 -> [ 753.000000] (6:node@c-5.me) Predecessor: 10004760 -> [ 765.000000] (8:node@c-7.me) My finger table: -> [ 765.000000] (8:node@c-7.me) Start | Succ -> [ 765.000000] (8:node@c-7.me) 10004761 | 10874876 -> [ 765.000000] (8:node@c-7.me) 10004762 | 16509405 -> [ 765.000000] (8:node@c-7.me) 10004764 | 16509405 -> [ 765.000000] (8:node@c-7.me) 10004768 | 16509405 -> [ 765.000000] (8:node@c-7.me) 10004776 | 16509405 -> [ 765.000000] (8:node@c-7.me) 10004792 | 10874876 -> [ 765.000000] (8:node@c-7.me) 10004824 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10004888 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10005016 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10005272 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10005784 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10006808 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10008856 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10012952 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10021144 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10037528 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10070296 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10135832 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10266904 | 10004760 -> [ 765.000000] (8:node@c-7.me) 10529048 | 10004760 -> [ 765.000000] (8:node@c-7.me) 11053336 | 10004760 -> [ 765.000000] (8:node@c-7.me) 12101912 | 10004760 -> [ 765.000000] (8:node@c-7.me) 14199064 | 10004760 -> [ 765.000000] (8:node@c-7.me) 1616152 | 10004760 -> [ 765.000000] (8:node@c-7.me) Predecessor: 6518808 -> [ 774.000000] (7:node@c-6.me) My finger table: -> [ 774.000000] (7:node@c-6.me) Start | Succ -> [ 774.000000] (7:node@c-6.me) 16728097 | 42 -> [ 774.000000] (7:node@c-6.me) 16728098 | 42 -> [ 774.000000] (7:node@c-6.me) 16728100 | 42 -> [ 774.000000] (7:node@c-6.me) 16728104 | 42 -> [ 774.000000] (7:node@c-6.me) 16728112 | 42 -> [ 774.000000] (7:node@c-6.me) 16728128 | 42 -> [ 774.000000] (7:node@c-6.me) 16728160 | 16728096 -> [ 774.000000] (7:node@c-6.me) 16728224 | 16728096 -> [ 774.000000] (7:node@c-6.me) 16728352 | 16728096 -> [ 774.000000] (7:node@c-6.me) 16728608 | 16728096 -> [ 774.000000] (7:node@c-6.me) 16729120 | 16728096 -> [ 774.000000] (7:node@c-6.me) 16730144 | 16728096 -> [ 774.000000] (7:node@c-6.me) 16732192 | 16728096 -> [ 774.000000] (7:node@c-6.me) 16736288 | 16728096 -> [ 774.000000] (7:node@c-6.me) 16744480 | 16728096 -> [ 774.000000] (7:node@c-6.me) 16760864 | 16728096 -> [ 774.000000] (7:node@c-6.me) 16416 | 16728096 -> [ 774.000000] (7:node@c-6.me) 81952 | 16728096 -> [ 774.000000] (7:node@c-6.me) 213024 | 16728096 -> [ 774.000000] (7:node@c-6.me) 475168 | 16728096 -> [ 774.000000] (7:node@c-6.me) 999456 | 16728096 -> [ 774.000000] (7:node@c-6.me) 2048032 | 16728096 -> [ 774.000000] (7:node@c-6.me) 4145184 | 16728096 -> [ 774.000000] (7:node@c-6.me) 8339488 | 16728096 -> [ 774.000000] (7:node@c-6.me) Predecessor: 16509405 -> [ 796.000000] (2:node@c-1.me) My finger table: -> [ 796.000000] (2:node@c-1.me) Start | Succ -> [ 796.000000] (2:node@c-1.me) 366681 | 533744 -> [ 796.000000] (2:node@c-1.me) 366682 | 1319738 -> [ 796.000000] (2:node@c-1.me) 366684 | 1319738 -> [ 796.000000] (2:node@c-1.me) 366688 | 533744 -> [ 796.000000] (2:node@c-1.me) 366696 | 533744 -> [ 796.000000] (2:node@c-1.me) 366712 | 533744 -> [ 796.000000] (2:node@c-1.me) 366744 | 366680 -> [ 796.000000] (2:node@c-1.me) 366808 | 366680 -> [ 796.000000] (2:node@c-1.me) 366936 | 366680 -> [ 796.000000] (2:node@c-1.me) 367192 | 366680 -> [ 796.000000] (2:node@c-1.me) 367704 | 366680 -> [ 796.000000] (2:node@c-1.me) 368728 | 366680 -> [ 796.000000] (2:node@c-1.me) 370776 | 366680 -> [ 796.000000] (2:node@c-1.me) 374872 | 366680 -> [ 796.000000] (2:node@c-1.me) 383064 | 366680 -> [ 796.000000] (2:node@c-1.me) 399448 | 366680 -> [ 796.000000] (2:node@c-1.me) 432216 | 366680 -> [ 796.000000] (2:node@c-1.me) 497752 | 366680 -> [ 796.000000] (2:node@c-1.me) 628824 | 366680 -> [ 796.000000] (2:node@c-1.me) 890968 | 366680 -> [ 796.000000] (2:node@c-1.me) 1415256 | 366680 -> [ 796.000000] (2:node@c-1.me) 2463832 | 366680 -> [ 796.000000] (2:node@c-1.me) 4560984 | 366680 -> [ 796.000000] (2:node@c-1.me) 8755288 | 366680 -> [ 796.000000] (2:node@c-1.me) Predecessor: 42 -> [ 808.000000] (9:node@c-8.me) My finger table: -> [ 808.000000] (9:node@c-8.me) Start | Succ -> [ 808.000000] (9:node@c-8.me) 6518809 | 10004760 -> [ 808.000000] (9:node@c-8.me) 6518810 | 16728096 -> [ 808.000000] (9:node@c-8.me) 6518812 | 10004760 -> [ 808.000000] (9:node@c-8.me) 6518816 | 10004760 -> [ 808.000000] (9:node@c-8.me) 6518824 | 10004760 -> [ 808.000000] (9:node@c-8.me) 6518840 | 10004760 -> [ 808.000000] (9:node@c-8.me) 6518872 | 6518808 -> [ 808.000000] (9:node@c-8.me) 6518936 | 6518808 -> [ 808.000000] (9:node@c-8.me) 6519064 | 6518808 -> [ 808.000000] (9:node@c-8.me) 6519320 | 6518808 -> [ 808.000000] (9:node@c-8.me) 6519832 | 6518808 -> [ 808.000000] (9:node@c-8.me) 6520856 | 6518808 -> [ 808.000000] (9:node@c-8.me) 6522904 | 6518808 -> [ 808.000000] (9:node@c-8.me) 6527000 | 6518808 -> [ 808.000000] (9:node@c-8.me) 6535192 | 6518808 -> [ 808.000000] (9:node@c-8.me) 6551576 | 6518808 -> [ 808.000000] (9:node@c-8.me) 6584344 | 6518808 -> [ 808.000000] (9:node@c-8.me) 6649880 | 6518808 -> [ 808.000000] (9:node@c-8.me) 6780952 | 6518808 -> [ 808.000000] (9:node@c-8.me) 7043096 | 6518808 -> [ 808.000000] (9:node@c-8.me) 7567384 | 6518808 -> [ 808.000000] (9:node@c-8.me) 8615960 | 6518808 -> [ 808.000000] (9:node@c-8.me) 10713112 | 6518808 -> [ 808.000000] (9:node@c-8.me) 14907416 | 6518808 -> [ 808.000000] (9:node@c-8.me) Predecessor: 2015253 -> [ 810.000000] (4:node@c-3.me) My finger table: -> [ 810.000000] (4:node@c-3.me) Start | Succ -> [ 810.000000] (4:node@c-3.me) 1319739 | 2015253 -> [ 810.000000] (4:node@c-3.me) 1319740 | 2015253 -> [ 810.000000] (4:node@c-3.me) 1319742 | 2015253 -> [ 810.000000] (4:node@c-3.me) 1319746 | 2015253 -> [ 810.000000] (4:node@c-3.me) 1319754 | 2015253 -> [ 810.000000] (4:node@c-3.me) 1319770 | 2015253 -> [ 810.000000] (4:node@c-3.me) 1319802 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1319866 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1319994 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1320250 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1320762 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1321786 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1323834 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1327930 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1336122 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1352506 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1385274 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1450810 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1581882 | 1319738 -> [ 810.000000] (4:node@c-3.me) 1844026 | 1319738 -> [ 810.000000] (4:node@c-3.me) 2368314 | 1319738 -> [ 810.000000] (4:node@c-3.me) 3416890 | 1319738 -> [ 810.000000] (4:node@c-3.me) 5514042 | 1319738 -> [ 810.000000] (4:node@c-3.me) 9708346 | 1319738 -> [ 810.000000] (4:node@c-3.me) Predecessor: 533744 -> [ 831.000000] (10:node@c-9.me) My finger table: -> [ 831.000000] (10:node@c-9.me) Start | Succ -> [ 831.000000] (10:node@c-9.me) 2015254 | 6518808 -> [ 831.000000] (10:node@c-9.me) 2015255 | 6518808 -> [ 831.000000] (10:node@c-9.me) 2015257 | 6518808 -> [ 831.000000] (10:node@c-9.me) 2015261 | 6518808 -> [ 831.000000] (10:node@c-9.me) 2015269 | 6518808 -> [ 831.000000] (10:node@c-9.me) 2015285 | 6518808 -> [ 831.000000] (10:node@c-9.me) 2015317 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2015381 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2015509 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2015765 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2016277 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2017301 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2019349 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2023445 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2031637 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2048021 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2080789 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2146325 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2277397 | 2015253 -> [ 831.000000] (10:node@c-9.me) 2539541 | 2015253 -> [ 831.000000] (10:node@c-9.me) 3063829 | 2015253 -> [ 831.000000] (10:node@c-9.me) 4112405 | 2015253 -> [ 831.000000] (10:node@c-9.me) 6209557 | 2015253 -> [ 831.000000] (10:node@c-9.me) 10403861 | 2015253 -> [ 831.000000] (10:node@c-9.me) Predecessor: 1319738 -> [ 859.000000] (1:node@c-0.me) My finger table: -> [ 859.000000] (1:node@c-0.me) Start | Succ -> [ 859.000000] (1:node@c-0.me) 43 | 366680 -> [ 859.000000] (1:node@c-0.me) 44 | 366680 -> [ 859.000000] (1:node@c-0.me) 46 | 366680 -> [ 859.000000] (1:node@c-0.me) 50 | 366680 -> [ 859.000000] (1:node@c-0.me) 58 | 366680 -> [ 859.000000] (1:node@c-0.me) 74 | 366680 -> [ 859.000000] (1:node@c-0.me) 106 | 366680 -> [ 859.000000] (1:node@c-0.me) 170 | 42 -> [ 859.000000] (1:node@c-0.me) 298 | 42 -> [ 859.000000] (1:node@c-0.me) 554 | 42 -> [ 859.000000] (1:node@c-0.me) 1066 | 42 -> [ 859.000000] (1:node@c-0.me) 2090 | 42 -> [ 859.000000] (1:node@c-0.me) 4138 | 42 -> [ 859.000000] (1:node@c-0.me) 8234 | 42 -> [ 859.000000] (1:node@c-0.me) 16426 | 42 -> [ 859.000000] (1:node@c-0.me) 32810 | 42 -> [ 859.000000] (1:node@c-0.me) 65578 | 42 -> [ 859.000000] (1:node@c-0.me) 131114 | 42 -> [ 859.000000] (1:node@c-0.me) 262186 | 42 -> [ 859.000000] (1:node@c-0.me) 524330 | 42 -> [ 859.000000] (1:node@c-0.me) 1048618 | 42 -> [ 859.000000] (1:node@c-0.me) 2097194 | 42 -> [ 859.000000] (1:node@c-0.me) 4194346 | 42 -> [ 859.000000] (1:node@c-0.me) 8388650 | 42 -> [ 859.000000] (1:node@c-0.me) Predecessor: 16728096 -> [ 873.000000] (5:node@c-4.me) My finger table: -> [ 873.000000] (5:node@c-4.me) Start | Succ -> [ 873.000000] (5:node@c-4.me) 16509406 | 16728096 -> [ 873.000000] (5:node@c-4.me) 16509407 | 16728096 -> [ 873.000000] (5:node@c-4.me) 16509409 | 16728096 -> [ 873.000000] (5:node@c-4.me) 16509413 | 16728096 -> [ 873.000000] (5:node@c-4.me) 16509421 | 16728096 -> [ 873.000000] (5:node@c-4.me) 16509437 | 16728096 -> [ 873.000000] (5:node@c-4.me) 16509469 | 16728096 -> [ 873.000000] (5:node@c-4.me) 16509533 | 16509405 -> [ 873.000000] (5:node@c-4.me) 16509661 | 16509405 -> [ 873.000000] (5:node@c-4.me) 16509917 | 16509405 -> [ 873.000000] (5:node@c-4.me) 16510429 | 16509405 -> [ 873.000000] (5:node@c-4.me) 16511453 | 16509405 -> [ 873.000000] (5:node@c-4.me) 16513501 | 16509405 -> [ 873.000000] (5:node@c-4.me) 16517597 | 16509405 -> [ 873.000000] (5:node@c-4.me) 16525789 | 16509405 -> [ 873.000000] (5:node@c-4.me) 16542173 | 16509405 -> [ 873.000000] (5:node@c-4.me) 16574941 | 16509405 -> [ 873.000000] (5:node@c-4.me) 16640477 | 16509405 -> [ 873.000000] (5:node@c-4.me) 16771549 | 16509405 -> [ 873.000000] (5:node@c-4.me) 256477 | 16509405 -> [ 873.000000] (5:node@c-4.me) 780765 | 16509405 -> [ 873.000000] (5:node@c-4.me) 1829341 | 16509405 -> [ 873.000000] (5:node@c-4.me) 3926493 | 16509405 -> [ 873.000000] (5:node@c-4.me) 8120797 | 16509405 -> [ 873.000000] (5:node@c-4.me) Predecessor: 10874876 -> [ 893.000000] (3:node@c-2.me) My finger table: -> [ 893.000000] (3:node@c-2.me) Start | Succ -> [ 893.000000] (3:node@c-2.me) 533745 | 1319738 -> [ 893.000000] (3:node@c-2.me) 533746 | 10004760 -> [ 893.000000] (3:node@c-2.me) 533748 | 10004760 -> [ 893.000000] (3:node@c-2.me) 533752 | 1319738 -> [ 893.000000] (3:node@c-2.me) 533760 | 1319738 -> [ 893.000000] (3:node@c-2.me) 533776 | 1319738 -> [ 893.000000] (3:node@c-2.me) 533808 | 1319738 -> [ 893.000000] (3:node@c-2.me) 533872 | 533744 -> [ 893.000000] (3:node@c-2.me) 534000 | 533744 -> [ 893.000000] (3:node@c-2.me) 534256 | 533744 -> [ 893.000000] (3:node@c-2.me) 534768 | 533744 -> [ 893.000000] (3:node@c-2.me) 535792 | 533744 -> [ 893.000000] (3:node@c-2.me) 537840 | 533744 -> [ 893.000000] (3:node@c-2.me) 541936 | 533744 -> [ 893.000000] (3:node@c-2.me) 550128 | 533744 -> [ 893.000000] (3:node@c-2.me) 566512 | 533744 -> [ 893.000000] (3:node@c-2.me) 599280 | 533744 -> [ 893.000000] (3:node@c-2.me) 664816 | 533744 -> [ 893.000000] (3:node@c-2.me) 795888 | 533744 -> [ 893.000000] (3:node@c-2.me) 1058032 | 533744 -> [ 893.000000] (3:node@c-2.me) 1582320 | 533744 -> [ 893.000000] (3:node@c-2.me) 2630896 | 533744 -> [ 893.000000] (3:node@c-2.me) 4728048 | 533744 -> [ 893.000000] (3:node@c-2.me) 8922352 | 533744 -> [ 893.000000] (3:node@c-2.me) Predecessor: 366680 -> [ 896.000000] (7:node@c-6.me) My finger table: -> [ 896.000000] (7:node@c-6.me) Start | Succ -> [ 896.000000] (7:node@c-6.me) 16728097 | 42 -> [ 896.000000] (7:node@c-6.me) 16728098 | 42 -> [ 896.000000] (7:node@c-6.me) 16728100 | 42 -> [ 896.000000] (7:node@c-6.me) 16728104 | 42 -> [ 896.000000] (7:node@c-6.me) 16728112 | 42 -> [ 896.000000] (7:node@c-6.me) 16728128 | 42 -> [ 896.000000] (7:node@c-6.me) 16728160 | 42 -> [ 896.000000] (7:node@c-6.me) 16728224 | 16728096 -> [ 896.000000] (7:node@c-6.me) 16728352 | 16728096 -> [ 896.000000] (7:node@c-6.me) 16728608 | 16728096 -> [ 896.000000] (7:node@c-6.me) 16729120 | 16728096 -> [ 896.000000] (7:node@c-6.me) 16730144 | 16728096 -> [ 896.000000] (7:node@c-6.me) 16732192 | 16728096 -> [ 896.000000] (7:node@c-6.me) 16736288 | 16728096 -> [ 896.000000] (7:node@c-6.me) 16744480 | 16728096 -> [ 896.000000] (7:node@c-6.me) 16760864 | 16728096 -> [ 896.000000] (7:node@c-6.me) 16416 | 16728096 -> [ 896.000000] (7:node@c-6.me) 81952 | 16728096 -> [ 896.000000] (7:node@c-6.me) 213024 | 16728096 -> [ 896.000000] (7:node@c-6.me) 475168 | 16728096 -> [ 896.000000] (7:node@c-6.me) 999456 | 16728096 -> [ 896.000000] (7:node@c-6.me) 2048032 | 16728096 -> [ 896.000000] (7:node@c-6.me) 4145184 | 16728096 -> [ 896.000000] (7:node@c-6.me) 8339488 | 16728096 -> [ 896.000000] (7:node@c-6.me) Predecessor: 16509405 -> [ 899.000000] (6:node@c-5.me) My finger table: -> [ 899.000000] (6:node@c-5.me) Start | Succ -> [ 899.000000] (6:node@c-5.me) 10874877 | 16509405 -> [ 899.000000] (6:node@c-5.me) 10874878 | 533744 -> [ 899.000000] (6:node@c-5.me) 10874880 | 533744 -> [ 899.000000] (6:node@c-5.me) 10874884 | 533744 -> [ 899.000000] (6:node@c-5.me) 10874892 | 16728096 -> [ 899.000000] (6:node@c-5.me) 10874908 | 16509405 -> [ 899.000000] (6:node@c-5.me) 10874940 | 16509405 -> [ 899.000000] (6:node@c-5.me) 10875004 | 10874876 -> [ 899.000000] (6:node@c-5.me) 10875132 | 10874876 -> [ 899.000000] (6:node@c-5.me) 10875388 | 10874876 -> [ 899.000000] (6:node@c-5.me) 10875900 | 10874876 -> [ 899.000000] (6:node@c-5.me) 10876924 | 10874876 -> [ 899.000000] (6:node@c-5.me) 10878972 | 10874876 -> [ 899.000000] (6:node@c-5.me) 10883068 | 10874876 -> [ 899.000000] (6:node@c-5.me) 10891260 | 10874876 -> [ 899.000000] (6:node@c-5.me) 10907644 | 10874876 -> [ 899.000000] (6:node@c-5.me) 10940412 | 10874876 -> [ 899.000000] (6:node@c-5.me) 11005948 | 10874876 -> [ 899.000000] (6:node@c-5.me) 11137020 | 10874876 -> [ 899.000000] (6:node@c-5.me) 11399164 | 10874876 -> [ 899.000000] (6:node@c-5.me) 11923452 | 10874876 -> [ 899.000000] (6:node@c-5.me) 12972028 | 10874876 -> [ 899.000000] (6:node@c-5.me) 15069180 | 10874876 -> [ 899.000000] (6:node@c-5.me) 2486268 | 10874876 -> [ 899.000000] (6:node@c-5.me) Predecessor: 10004760 -> [ 899.000000] (8:node@c-7.me) My finger table: -> [ 899.000000] (8:node@c-7.me) Start | Succ -> [ 899.000000] (8:node@c-7.me) 10004761 | 10874876 -> [ 899.000000] (8:node@c-7.me) 10004762 | 16509405 -> [ 899.000000] (8:node@c-7.me) 10004764 | 16509405 -> [ 899.000000] (8:node@c-7.me) 10004768 | 16509405 -> [ 899.000000] (8:node@c-7.me) 10004776 | 16509405 -> [ 899.000000] (8:node@c-7.me) 10004792 | 10874876 -> [ 899.000000] (8:node@c-7.me) 10004824 | 10874876 -> [ 899.000000] (8:node@c-7.me) 10004888 | 10004760 -> [ 899.000000] (8:node@c-7.me) 10005016 | 10004760 -> [ 899.000000] (8:node@c-7.me) 10005272 | 10004760 -> [ 899.000000] (8:node@c-7.me) 10005784 | 10004760 -> [ 899.000000] (8:node@c-7.me) 10006808 | 10004760 -> [ 899.000000] (8:node@c-7.me) 10008856 | 10004760 -> [ 899.000000] (8:node@c-7.me) 10012952 | 10004760 -> [ 899.000000] (8:node@c-7.me) 10021144 | 10004760 -> [ 899.000000] (8:node@c-7.me) 10037528 | 10004760 -> [ 899.000000] (8:node@c-7.me) 10070296 | 10004760 -> [ 899.000000] (8:node@c-7.me) 10135832 | 10004760 -> [ 899.000000] (8:node@c-7.me) 10266904 | 10004760 -> [ 899.000000] (8:node@c-7.me) 10529048 | 10004760 -> [ 899.000000] (8:node@c-7.me) 11053336 | 10004760 -> [ 899.000000] (8:node@c-7.me) 12101912 | 10004760 -> [ 899.000000] (8:node@c-7.me) 14199064 | 10004760 -> [ 899.000000] (8:node@c-7.me) 1616152 | 10004760 -> [ 899.000000] (8:node@c-7.me) Predecessor: 6518808 -> [ 921.000000] (2:node@c-1.me) My finger table: -> [ 921.000000] (2:node@c-1.me) Start | Succ -> [ 921.000000] (2:node@c-1.me) 366681 | 533744 -> [ 921.000000] (2:node@c-1.me) 366682 | 1319738 -> [ 921.000000] (2:node@c-1.me) 366684 | 1319738 -> [ 921.000000] (2:node@c-1.me) 366688 | 533744 -> [ 921.000000] (2:node@c-1.me) 366696 | 533744 -> [ 921.000000] (2:node@c-1.me) 366712 | 533744 -> [ 921.000000] (2:node@c-1.me) 366744 | 533744 -> [ 921.000000] (2:node@c-1.me) 366808 | 366680 -> [ 921.000000] (2:node@c-1.me) 366936 | 366680 -> [ 921.000000] (2:node@c-1.me) 367192 | 366680 -> [ 921.000000] (2:node@c-1.me) 367704 | 366680 -> [ 921.000000] (2:node@c-1.me) 368728 | 366680 -> [ 921.000000] (2:node@c-1.me) 370776 | 366680 -> [ 921.000000] (2:node@c-1.me) 374872 | 366680 -> [ 921.000000] (2:node@c-1.me) 383064 | 366680 -> [ 921.000000] (2:node@c-1.me) 399448 | 366680 -> [ 921.000000] (2:node@c-1.me) 432216 | 366680 -> [ 921.000000] (2:node@c-1.me) 497752 | 366680 -> [ 921.000000] (2:node@c-1.me) 628824 | 366680 -> [ 921.000000] (2:node@c-1.me) 890968 | 366680 -> [ 921.000000] (2:node@c-1.me) 1415256 | 366680 -> [ 921.000000] (2:node@c-1.me) 2463832 | 366680 -> [ 921.000000] (2:node@c-1.me) 4560984 | 366680 -> [ 921.000000] (2:node@c-1.me) 8755288 | 366680 -> [ 921.000000] (2:node@c-1.me) Predecessor: 42 -> [ 928.000000] (9:node@c-8.me) My finger table: -> [ 928.000000] (9:node@c-8.me) Start | Succ -> [ 928.000000] (9:node@c-8.me) 6518809 | 10004760 -> [ 928.000000] (9:node@c-8.me) 6518810 | 16728096 -> [ 928.000000] (9:node@c-8.me) 6518812 | 10004760 -> [ 928.000000] (9:node@c-8.me) 6518816 | 10004760 -> [ 928.000000] (9:node@c-8.me) 6518824 | 10004760 -> [ 928.000000] (9:node@c-8.me) 6518840 | 10004760 -> [ 928.000000] (9:node@c-8.me) 6518872 | 10004760 -> [ 928.000000] (9:node@c-8.me) 6518936 | 6518808 -> [ 928.000000] (9:node@c-8.me) 6519064 | 6518808 -> [ 928.000000] (9:node@c-8.me) 6519320 | 6518808 -> [ 928.000000] (9:node@c-8.me) 6519832 | 6518808 -> [ 928.000000] (9:node@c-8.me) 6520856 | 6518808 -> [ 928.000000] (9:node@c-8.me) 6522904 | 6518808 -> [ 928.000000] (9:node@c-8.me) 6527000 | 6518808 -> [ 928.000000] (9:node@c-8.me) 6535192 | 6518808 -> [ 928.000000] (9:node@c-8.me) 6551576 | 6518808 -> [ 928.000000] (9:node@c-8.me) 6584344 | 6518808 -> [ 928.000000] (9:node@c-8.me) 6649880 | 6518808 -> [ 928.000000] (9:node@c-8.me) 6780952 | 6518808 -> [ 928.000000] (9:node@c-8.me) 7043096 | 6518808 -> [ 928.000000] (9:node@c-8.me) 7567384 | 6518808 -> [ 928.000000] (9:node@c-8.me) 8615960 | 6518808 -> [ 928.000000] (9:node@c-8.me) 10713112 | 6518808 -> [ 928.000000] (9:node@c-8.me) 14907416 | 6518808 -> [ 928.000000] (9:node@c-8.me) Predecessor: 2015253 -> [ 930.000000] (4:node@c-3.me) My finger table: -> [ 930.000000] (4:node@c-3.me) Start | Succ -> [ 930.000000] (4:node@c-3.me) 1319739 | 2015253 -> [ 930.000000] (4:node@c-3.me) 1319740 | 2015253 -> [ 930.000000] (4:node@c-3.me) 1319742 | 2015253 -> [ 930.000000] (4:node@c-3.me) 1319746 | 2015253 -> [ 930.000000] (4:node@c-3.me) 1319754 | 2015253 -> [ 930.000000] (4:node@c-3.me) 1319770 | 2015253 -> [ 930.000000] (4:node@c-3.me) 1319802 | 2015253 -> [ 930.000000] (4:node@c-3.me) 1319866 | 1319738 -> [ 930.000000] (4:node@c-3.me) 1319994 | 1319738 -> [ 930.000000] (4:node@c-3.me) 1320250 | 1319738 -> [ 930.000000] (4:node@c-3.me) 1320762 | 1319738 -> [ 930.000000] (4:node@c-3.me) 1321786 | 1319738 -> [ 930.000000] (4:node@c-3.me) 1323834 | 1319738 -> [ 930.000000] (4:node@c-3.me) 1327930 | 1319738 -> [ 930.000000] (4:node@c-3.me) 1336122 | 1319738 -> [ 930.000000] (4:node@c-3.me) 1352506 | 1319738 -> [ 930.000000] (4:node@c-3.me) 1385274 | 1319738 -> [ 930.000000] (4:node@c-3.me) 1450810 | 1319738 -> [ 930.000000] (4:node@c-3.me) 1581882 | 1319738 -> [ 930.000000] (4:node@c-3.me) 1844026 | 1319738 -> [ 930.000000] (4:node@c-3.me) 2368314 | 1319738 -> [ 930.000000] (4:node@c-3.me) 3416890 | 1319738 -> [ 930.000000] (4:node@c-3.me) 5514042 | 1319738 -> [ 930.000000] (4:node@c-3.me) 9708346 | 1319738 -> [ 930.000000] (4:node@c-3.me) Predecessor: 533744 -> [ 962.000000] (10:node@c-9.me) My finger table: -> [ 962.000000] (10:node@c-9.me) Start | Succ -> [ 962.000000] (10:node@c-9.me) 2015254 | 6518808 -> [ 962.000000] (10:node@c-9.me) 2015255 | 6518808 -> [ 962.000000] (10:node@c-9.me) 2015257 | 6518808 -> [ 962.000000] (10:node@c-9.me) 2015261 | 6518808 -> [ 962.000000] (10:node@c-9.me) 2015269 | 6518808 -> [ 962.000000] (10:node@c-9.me) 2015285 | 6518808 -> [ 962.000000] (10:node@c-9.me) 2015317 | 6518808 -> [ 962.000000] (10:node@c-9.me) 2015381 | 2015253 -> [ 962.000000] (10:node@c-9.me) 2015509 | 2015253 -> [ 962.000000] (10:node@c-9.me) 2015765 | 2015253 -> [ 962.000000] (10:node@c-9.me) 2016277 | 2015253 -> [ 962.000000] (10:node@c-9.me) 2017301 | 2015253 -> [ 962.000000] (10:node@c-9.me) 2019349 | 2015253 -> [ 962.000000] (10:node@c-9.me) 2023445 | 2015253 -> [ 962.000000] (10:node@c-9.me) 2031637 | 2015253 -> [ 962.000000] (10:node@c-9.me) 2048021 | 2015253 -> [ 962.000000] (10:node@c-9.me) 2080789 | 2015253 -> [ 962.000000] (10:node@c-9.me) 2146325 | 2015253 -> [ 962.000000] (10:node@c-9.me) 2277397 | 2015253 -> [ 962.000000] (10:node@c-9.me) 2539541 | 2015253 -> [ 962.000000] (10:node@c-9.me) 3063829 | 2015253 -> [ 962.000000] (10:node@c-9.me) 4112405 | 2015253 -> [ 962.000000] (10:node@c-9.me) 6209557 | 2015253 -> [ 962.000000] (10:node@c-9.me) 10403861 | 2015253 -> [ 962.000000] (10:node@c-9.me) Predecessor: 1319738 -> [ 982.000000] (1:node@c-0.me) My finger table: -> [ 982.000000] (1:node@c-0.me) Start | Succ -> [ 982.000000] (1:node@c-0.me) 43 | 366680 -> [ 982.000000] (1:node@c-0.me) 44 | 366680 -> [ 982.000000] (1:node@c-0.me) 46 | 366680 -> [ 982.000000] (1:node@c-0.me) 50 | 366680 -> [ 982.000000] (1:node@c-0.me) 58 | 366680 -> [ 982.000000] (1:node@c-0.me) 74 | 366680 -> [ 982.000000] (1:node@c-0.me) 106 | 366680 -> [ 982.000000] (1:node@c-0.me) 170 | 366680 -> [ 982.000000] (1:node@c-0.me) 298 | 42 -> [ 982.000000] (1:node@c-0.me) 554 | 42 -> [ 982.000000] (1:node@c-0.me) 1066 | 42 -> [ 982.000000] (1:node@c-0.me) 2090 | 42 -> [ 982.000000] (1:node@c-0.me) 4138 | 42 -> [ 982.000000] (1:node@c-0.me) 8234 | 42 -> [ 982.000000] (1:node@c-0.me) 16426 | 42 -> [ 982.000000] (1:node@c-0.me) 32810 | 42 -> [ 982.000000] (1:node@c-0.me) 65578 | 42 -> [ 982.000000] (1:node@c-0.me) 131114 | 42 -> [ 982.000000] (1:node@c-0.me) 262186 | 42 -> [ 982.000000] (1:node@c-0.me) 524330 | 42 -> [ 982.000000] (1:node@c-0.me) 1048618 | 42 -> [ 982.000000] (1:node@c-0.me) 2097194 | 42 -> [ 982.000000] (1:node@c-0.me) 4194346 | 42 -> [ 982.000000] (1:node@c-0.me) 8388650 | 42 -> [ 982.000000] (1:node@c-0.me) Predecessor: 16728096 -> [1154.000000] (0:@) Messages created: 2049 -> [1154.000000] (0:@) Simulated time: 1154 +> [ 174.000000] (1:node@c-0.me) My finger table: +> [ 174.000000] (1:node@c-0.me) Start | Succ +> [ 174.000000] (1:node@c-0.me) 43 | 1319738 +> [ 174.000000] (1:node@c-0.me) 44 | 42 +> [ 174.000000] (1:node@c-0.me) 46 | 42 +> [ 174.000000] (1:node@c-0.me) 50 | 42 +> [ 174.000000] (1:node@c-0.me) 58 | 42 +> [ 174.000000] (1:node@c-0.me) 74 | 42 +> [ 174.000000] (1:node@c-0.me) 106 | 42 +> [ 174.000000] (1:node@c-0.me) 170 | 42 +> [ 174.000000] (1:node@c-0.me) 298 | 42 +> [ 174.000000] (1:node@c-0.me) 554 | 42 +> [ 174.000000] (1:node@c-0.me) 1066 | 42 +> [ 174.000000] (1:node@c-0.me) 2090 | 42 +> [ 174.000000] (1:node@c-0.me) 4138 | 42 +> [ 174.000000] (1:node@c-0.me) 8234 | 42 +> [ 174.000000] (1:node@c-0.me) 16426 | 42 +> [ 174.000000] (1:node@c-0.me) 32810 | 42 +> [ 174.000000] (1:node@c-0.me) 65578 | 42 +> [ 174.000000] (1:node@c-0.me) 131114 | 42 +> [ 174.000000] (1:node@c-0.me) 262186 | 42 +> [ 174.000000] (1:node@c-0.me) 524330 | 42 +> [ 174.000000] (1:node@c-0.me) 1048618 | 42 +> [ 174.000000] (1:node@c-0.me) 2097194 | 42 +> [ 174.000000] (1:node@c-0.me) 4194346 | 42 +> [ 174.000000] (1:node@c-0.me) 8388650 | 42 +> [ 174.000000] (1:node@c-0.me) Predecessor: 16728096 +> [ 245.000000] (8:node@c-7.me) My finger table: +> [ 245.000000] (8:node@c-7.me) Start | Succ +> [ 245.000000] (8:node@c-7.me) 10004761 | 16509405 +> [ 245.000000] (8:node@c-7.me) 10004762 | 16509405 +> [ 245.000000] (8:node@c-7.me) 10004764 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10004768 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10004776 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10004792 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10004824 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10004888 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10005016 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10005272 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10005784 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10006808 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10008856 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10012952 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10021144 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10037528 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10070296 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10135832 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10266904 | 10004760 +> [ 245.000000] (8:node@c-7.me) 10529048 | 10004760 +> [ 245.000000] (8:node@c-7.me) 11053336 | 10004760 +> [ 245.000000] (8:node@c-7.me) 12101912 | 10004760 +> [ 245.000000] (8:node@c-7.me) 14199064 | 10004760 +> [ 245.000000] (8:node@c-7.me) 1616152 | 10004760 +> [ 245.000000] (8:node@c-7.me) Predecessor: 533744 +> [ 246.000000] (3:node@c-2.me) My finger table: +> [ 246.000000] (3:node@c-2.me) Start | Succ +> [ 246.000000] (3:node@c-2.me) 533745 | 10004760 +> [ 246.000000] (3:node@c-2.me) 533746 | 10004760 +> [ 246.000000] (3:node@c-2.me) 533748 | 533744 +> [ 246.000000] (3:node@c-2.me) 533752 | 533744 +> [ 246.000000] (3:node@c-2.me) 533760 | 533744 +> [ 246.000000] (3:node@c-2.me) 533776 | 533744 +> [ 246.000000] (3:node@c-2.me) 533808 | 533744 +> [ 246.000000] (3:node@c-2.me) 533872 | 533744 +> [ 246.000000] (3:node@c-2.me) 534000 | 533744 +> [ 246.000000] (3:node@c-2.me) 534256 | 533744 +> [ 246.000000] (3:node@c-2.me) 534768 | 533744 +> [ 246.000000] (3:node@c-2.me) 535792 | 533744 +> [ 246.000000] (3:node@c-2.me) 537840 | 533744 +> [ 246.000000] (3:node@c-2.me) 541936 | 533744 +> [ 246.000000] (3:node@c-2.me) 550128 | 533744 +> [ 246.000000] (3:node@c-2.me) 566512 | 533744 +> [ 246.000000] (3:node@c-2.me) 599280 | 533744 +> [ 246.000000] (3:node@c-2.me) 664816 | 533744 +> [ 246.000000] (3:node@c-2.me) 795888 | 533744 +> [ 246.000000] (3:node@c-2.me) 1058032 | 533744 +> [ 246.000000] (3:node@c-2.me) 1582320 | 533744 +> [ 246.000000] (3:node@c-2.me) 2630896 | 533744 +> [ 246.000000] (3:node@c-2.me) 4728048 | 533744 +> [ 246.000000] (3:node@c-2.me) 8922352 | 533744 +> [ 246.000000] (3:node@c-2.me) Predecessor: 10874876 +> [ 246.000000] (5:node@c-4.me) My finger table: +> [ 246.000000] (5:node@c-4.me) Start | Succ +> [ 246.000000] (5:node@c-4.me) 16509406 | 366680 +> [ 246.000000] (5:node@c-4.me) 16509407 | 366680 +> [ 246.000000] (5:node@c-4.me) 16509409 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16509413 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16509421 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16509437 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16509469 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16509533 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16509661 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16509917 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16510429 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16511453 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16513501 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16517597 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16525789 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16542173 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16574941 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16640477 | 16509405 +> [ 246.000000] (5:node@c-4.me) 16771549 | 16509405 +> [ 246.000000] (5:node@c-4.me) 256477 | 16509405 +> [ 246.000000] (5:node@c-4.me) 780765 | 16509405 +> [ 246.000000] (5:node@c-4.me) 1829341 | 16509405 +> [ 246.000000] (5:node@c-4.me) 3926493 | 16509405 +> [ 246.000000] (5:node@c-4.me) 8120797 | 16509405 +> [ 246.000000] (5:node@c-4.me) Predecessor: 10004760 +> [ 247.000000] (6:node@c-5.me) My finger table: +> [ 247.000000] (6:node@c-5.me) Start | Succ +> [ 247.000000] (6:node@c-5.me) 10874877 | 533744 +> [ 247.000000] (6:node@c-5.me) 10874878 | 533744 +> [ 247.000000] (6:node@c-5.me) 10874880 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10874884 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10874892 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10874908 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10874940 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10875004 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10875132 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10875388 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10875900 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10876924 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10878972 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10883068 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10891260 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10907644 | 10874876 +> [ 247.000000] (6:node@c-5.me) 10940412 | 10874876 +> [ 247.000000] (6:node@c-5.me) 11005948 | 10874876 +> [ 247.000000] (6:node@c-5.me) 11137020 | 10874876 +> [ 247.000000] (6:node@c-5.me) 11399164 | 10874876 +> [ 247.000000] (6:node@c-5.me) 11923452 | 10874876 +> [ 247.000000] (6:node@c-5.me) 12972028 | 10874876 +> [ 247.000000] (6:node@c-5.me) 15069180 | 10874876 +> [ 247.000000] (6:node@c-5.me) 2486268 | 10874876 +> [ 247.000000] (6:node@c-5.me) Predecessor: -1 +> [ 247.000000] (7:node@c-6.me) My finger table: +> [ 247.000000] (7:node@c-6.me) Start | Succ +> [ 247.000000] (7:node@c-6.me) 16728097 | 42 +> [ 247.000000] (7:node@c-6.me) 16728098 | 42 +> [ 247.000000] (7:node@c-6.me) 16728100 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16728104 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16728112 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16728128 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16728160 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16728224 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16728352 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16728608 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16729120 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16730144 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16732192 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16736288 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16744480 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16760864 | 16728096 +> [ 247.000000] (7:node@c-6.me) 16416 | 16728096 +> [ 247.000000] (7:node@c-6.me) 81952 | 16728096 +> [ 247.000000] (7:node@c-6.me) 213024 | 16728096 +> [ 247.000000] (7:node@c-6.me) 475168 | 16728096 +> [ 247.000000] (7:node@c-6.me) 999456 | 16728096 +> [ 247.000000] (7:node@c-6.me) 2048032 | 16728096 +> [ 247.000000] (7:node@c-6.me) 4145184 | 16728096 +> [ 247.000000] (7:node@c-6.me) 8339488 | 16728096 +> [ 247.000000] (7:node@c-6.me) Predecessor: 2015253 +> [ 253.000000] (1:node@c-0.me) My finger table: +> [ 253.000000] (1:node@c-0.me) Start | Succ +> [ 253.000000] (1:node@c-0.me) 43 | 1319738 +> [ 253.000000] (1:node@c-0.me) 44 | 1319738 +> [ 253.000000] (1:node@c-0.me) 46 | 42 +> [ 253.000000] (1:node@c-0.me) 50 | 42 +> [ 253.000000] (1:node@c-0.me) 58 | 42 +> [ 253.000000] (1:node@c-0.me) 74 | 42 +> [ 253.000000] (1:node@c-0.me) 106 | 42 +> [ 253.000000] (1:node@c-0.me) 170 | 42 +> [ 253.000000] (1:node@c-0.me) 298 | 42 +> [ 253.000000] (1:node@c-0.me) 554 | 42 +> [ 253.000000] (1:node@c-0.me) 1066 | 42 +> [ 253.000000] (1:node@c-0.me) 2090 | 42 +> [ 253.000000] (1:node@c-0.me) 4138 | 42 +> [ 253.000000] (1:node@c-0.me) 8234 | 42 +> [ 253.000000] (1:node@c-0.me) 16426 | 42 +> [ 253.000000] (1:node@c-0.me) 32810 | 42 +> [ 253.000000] (1:node@c-0.me) 65578 | 42 +> [ 253.000000] (1:node@c-0.me) 131114 | 42 +> [ 253.000000] (1:node@c-0.me) 262186 | 42 +> [ 253.000000] (1:node@c-0.me) 524330 | 42 +> [ 253.000000] (1:node@c-0.me) 1048618 | 42 +> [ 253.000000] (1:node@c-0.me) 2097194 | 42 +> [ 253.000000] (1:node@c-0.me) 4194346 | 42 +> [ 253.000000] (1:node@c-0.me) 8388650 | 42 +> [ 253.000000] (1:node@c-0.me) Predecessor: 16728096 +> [ 255.000000] (2:node@c-1.me) My finger table: +> [ 255.000000] (2:node@c-1.me) Start | Succ +> [ 255.000000] (2:node@c-1.me) 366681 | 1319738 +> [ 255.000000] (2:node@c-1.me) 366682 | 1319738 +> [ 255.000000] (2:node@c-1.me) 366684 | 366680 +> [ 255.000000] (2:node@c-1.me) 366688 | 366680 +> [ 255.000000] (2:node@c-1.me) 366696 | 366680 +> [ 255.000000] (2:node@c-1.me) 366712 | 366680 +> [ 255.000000] (2:node@c-1.me) 366744 | 366680 +> [ 255.000000] (2:node@c-1.me) 366808 | 366680 +> [ 255.000000] (2:node@c-1.me) 366936 | 366680 +> [ 255.000000] (2:node@c-1.me) 367192 | 366680 +> [ 255.000000] (2:node@c-1.me) 367704 | 366680 +> [ 255.000000] (2:node@c-1.me) 368728 | 366680 +> [ 255.000000] (2:node@c-1.me) 370776 | 366680 +> [ 255.000000] (2:node@c-1.me) 374872 | 366680 +> [ 255.000000] (2:node@c-1.me) 383064 | 366680 +> [ 255.000000] (2:node@c-1.me) 399448 | 366680 +> [ 255.000000] (2:node@c-1.me) 432216 | 366680 +> [ 255.000000] (2:node@c-1.me) 497752 | 366680 +> [ 255.000000] (2:node@c-1.me) 628824 | 366680 +> [ 255.000000] (2:node@c-1.me) 890968 | 366680 +> [ 255.000000] (2:node@c-1.me) 1415256 | 366680 +> [ 255.000000] (2:node@c-1.me) 2463832 | 366680 +> [ 255.000000] (2:node@c-1.me) 4560984 | 366680 +> [ 255.000000] (2:node@c-1.me) 8755288 | 366680 +> [ 255.000000] (2:node@c-1.me) Predecessor: 16509405 +> [ 260.000000] (4:node@c-3.me) My finger table: +> [ 260.000000] (4:node@c-3.me) Start | Succ +> [ 260.000000] (4:node@c-3.me) 1319739 | 6518808 +> [ 260.000000] (4:node@c-3.me) 1319740 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1319742 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1319746 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1319754 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1319770 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1319802 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1319866 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1319994 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1320250 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1320762 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1321786 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1323834 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1327930 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1336122 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1352506 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1385274 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1450810 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1581882 | 1319738 +> [ 260.000000] (4:node@c-3.me) 1844026 | 1319738 +> [ 260.000000] (4:node@c-3.me) 2368314 | 1319738 +> [ 260.000000] (4:node@c-3.me) 3416890 | 1319738 +> [ 260.000000] (4:node@c-3.me) 5514042 | 1319738 +> [ 260.000000] (4:node@c-3.me) 9708346 | 1319738 +> [ 260.000000] (4:node@c-3.me) Predecessor: 366680 +> [ 292.000000] (7:node@c-6.me) My finger table: +> [ 292.000000] (7:node@c-6.me) Start | Succ +> [ 292.000000] (7:node@c-6.me) 16728097 | 42 +> [ 292.000000] (7:node@c-6.me) 16728098 | 42 +> [ 292.000000] (7:node@c-6.me) 16728100 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16728104 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16728112 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16728128 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16728160 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16728224 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16728352 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16728608 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16729120 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16730144 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16732192 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16736288 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16744480 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16760864 | 16728096 +> [ 292.000000] (7:node@c-6.me) 16416 | 16728096 +> [ 292.000000] (7:node@c-6.me) 81952 | 16728096 +> [ 292.000000] (7:node@c-6.me) 213024 | 16728096 +> [ 292.000000] (7:node@c-6.me) 475168 | 16728096 +> [ 292.000000] (7:node@c-6.me) 999456 | 16728096 +> [ 292.000000] (7:node@c-6.me) 2048032 | 16728096 +> [ 292.000000] (7:node@c-6.me) 4145184 | 16728096 +> [ 292.000000] (7:node@c-6.me) 8339488 | 16728096 +> [ 292.000000] (7:node@c-6.me) Predecessor: 6518808 +> [ 300.000000] (9:node@c-8.me) My finger table: +> [ 300.000000] (9:node@c-8.me) Start | Succ +> [ 300.000000] (9:node@c-8.me) 6518809 | 16728096 +> [ 300.000000] (9:node@c-8.me) 6518810 | 16728096 +> [ 300.000000] (9:node@c-8.me) 6518812 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6518816 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6518824 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6518840 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6518872 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6518936 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6519064 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6519320 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6519832 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6520856 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6522904 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6527000 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6535192 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6551576 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6584344 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6649880 | 6518808 +> [ 300.000000] (9:node@c-8.me) 6780952 | 6518808 +> [ 300.000000] (9:node@c-8.me) 7043096 | 6518808 +> [ 300.000000] (9:node@c-8.me) 7567384 | 6518808 +> [ 300.000000] (9:node@c-8.me) 8615960 | 6518808 +> [ 300.000000] (9:node@c-8.me) 10713112 | 6518808 +> [ 300.000000] (9:node@c-8.me) 14907416 | 6518808 +> [ 300.000000] (9:node@c-8.me) Predecessor: 1319738 +> [ 301.000000] (10:node@c-9.me) My finger table: +> [ 301.000000] (10:node@c-9.me) Start | Succ +> [ 301.000000] (10:node@c-9.me) 2015254 | 16728096 +> [ 301.000000] (10:node@c-9.me) 2015255 | 16728096 +> [ 301.000000] (10:node@c-9.me) 2015257 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2015261 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2015269 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2015285 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2015317 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2015381 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2015509 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2015765 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2016277 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2017301 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2019349 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2023445 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2031637 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2048021 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2080789 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2146325 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2277397 | 2015253 +> [ 301.000000] (10:node@c-9.me) 2539541 | 2015253 +> [ 301.000000] (10:node@c-9.me) 3063829 | 2015253 +> [ 301.000000] (10:node@c-9.me) 4112405 | 2015253 +> [ 301.000000] (10:node@c-9.me) 6209557 | 2015253 +> [ 301.000000] (10:node@c-9.me) 10403861 | 2015253 +> [ 301.000000] (10:node@c-9.me) Predecessor: -1 +> [ 302.000000] (2:node@c-1.me) My finger table: +> [ 302.000000] (2:node@c-1.me) Start | Succ +> [ 302.000000] (2:node@c-1.me) 366681 | 1319738 +> [ 302.000000] (2:node@c-1.me) 366682 | 1319738 +> [ 302.000000] (2:node@c-1.me) 366684 | 366680 +> [ 302.000000] (2:node@c-1.me) 366688 | 366680 +> [ 302.000000] (2:node@c-1.me) 366696 | 366680 +> [ 302.000000] (2:node@c-1.me) 366712 | 366680 +> [ 302.000000] (2:node@c-1.me) 366744 | 366680 +> [ 302.000000] (2:node@c-1.me) 366808 | 366680 +> [ 302.000000] (2:node@c-1.me) 366936 | 366680 +> [ 302.000000] (2:node@c-1.me) 367192 | 366680 +> [ 302.000000] (2:node@c-1.me) 367704 | 366680 +> [ 302.000000] (2:node@c-1.me) 368728 | 366680 +> [ 302.000000] (2:node@c-1.me) 370776 | 366680 +> [ 302.000000] (2:node@c-1.me) 374872 | 366680 +> [ 302.000000] (2:node@c-1.me) 383064 | 366680 +> [ 302.000000] (2:node@c-1.me) 399448 | 366680 +> [ 302.000000] (2:node@c-1.me) 432216 | 366680 +> [ 302.000000] (2:node@c-1.me) 497752 | 366680 +> [ 302.000000] (2:node@c-1.me) 628824 | 366680 +> [ 302.000000] (2:node@c-1.me) 890968 | 366680 +> [ 302.000000] (2:node@c-1.me) 1415256 | 366680 +> [ 302.000000] (2:node@c-1.me) 2463832 | 366680 +> [ 302.000000] (2:node@c-1.me) 4560984 | 366680 +> [ 302.000000] (2:node@c-1.me) 8755288 | 366680 +> [ 302.000000] (2:node@c-1.me) Predecessor: 42 +> [ 306.000000] (4:node@c-3.me) My finger table: +> [ 306.000000] (4:node@c-3.me) Start | Succ +> [ 306.000000] (4:node@c-3.me) 1319739 | 6518808 +> [ 306.000000] (4:node@c-3.me) 1319740 | 6518808 +> [ 306.000000] (4:node@c-3.me) 1319742 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1319746 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1319754 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1319770 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1319802 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1319866 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1319994 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1320250 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1320762 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1321786 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1323834 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1327930 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1336122 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1352506 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1385274 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1450810 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1581882 | 1319738 +> [ 306.000000] (4:node@c-3.me) 1844026 | 1319738 +> [ 306.000000] (4:node@c-3.me) 2368314 | 1319738 +> [ 306.000000] (4:node@c-3.me) 3416890 | 1319738 +> [ 306.000000] (4:node@c-3.me) 5514042 | 1319738 +> [ 306.000000] (4:node@c-3.me) 9708346 | 1319738 +> [ 306.000000] (4:node@c-3.me) Predecessor: 366680 +> [ 339.000000] (9:node@c-8.me) My finger table: +> [ 339.000000] (9:node@c-8.me) Start | Succ +> [ 339.000000] (9:node@c-8.me) 6518809 | 16728096 +> [ 339.000000] (9:node@c-8.me) 6518810 | 16728096 +> [ 339.000000] (9:node@c-8.me) 6518812 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6518816 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6518824 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6518840 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6518872 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6518936 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6519064 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6519320 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6519832 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6520856 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6522904 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6527000 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6535192 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6551576 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6584344 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6649880 | 6518808 +> [ 339.000000] (9:node@c-8.me) 6780952 | 6518808 +> [ 339.000000] (9:node@c-8.me) 7043096 | 6518808 +> [ 339.000000] (9:node@c-8.me) 7567384 | 6518808 +> [ 339.000000] (9:node@c-8.me) 8615960 | 6518808 +> [ 339.000000] (9:node@c-8.me) 10713112 | 6518808 +> [ 339.000000] (9:node@c-8.me) 14907416 | 6518808 +> [ 339.000000] (9:node@c-8.me) Predecessor: 2015253 +> [ 367.000000] (6:node@c-5.me) My finger table: +> [ 367.000000] (6:node@c-5.me) Start | Succ +> [ 367.000000] (6:node@c-5.me) 10874877 | 533744 +> [ 367.000000] (6:node@c-5.me) 10874878 | 533744 +> [ 367.000000] (6:node@c-5.me) 10874880 | 533744 +> [ 367.000000] (6:node@c-5.me) 10874884 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10874892 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10874908 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10874940 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10875004 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10875132 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10875388 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10875900 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10876924 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10878972 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10883068 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10891260 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10907644 | 10874876 +> [ 367.000000] (6:node@c-5.me) 10940412 | 10874876 +> [ 367.000000] (6:node@c-5.me) 11005948 | 10874876 +> [ 367.000000] (6:node@c-5.me) 11137020 | 10874876 +> [ 367.000000] (6:node@c-5.me) 11399164 | 10874876 +> [ 367.000000] (6:node@c-5.me) 11923452 | 10874876 +> [ 367.000000] (6:node@c-5.me) 12972028 | 10874876 +> [ 367.000000] (6:node@c-5.me) 15069180 | 10874876 +> [ 367.000000] (6:node@c-5.me) 2486268 | 10874876 +> [ 367.000000] (6:node@c-5.me) Predecessor: -1 +> [ 368.000000] (3:node@c-2.me) My finger table: +> [ 368.000000] (3:node@c-2.me) Start | Succ +> [ 368.000000] (3:node@c-2.me) 533745 | 10004760 +> [ 368.000000] (3:node@c-2.me) 533746 | 10004760 +> [ 368.000000] (3:node@c-2.me) 533748 | 10004760 +> [ 368.000000] (3:node@c-2.me) 533752 | 533744 +> [ 368.000000] (3:node@c-2.me) 533760 | 533744 +> [ 368.000000] (3:node@c-2.me) 533776 | 533744 +> [ 368.000000] (3:node@c-2.me) 533808 | 533744 +> [ 368.000000] (3:node@c-2.me) 533872 | 533744 +> [ 368.000000] (3:node@c-2.me) 534000 | 533744 +> [ 368.000000] (3:node@c-2.me) 534256 | 533744 +> [ 368.000000] (3:node@c-2.me) 534768 | 533744 +> [ 368.000000] (3:node@c-2.me) 535792 | 533744 +> [ 368.000000] (3:node@c-2.me) 537840 | 533744 +> [ 368.000000] (3:node@c-2.me) 541936 | 533744 +> [ 368.000000] (3:node@c-2.me) 550128 | 533744 +> [ 368.000000] (3:node@c-2.me) 566512 | 533744 +> [ 368.000000] (3:node@c-2.me) 599280 | 533744 +> [ 368.000000] (3:node@c-2.me) 664816 | 533744 +> [ 368.000000] (3:node@c-2.me) 795888 | 533744 +> [ 368.000000] (3:node@c-2.me) 1058032 | 533744 +> [ 368.000000] (3:node@c-2.me) 1582320 | 533744 +> [ 368.000000] (3:node@c-2.me) 2630896 | 533744 +> [ 368.000000] (3:node@c-2.me) 4728048 | 533744 +> [ 368.000000] (3:node@c-2.me) 8922352 | 533744 +> [ 368.000000] (3:node@c-2.me) Predecessor: 10874876 +> [ 368.000000] (5:node@c-4.me) My finger table: +> [ 368.000000] (5:node@c-4.me) Start | Succ +> [ 368.000000] (5:node@c-4.me) 16509406 | 16728096 +> [ 368.000000] (5:node@c-4.me) 16509407 | 366680 +> [ 368.000000] (5:node@c-4.me) 16509409 | 16728096 +> [ 368.000000] (5:node@c-4.me) 16509413 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16509421 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16509437 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16509469 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16509533 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16509661 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16509917 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16510429 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16511453 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16513501 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16517597 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16525789 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16542173 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16574941 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16640477 | 16509405 +> [ 368.000000] (5:node@c-4.me) 16771549 | 16509405 +> [ 368.000000] (5:node@c-4.me) 256477 | 16509405 +> [ 368.000000] (5:node@c-4.me) 780765 | 16509405 +> [ 368.000000] (5:node@c-4.me) 1829341 | 16509405 +> [ 368.000000] (5:node@c-4.me) 3926493 | 16509405 +> [ 368.000000] (5:node@c-4.me) 8120797 | 16509405 +> [ 368.000000] (5:node@c-4.me) Predecessor: 10004760 +> [ 370.000000] (8:node@c-7.me) My finger table: +> [ 370.000000] (8:node@c-7.me) Start | Succ +> [ 370.000000] (8:node@c-7.me) 10004761 | 16509405 +> [ 370.000000] (8:node@c-7.me) 10004762 | 16509405 +> [ 370.000000] (8:node@c-7.me) 10004764 | 16509405 +> [ 370.000000] (8:node@c-7.me) 10004768 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10004776 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10004792 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10004824 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10004888 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10005016 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10005272 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10005784 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10006808 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10008856 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10012952 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10021144 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10037528 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10070296 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10135832 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10266904 | 10004760 +> [ 370.000000] (8:node@c-7.me) 10529048 | 10004760 +> [ 370.000000] (8:node@c-7.me) 11053336 | 10004760 +> [ 370.000000] (8:node@c-7.me) 12101912 | 10004760 +> [ 370.000000] (8:node@c-7.me) 14199064 | 10004760 +> [ 370.000000] (8:node@c-7.me) 1616152 | 10004760 +> [ 370.000000] (8:node@c-7.me) Predecessor: 533744 +> [ 373.000000] (7:node@c-6.me) My finger table: +> [ 373.000000] (7:node@c-6.me) Start | Succ +> [ 373.000000] (7:node@c-6.me) 16728097 | 42 +> [ 373.000000] (7:node@c-6.me) 16728098 | 42 +> [ 373.000000] (7:node@c-6.me) 16728100 | 42 +> [ 373.000000] (7:node@c-6.me) 16728104 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16728112 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16728128 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16728160 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16728224 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16728352 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16728608 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16729120 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16730144 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16732192 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16736288 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16744480 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16760864 | 16728096 +> [ 373.000000] (7:node@c-6.me) 16416 | 16728096 +> [ 373.000000] (7:node@c-6.me) 81952 | 16728096 +> [ 373.000000] (7:node@c-6.me) 213024 | 16728096 +> [ 373.000000] (7:node@c-6.me) 475168 | 16728096 +> [ 373.000000] (7:node@c-6.me) 999456 | 16728096 +> [ 373.000000] (7:node@c-6.me) 2048032 | 16728096 +> [ 373.000000] (7:node@c-6.me) 4145184 | 16728096 +> [ 373.000000] (7:node@c-6.me) 8339488 | 16728096 +> [ 373.000000] (7:node@c-6.me) Predecessor: 6518808 +> [ 375.000000] (2:node@c-1.me) My finger table: +> [ 375.000000] (2:node@c-1.me) Start | Succ +> [ 375.000000] (2:node@c-1.me) 366681 | 1319738 +> [ 375.000000] (2:node@c-1.me) 366682 | 1319738 +> [ 375.000000] (2:node@c-1.me) 366684 | 1319738 +> [ 375.000000] (2:node@c-1.me) 366688 | 366680 +> [ 375.000000] (2:node@c-1.me) 366696 | 366680 +> [ 375.000000] (2:node@c-1.me) 366712 | 366680 +> [ 375.000000] (2:node@c-1.me) 366744 | 366680 +> [ 375.000000] (2:node@c-1.me) 366808 | 366680 +> [ 375.000000] (2:node@c-1.me) 366936 | 366680 +> [ 375.000000] (2:node@c-1.me) 367192 | 366680 +> [ 375.000000] (2:node@c-1.me) 367704 | 366680 +> [ 375.000000] (2:node@c-1.me) 368728 | 366680 +> [ 375.000000] (2:node@c-1.me) 370776 | 366680 +> [ 375.000000] (2:node@c-1.me) 374872 | 366680 +> [ 375.000000] (2:node@c-1.me) 383064 | 366680 +> [ 375.000000] (2:node@c-1.me) 399448 | 366680 +> [ 375.000000] (2:node@c-1.me) 432216 | 366680 +> [ 375.000000] (2:node@c-1.me) 497752 | 366680 +> [ 375.000000] (2:node@c-1.me) 628824 | 366680 +> [ 375.000000] (2:node@c-1.me) 890968 | 366680 +> [ 375.000000] (2:node@c-1.me) 1415256 | 366680 +> [ 375.000000] (2:node@c-1.me) 2463832 | 366680 +> [ 375.000000] (2:node@c-1.me) 4560984 | 366680 +> [ 375.000000] (2:node@c-1.me) 8755288 | 366680 +> [ 375.000000] (2:node@c-1.me) Predecessor: 42 +> [ 382.000000] (1:node@c-0.me) My finger table: +> [ 382.000000] (1:node@c-0.me) Start | Succ +> [ 382.000000] (1:node@c-0.me) 43 | 366680 +> [ 382.000000] (1:node@c-0.me) 44 | 1319738 +> [ 382.000000] (1:node@c-0.me) 46 | 366680 +> [ 382.000000] (1:node@c-0.me) 50 | 42 +> [ 382.000000] (1:node@c-0.me) 58 | 42 +> [ 382.000000] (1:node@c-0.me) 74 | 42 +> [ 382.000000] (1:node@c-0.me) 106 | 42 +> [ 382.000000] (1:node@c-0.me) 170 | 42 +> [ 382.000000] (1:node@c-0.me) 298 | 42 +> [ 382.000000] (1:node@c-0.me) 554 | 42 +> [ 382.000000] (1:node@c-0.me) 1066 | 42 +> [ 382.000000] (1:node@c-0.me) 2090 | 42 +> [ 382.000000] (1:node@c-0.me) 4138 | 42 +> [ 382.000000] (1:node@c-0.me) 8234 | 42 +> [ 382.000000] (1:node@c-0.me) 16426 | 42 +> [ 382.000000] (1:node@c-0.me) 32810 | 42 +> [ 382.000000] (1:node@c-0.me) 65578 | 42 +> [ 382.000000] (1:node@c-0.me) 131114 | 42 +> [ 382.000000] (1:node@c-0.me) 262186 | 42 +> [ 382.000000] (1:node@c-0.me) 524330 | 42 +> [ 382.000000] (1:node@c-0.me) 1048618 | 42 +> [ 382.000000] (1:node@c-0.me) 2097194 | 42 +> [ 382.000000] (1:node@c-0.me) 4194346 | 42 +> [ 382.000000] (1:node@c-0.me) 8388650 | 42 +> [ 382.000000] (1:node@c-0.me) Predecessor: 16728096 +> [ 383.000000] (7:node@c-6.me) My finger table: +> [ 383.000000] (7:node@c-6.me) Start | Succ +> [ 383.000000] (7:node@c-6.me) 16728097 | 42 +> [ 383.000000] (7:node@c-6.me) 16728098 | 42 +> [ 383.000000] (7:node@c-6.me) 16728100 | 42 +> [ 383.000000] (7:node@c-6.me) 16728104 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16728112 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16728128 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16728160 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16728224 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16728352 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16728608 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16729120 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16730144 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16732192 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16736288 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16744480 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16760864 | 16728096 +> [ 383.000000] (7:node@c-6.me) 16416 | 16728096 +> [ 383.000000] (7:node@c-6.me) 81952 | 16728096 +> [ 383.000000] (7:node@c-6.me) 213024 | 16728096 +> [ 383.000000] (7:node@c-6.me) 475168 | 16728096 +> [ 383.000000] (7:node@c-6.me) 999456 | 16728096 +> [ 383.000000] (7:node@c-6.me) 2048032 | 16728096 +> [ 383.000000] (7:node@c-6.me) 4145184 | 16728096 +> [ 383.000000] (7:node@c-6.me) 8339488 | 16728096 +> [ 383.000000] (7:node@c-6.me) Predecessor: 16509405 +> [ 385.000000] (10:node@c-9.me) My finger table: +> [ 385.000000] (10:node@c-9.me) Start | Succ +> [ 385.000000] (10:node@c-9.me) 2015254 | 6518808 +> [ 385.000000] (10:node@c-9.me) 2015255 | 16728096 +> [ 385.000000] (10:node@c-9.me) 2015257 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2015261 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2015269 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2015285 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2015317 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2015381 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2015509 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2015765 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2016277 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2017301 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2019349 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2023445 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2031637 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2048021 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2080789 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2146325 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2277397 | 2015253 +> [ 385.000000] (10:node@c-9.me) 2539541 | 2015253 +> [ 385.000000] (10:node@c-9.me) 3063829 | 2015253 +> [ 385.000000] (10:node@c-9.me) 4112405 | 2015253 +> [ 385.000000] (10:node@c-9.me) 6209557 | 2015253 +> [ 385.000000] (10:node@c-9.me) 10403861 | 2015253 +> [ 385.000000] (10:node@c-9.me) Predecessor: 1319738 +> [ 427.000000] (9:node@c-8.me) My finger table: +> [ 427.000000] (9:node@c-8.me) Start | Succ +> [ 427.000000] (9:node@c-8.me) 6518809 | 10004760 +> [ 427.000000] (9:node@c-8.me) 6518810 | 16728096 +> [ 427.000000] (9:node@c-8.me) 6518812 | 10004760 +> [ 427.000000] (9:node@c-8.me) 6518816 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6518824 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6518840 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6518872 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6518936 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6519064 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6519320 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6519832 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6520856 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6522904 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6527000 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6535192 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6551576 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6584344 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6649880 | 6518808 +> [ 427.000000] (9:node@c-8.me) 6780952 | 6518808 +> [ 427.000000] (9:node@c-8.me) 7043096 | 6518808 +> [ 427.000000] (9:node@c-8.me) 7567384 | 6518808 +> [ 427.000000] (9:node@c-8.me) 8615960 | 6518808 +> [ 427.000000] (9:node@c-8.me) 10713112 | 6518808 +> [ 427.000000] (9:node@c-8.me) 14907416 | 6518808 +> [ 427.000000] (9:node@c-8.me) Predecessor: 2015253 +> [ 432.000000] (10:node@c-9.me) My finger table: +> [ 432.000000] (10:node@c-9.me) Start | Succ +> [ 432.000000] (10:node@c-9.me) 2015254 | 6518808 +> [ 432.000000] (10:node@c-9.me) 2015255 | 16728096 +> [ 432.000000] (10:node@c-9.me) 2015257 | 6518808 +> [ 432.000000] (10:node@c-9.me) 2015261 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2015269 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2015285 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2015317 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2015381 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2015509 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2015765 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2016277 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2017301 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2019349 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2023445 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2031637 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2048021 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2080789 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2146325 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2277397 | 2015253 +> [ 432.000000] (10:node@c-9.me) 2539541 | 2015253 +> [ 432.000000] (10:node@c-9.me) 3063829 | 2015253 +> [ 432.000000] (10:node@c-9.me) 4112405 | 2015253 +> [ 432.000000] (10:node@c-9.me) 6209557 | 2015253 +> [ 432.000000] (10:node@c-9.me) 10403861 | 2015253 +> [ 432.000000] (10:node@c-9.me) Predecessor: 1319738 +> [ 484.000000] (4:node@c-3.me) My finger table: +> [ 484.000000] (4:node@c-3.me) Start | Succ +> [ 484.000000] (4:node@c-3.me) 1319739 | 2015253 +> [ 484.000000] (4:node@c-3.me) 1319740 | 6518808 +> [ 484.000000] (4:node@c-3.me) 1319742 | 2015253 +> [ 484.000000] (4:node@c-3.me) 1319746 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1319754 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1319770 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1319802 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1319866 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1319994 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1320250 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1320762 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1321786 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1323834 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1327930 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1336122 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1352506 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1385274 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1450810 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1581882 | 1319738 +> [ 484.000000] (4:node@c-3.me) 1844026 | 1319738 +> [ 484.000000] (4:node@c-3.me) 2368314 | 1319738 +> [ 484.000000] (4:node@c-3.me) 3416890 | 1319738 +> [ 484.000000] (4:node@c-3.me) 5514042 | 1319738 +> [ 484.000000] (4:node@c-3.me) 9708346 | 1319738 +> [ 484.000000] (4:node@c-3.me) Predecessor: 366680 +> [ 487.000000] (6:node@c-5.me) My finger table: +> [ 487.000000] (6:node@c-5.me) Start | Succ +> [ 487.000000] (6:node@c-5.me) 10874877 | 533744 +> [ 487.000000] (6:node@c-5.me) 10874878 | 533744 +> [ 487.000000] (6:node@c-5.me) 10874880 | 533744 +> [ 487.000000] (6:node@c-5.me) 10874884 | 533744 +> [ 487.000000] (6:node@c-5.me) 10874892 | 10874876 +> [ 487.000000] (6:node@c-5.me) 10874908 | 10874876 +> [ 487.000000] (6:node@c-5.me) 10874940 | 10874876 +> [ 487.000000] (6:node@c-5.me) 10875004 | 10874876 +> [ 487.000000] (6:node@c-5.me) 10875132 | 10874876 +> [ 487.000000] (6:node@c-5.me) 10875388 | 10874876 +> [ 487.000000] (6:node@c-5.me) 10875900 | 10874876 +> [ 487.000000] (6:node@c-5.me) 10876924 | 10874876 +> [ 487.000000] (6:node@c-5.me) 10878972 | 10874876 +> [ 487.000000] (6:node@c-5.me) 10883068 | 10874876 +> [ 487.000000] (6:node@c-5.me) 10891260 | 10874876 +> [ 487.000000] (6:node@c-5.me) 10907644 | 10874876 +> [ 487.000000] (6:node@c-5.me) 10940412 | 10874876 +> [ 487.000000] (6:node@c-5.me) 11005948 | 10874876 +> [ 487.000000] (6:node@c-5.me) 11137020 | 10874876 +> [ 487.000000] (6:node@c-5.me) 11399164 | 10874876 +> [ 487.000000] (6:node@c-5.me) 11923452 | 10874876 +> [ 487.000000] (6:node@c-5.me) 12972028 | 10874876 +> [ 487.000000] (6:node@c-5.me) 15069180 | 10874876 +> [ 487.000000] (6:node@c-5.me) 2486268 | 10874876 +> [ 487.000000] (6:node@c-5.me) Predecessor: -1 +> [ 490.000000] (8:node@c-7.me) My finger table: +> [ 490.000000] (8:node@c-7.me) Start | Succ +> [ 490.000000] (8:node@c-7.me) 10004761 | 16509405 +> [ 490.000000] (8:node@c-7.me) 10004762 | 16509405 +> [ 490.000000] (8:node@c-7.me) 10004764 | 16509405 +> [ 490.000000] (8:node@c-7.me) 10004768 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10004776 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10004792 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10004824 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10004888 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10005016 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10005272 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10005784 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10006808 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10008856 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10012952 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10021144 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10037528 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10070296 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10135832 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10266904 | 10004760 +> [ 490.000000] (8:node@c-7.me) 10529048 | 10004760 +> [ 490.000000] (8:node@c-7.me) 11053336 | 10004760 +> [ 490.000000] (8:node@c-7.me) 12101912 | 10004760 +> [ 490.000000] (8:node@c-7.me) 14199064 | 10004760 +> [ 490.000000] (8:node@c-7.me) 1616152 | 10004760 +> [ 490.000000] (8:node@c-7.me) Predecessor: 6518808 +> [ 491.000000] (8:node@c-7.me) My finger table: +> [ 491.000000] (8:node@c-7.me) Start | Succ +> [ 491.000000] (8:node@c-7.me) 10004761 | 16509405 +> [ 491.000000] (8:node@c-7.me) 10004762 | 16509405 +> [ 491.000000] (8:node@c-7.me) 10004764 | 16509405 +> [ 491.000000] (8:node@c-7.me) 10004768 | 16509405 +> [ 491.000000] (8:node@c-7.me) 10004776 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10004792 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10004824 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10004888 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10005016 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10005272 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10005784 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10006808 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10008856 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10012952 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10021144 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10037528 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10070296 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10135832 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10266904 | 10004760 +> [ 491.000000] (8:node@c-7.me) 10529048 | 10004760 +> [ 491.000000] (8:node@c-7.me) 11053336 | 10004760 +> [ 491.000000] (8:node@c-7.me) 12101912 | 10004760 +> [ 491.000000] (8:node@c-7.me) 14199064 | 10004760 +> [ 491.000000] (8:node@c-7.me) 1616152 | 10004760 +> [ 491.000000] (8:node@c-7.me) Predecessor: 6518808 +> [ 496.000000] (7:node@c-6.me) My finger table: +> [ 496.000000] (7:node@c-6.me) Start | Succ +> [ 496.000000] (7:node@c-6.me) 16728097 | 42 +> [ 496.000000] (7:node@c-6.me) 16728098 | 42 +> [ 496.000000] (7:node@c-6.me) 16728100 | 42 +> [ 496.000000] (7:node@c-6.me) 16728104 | 42 +> [ 496.000000] (7:node@c-6.me) 16728112 | 16728096 +> [ 496.000000] (7:node@c-6.me) 16728128 | 16728096 +> [ 496.000000] (7:node@c-6.me) 16728160 | 16728096 +> [ 496.000000] (7:node@c-6.me) 16728224 | 16728096 +> [ 496.000000] (7:node@c-6.me) 16728352 | 16728096 +> [ 496.000000] (7:node@c-6.me) 16728608 | 16728096 +> [ 496.000000] (7:node@c-6.me) 16729120 | 16728096 +> [ 496.000000] (7:node@c-6.me) 16730144 | 16728096 +> [ 496.000000] (7:node@c-6.me) 16732192 | 16728096 +> [ 496.000000] (7:node@c-6.me) 16736288 | 16728096 +> [ 496.000000] (7:node@c-6.me) 16744480 | 16728096 +> [ 496.000000] (7:node@c-6.me) 16760864 | 16728096 +> [ 496.000000] (7:node@c-6.me) 16416 | 16728096 +> [ 496.000000] (7:node@c-6.me) 81952 | 16728096 +> [ 496.000000] (7:node@c-6.me) 213024 | 16728096 +> [ 496.000000] (7:node@c-6.me) 475168 | 16728096 +> [ 496.000000] (7:node@c-6.me) 999456 | 16728096 +> [ 496.000000] (7:node@c-6.me) 2048032 | 16728096 +> [ 496.000000] (7:node@c-6.me) 4145184 | 16728096 +> [ 496.000000] (7:node@c-6.me) 8339488 | 16728096 +> [ 496.000000] (7:node@c-6.me) Predecessor: 16509405 +> [ 497.000000] (3:node@c-2.me) My finger table: +> [ 497.000000] (3:node@c-2.me) Start | Succ +> [ 497.000000] (3:node@c-2.me) 533745 | 6518808 +> [ 497.000000] (3:node@c-2.me) 533746 | 10004760 +> [ 497.000000] (3:node@c-2.me) 533748 | 10004760 +> [ 497.000000] (3:node@c-2.me) 533752 | 6518808 +> [ 497.000000] (3:node@c-2.me) 533760 | 533744 +> [ 497.000000] (3:node@c-2.me) 533776 | 533744 +> [ 497.000000] (3:node@c-2.me) 533808 | 533744 +> [ 497.000000] (3:node@c-2.me) 533872 | 533744 +> [ 497.000000] (3:node@c-2.me) 534000 | 533744 +> [ 497.000000] (3:node@c-2.me) 534256 | 533744 +> [ 497.000000] (3:node@c-2.me) 534768 | 533744 +> [ 497.000000] (3:node@c-2.me) 535792 | 533744 +> [ 497.000000] (3:node@c-2.me) 537840 | 533744 +> [ 497.000000] (3:node@c-2.me) 541936 | 533744 +> [ 497.000000] (3:node@c-2.me) 550128 | 533744 +> [ 497.000000] (3:node@c-2.me) 566512 | 533744 +> [ 497.000000] (3:node@c-2.me) 599280 | 533744 +> [ 497.000000] (3:node@c-2.me) 664816 | 533744 +> [ 497.000000] (3:node@c-2.me) 795888 | 533744 +> [ 497.000000] (3:node@c-2.me) 1058032 | 533744 +> [ 497.000000] (3:node@c-2.me) 1582320 | 533744 +> [ 497.000000] (3:node@c-2.me) 2630896 | 533744 +> [ 497.000000] (3:node@c-2.me) 4728048 | 533744 +> [ 497.000000] (3:node@c-2.me) 8922352 | 533744 +> [ 497.000000] (3:node@c-2.me) Predecessor: 10874876 +> [ 502.000000] (1:node@c-0.me) My finger table: +> [ 502.000000] (1:node@c-0.me) Start | Succ +> [ 502.000000] (1:node@c-0.me) 43 | 366680 +> [ 502.000000] (1:node@c-0.me) 44 | 1319738 +> [ 502.000000] (1:node@c-0.me) 46 | 366680 +> [ 502.000000] (1:node@c-0.me) 50 | 366680 +> [ 502.000000] (1:node@c-0.me) 58 | 42 +> [ 502.000000] (1:node@c-0.me) 74 | 42 +> [ 502.000000] (1:node@c-0.me) 106 | 42 +> [ 502.000000] (1:node@c-0.me) 170 | 42 +> [ 502.000000] (1:node@c-0.me) 298 | 42 +> [ 502.000000] (1:node@c-0.me) 554 | 42 +> [ 502.000000] (1:node@c-0.me) 1066 | 42 +> [ 502.000000] (1:node@c-0.me) 2090 | 42 +> [ 502.000000] (1:node@c-0.me) 4138 | 42 +> [ 502.000000] (1:node@c-0.me) 8234 | 42 +> [ 502.000000] (1:node@c-0.me) 16426 | 42 +> [ 502.000000] (1:node@c-0.me) 32810 | 42 +> [ 502.000000] (1:node@c-0.me) 65578 | 42 +> [ 502.000000] (1:node@c-0.me) 131114 | 42 +> [ 502.000000] (1:node@c-0.me) 262186 | 42 +> [ 502.000000] (1:node@c-0.me) 524330 | 42 +> [ 502.000000] (1:node@c-0.me) 1048618 | 42 +> [ 502.000000] (1:node@c-0.me) 2097194 | 42 +> [ 502.000000] (1:node@c-0.me) 4194346 | 42 +> [ 502.000000] (1:node@c-0.me) 8388650 | 42 +> [ 502.000000] (1:node@c-0.me) Predecessor: 16728096 +> [ 505.000000] (2:node@c-1.me) My finger table: +> [ 505.000000] (2:node@c-1.me) Start | Succ +> [ 505.000000] (2:node@c-1.me) 366681 | 1319738 +> [ 505.000000] (2:node@c-1.me) 366682 | 1319738 +> [ 505.000000] (2:node@c-1.me) 366684 | 1319738 +> [ 505.000000] (2:node@c-1.me) 366688 | 1319738 +> [ 505.000000] (2:node@c-1.me) 366696 | 366680 +> [ 505.000000] (2:node@c-1.me) 366712 | 366680 +> [ 505.000000] (2:node@c-1.me) 366744 | 366680 +> [ 505.000000] (2:node@c-1.me) 366808 | 366680 +> [ 505.000000] (2:node@c-1.me) 366936 | 366680 +> [ 505.000000] (2:node@c-1.me) 367192 | 366680 +> [ 505.000000] (2:node@c-1.me) 367704 | 366680 +> [ 505.000000] (2:node@c-1.me) 368728 | 366680 +> [ 505.000000] (2:node@c-1.me) 370776 | 366680 +> [ 505.000000] (2:node@c-1.me) 374872 | 366680 +> [ 505.000000] (2:node@c-1.me) 383064 | 366680 +> [ 505.000000] (2:node@c-1.me) 399448 | 366680 +> [ 505.000000] (2:node@c-1.me) 432216 | 366680 +> [ 505.000000] (2:node@c-1.me) 497752 | 366680 +> [ 505.000000] (2:node@c-1.me) 628824 | 366680 +> [ 505.000000] (2:node@c-1.me) 890968 | 366680 +> [ 505.000000] (2:node@c-1.me) 1415256 | 366680 +> [ 505.000000] (2:node@c-1.me) 2463832 | 366680 +> [ 505.000000] (2:node@c-1.me) 4560984 | 366680 +> [ 505.000000] (2:node@c-1.me) 8755288 | 366680 +> [ 505.000000] (2:node@c-1.me) Predecessor: 42 +> [ 513.000000] (5:node@c-4.me) My finger table: +> [ 513.000000] (5:node@c-4.me) Start | Succ +> [ 513.000000] (5:node@c-4.me) 16509406 | 16728096 +> [ 513.000000] (5:node@c-4.me) 16509407 | 366680 +> [ 513.000000] (5:node@c-4.me) 16509409 | 16728096 +> [ 513.000000] (5:node@c-4.me) 16509413 | 16728096 +> [ 513.000000] (5:node@c-4.me) 16509421 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16509437 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16509469 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16509533 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16509661 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16509917 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16510429 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16511453 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16513501 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16517597 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16525789 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16542173 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16574941 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16640477 | 16509405 +> [ 513.000000] (5:node@c-4.me) 16771549 | 16509405 +> [ 513.000000] (5:node@c-4.me) 256477 | 16509405 +> [ 513.000000] (5:node@c-4.me) 780765 | 16509405 +> [ 513.000000] (5:node@c-4.me) 1829341 | 16509405 +> [ 513.000000] (5:node@c-4.me) 3926493 | 16509405 +> [ 513.000000] (5:node@c-4.me) 8120797 | 16509405 +> [ 513.000000] (5:node@c-4.me) Predecessor: 10004760 +> [ 558.000000] (9:node@c-8.me) My finger table: +> [ 558.000000] (9:node@c-8.me) Start | Succ +> [ 558.000000] (9:node@c-8.me) 6518809 | 10004760 +> [ 558.000000] (9:node@c-8.me) 6518810 | 16728096 +> [ 558.000000] (9:node@c-8.me) 6518812 | 10004760 +> [ 558.000000] (9:node@c-8.me) 6518816 | 10004760 +> [ 558.000000] (9:node@c-8.me) 6518824 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6518840 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6518872 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6518936 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6519064 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6519320 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6519832 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6520856 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6522904 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6527000 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6535192 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6551576 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6584344 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6649880 | 6518808 +> [ 558.000000] (9:node@c-8.me) 6780952 | 6518808 +> [ 558.000000] (9:node@c-8.me) 7043096 | 6518808 +> [ 558.000000] (9:node@c-8.me) 7567384 | 6518808 +> [ 558.000000] (9:node@c-8.me) 8615960 | 6518808 +> [ 558.000000] (9:node@c-8.me) 10713112 | 6518808 +> [ 558.000000] (9:node@c-8.me) 14907416 | 6518808 +> [ 558.000000] (9:node@c-8.me) Predecessor: 2015253 +> [ 573.000000] (10:node@c-9.me) My finger table: +> [ 573.000000] (10:node@c-9.me) Start | Succ +> [ 573.000000] (10:node@c-9.me) 2015254 | 6518808 +> [ 573.000000] (10:node@c-9.me) 2015255 | 16728096 +> [ 573.000000] (10:node@c-9.me) 2015257 | 6518808 +> [ 573.000000] (10:node@c-9.me) 2015261 | 6518808 +> [ 573.000000] (10:node@c-9.me) 2015269 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2015285 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2015317 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2015381 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2015509 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2015765 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2016277 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2017301 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2019349 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2023445 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2031637 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2048021 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2080789 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2146325 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2277397 | 2015253 +> [ 573.000000] (10:node@c-9.me) 2539541 | 2015253 +> [ 573.000000] (10:node@c-9.me) 3063829 | 2015253 +> [ 573.000000] (10:node@c-9.me) 4112405 | 2015253 +> [ 573.000000] (10:node@c-9.me) 6209557 | 2015253 +> [ 573.000000] (10:node@c-9.me) 10403861 | 2015253 +> [ 573.000000] (10:node@c-9.me) Predecessor: 1319738 +> [ 600.000000] (4:node@c-3.me) My finger table: +> [ 600.000000] (4:node@c-3.me) Start | Succ +> [ 600.000000] (4:node@c-3.me) 1319739 | 2015253 +> [ 600.000000] (4:node@c-3.me) 1319740 | 6518808 +> [ 600.000000] (4:node@c-3.me) 1319742 | 2015253 +> [ 600.000000] (4:node@c-3.me) 1319746 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1319754 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1319770 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1319802 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1319866 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1319994 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1320250 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1320762 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1321786 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1323834 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1327930 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1336122 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1352506 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1385274 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1450810 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1581882 | 1319738 +> [ 600.000000] (4:node@c-3.me) 1844026 | 1319738 +> [ 600.000000] (4:node@c-3.me) 2368314 | 1319738 +> [ 600.000000] (4:node@c-3.me) 3416890 | 1319738 +> [ 600.000000] (4:node@c-3.me) 5514042 | 1319738 +> [ 600.000000] (4:node@c-3.me) 9708346 | 1319738 +> [ 600.000000] (4:node@c-3.me) Predecessor: 533744 +> [ 610.000000] (6:node@c-5.me) My finger table: +> [ 610.000000] (6:node@c-5.me) Start | Succ +> [ 610.000000] (6:node@c-5.me) 10874877 | 533744 +> [ 610.000000] (6:node@c-5.me) 10874878 | 533744 +> [ 610.000000] (6:node@c-5.me) 10874880 | 533744 +> [ 610.000000] (6:node@c-5.me) 10874884 | 533744 +> [ 610.000000] (6:node@c-5.me) 10874892 | 533744 +> [ 610.000000] (6:node@c-5.me) 10874908 | 10874876 +> [ 610.000000] (6:node@c-5.me) 10874940 | 10874876 +> [ 610.000000] (6:node@c-5.me) 10875004 | 10874876 +> [ 610.000000] (6:node@c-5.me) 10875132 | 10874876 +> [ 610.000000] (6:node@c-5.me) 10875388 | 10874876 +> [ 610.000000] (6:node@c-5.me) 10875900 | 10874876 +> [ 610.000000] (6:node@c-5.me) 10876924 | 10874876 +> [ 610.000000] (6:node@c-5.me) 10878972 | 10874876 +> [ 610.000000] (6:node@c-5.me) 10883068 | 10874876 +> [ 610.000000] (6:node@c-5.me) 10891260 | 10874876 +> [ 610.000000] (6:node@c-5.me) 10907644 | 10874876 +> [ 610.000000] (6:node@c-5.me) 10940412 | 10874876 +> [ 610.000000] (6:node@c-5.me) 11005948 | 10874876 +> [ 610.000000] (6:node@c-5.me) 11137020 | 10874876 +> [ 610.000000] (6:node@c-5.me) 11399164 | 10874876 +> [ 610.000000] (6:node@c-5.me) 11923452 | 10874876 +> [ 610.000000] (6:node@c-5.me) 12972028 | 10874876 +> [ 610.000000] (6:node@c-5.me) 15069180 | 10874876 +> [ 610.000000] (6:node@c-5.me) 2486268 | 10874876 +> [ 610.000000] (6:node@c-5.me) Predecessor: -1 +> [ 656.000000] (5:node@c-4.me) My finger table: +> [ 656.000000] (5:node@c-4.me) Start | Succ +> [ 656.000000] (5:node@c-4.me) 16509406 | 16728096 +> [ 656.000000] (5:node@c-4.me) 16509407 | 366680 +> [ 656.000000] (5:node@c-4.me) 16509409 | 16728096 +> [ 656.000000] (5:node@c-4.me) 16509413 | 16728096 +> [ 656.000000] (5:node@c-4.me) 16509421 | 16728096 +> [ 656.000000] (5:node@c-4.me) 16509437 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16509469 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16509533 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16509661 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16509917 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16510429 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16511453 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16513501 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16517597 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16525789 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16542173 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16574941 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16640477 | 16509405 +> [ 656.000000] (5:node@c-4.me) 16771549 | 16509405 +> [ 656.000000] (5:node@c-4.me) 256477 | 16509405 +> [ 656.000000] (5:node@c-4.me) 780765 | 16509405 +> [ 656.000000] (5:node@c-4.me) 1829341 | 16509405 +> [ 656.000000] (5:node@c-4.me) 3926493 | 16509405 +> [ 656.000000] (5:node@c-4.me) 8120797 | 16509405 +> [ 656.000000] (5:node@c-4.me) Predecessor: 10004760 +> [ 657.000000] (7:node@c-6.me) My finger table: +> [ 657.000000] (7:node@c-6.me) Start | Succ +> [ 657.000000] (7:node@c-6.me) 16728097 | 42 +> [ 657.000000] (7:node@c-6.me) 16728098 | 42 +> [ 657.000000] (7:node@c-6.me) 16728100 | 42 +> [ 657.000000] (7:node@c-6.me) 16728104 | 42 +> [ 657.000000] (7:node@c-6.me) 16728112 | 42 +> [ 657.000000] (7:node@c-6.me) 16728128 | 16728096 +> [ 657.000000] (7:node@c-6.me) 16728160 | 16728096 +> [ 657.000000] (7:node@c-6.me) 16728224 | 16728096 +> [ 657.000000] (7:node@c-6.me) 16728352 | 16728096 +> [ 657.000000] (7:node@c-6.me) 16728608 | 16728096 +> [ 657.000000] (7:node@c-6.me) 16729120 | 16728096 +> [ 657.000000] (7:node@c-6.me) 16730144 | 16728096 +> [ 657.000000] (7:node@c-6.me) 16732192 | 16728096 +> [ 657.000000] (7:node@c-6.me) 16736288 | 16728096 +> [ 657.000000] (7:node@c-6.me) 16744480 | 16728096 +> [ 657.000000] (7:node@c-6.me) 16760864 | 16728096 +> [ 657.000000] (7:node@c-6.me) 16416 | 16728096 +> [ 657.000000] (7:node@c-6.me) 81952 | 16728096 +> [ 657.000000] (7:node@c-6.me) 213024 | 16728096 +> [ 657.000000] (7:node@c-6.me) 475168 | 16728096 +> [ 657.000000] (7:node@c-6.me) 999456 | 16728096 +> [ 657.000000] (7:node@c-6.me) 2048032 | 16728096 +> [ 657.000000] (7:node@c-6.me) 4145184 | 16728096 +> [ 657.000000] (7:node@c-6.me) 8339488 | 16728096 +> [ 657.000000] (7:node@c-6.me) Predecessor: 16509405 +> [ 663.000000] (4:node@c-3.me) My finger table: +> [ 663.000000] (4:node@c-3.me) Start | Succ +> [ 663.000000] (4:node@c-3.me) 1319739 | 2015253 +> [ 663.000000] (4:node@c-3.me) 1319740 | 6518808 +> [ 663.000000] (4:node@c-3.me) 1319742 | 2015253 +> [ 663.000000] (4:node@c-3.me) 1319746 | 2015253 +> [ 663.000000] (4:node@c-3.me) 1319754 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1319770 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1319802 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1319866 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1319994 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1320250 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1320762 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1321786 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1323834 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1327930 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1336122 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1352506 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1385274 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1450810 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1581882 | 1319738 +> [ 663.000000] (4:node@c-3.me) 1844026 | 1319738 +> [ 663.000000] (4:node@c-3.me) 2368314 | 1319738 +> [ 663.000000] (4:node@c-3.me) 3416890 | 1319738 +> [ 663.000000] (4:node@c-3.me) 5514042 | 1319738 +> [ 663.000000] (4:node@c-3.me) 9708346 | 1319738 +> [ 663.000000] (4:node@c-3.me) Predecessor: 533744 +> [ 665.000000] (1:node@c-0.me) My finger table: +> [ 665.000000] (1:node@c-0.me) Start | Succ +> [ 665.000000] (1:node@c-0.me) 43 | 366680 +> [ 665.000000] (1:node@c-0.me) 44 | 1319738 +> [ 665.000000] (1:node@c-0.me) 46 | 366680 +> [ 665.000000] (1:node@c-0.me) 50 | 366680 +> [ 665.000000] (1:node@c-0.me) 58 | 366680 +> [ 665.000000] (1:node@c-0.me) 74 | 42 +> [ 665.000000] (1:node@c-0.me) 106 | 42 +> [ 665.000000] (1:node@c-0.me) 170 | 42 +> [ 665.000000] (1:node@c-0.me) 298 | 42 +> [ 665.000000] (1:node@c-0.me) 554 | 42 +> [ 665.000000] (1:node@c-0.me) 1066 | 42 +> [ 665.000000] (1:node@c-0.me) 2090 | 42 +> [ 665.000000] (1:node@c-0.me) 4138 | 42 +> [ 665.000000] (1:node@c-0.me) 8234 | 42 +> [ 665.000000] (1:node@c-0.me) 16426 | 42 +> [ 665.000000] (1:node@c-0.me) 32810 | 42 +> [ 665.000000] (1:node@c-0.me) 65578 | 42 +> [ 665.000000] (1:node@c-0.me) 131114 | 42 +> [ 665.000000] (1:node@c-0.me) 262186 | 42 +> [ 665.000000] (1:node@c-0.me) 524330 | 42 +> [ 665.000000] (1:node@c-0.me) 1048618 | 42 +> [ 665.000000] (1:node@c-0.me) 2097194 | 42 +> [ 665.000000] (1:node@c-0.me) 4194346 | 42 +> [ 665.000000] (1:node@c-0.me) 8388650 | 42 +> [ 665.000000] (1:node@c-0.me) Predecessor: 16728096 +> [ 669.000000] (8:node@c-7.me) My finger table: +> [ 669.000000] (8:node@c-7.me) Start | Succ +> [ 669.000000] (8:node@c-7.me) 10004761 | 16509405 +> [ 669.000000] (8:node@c-7.me) 10004762 | 16509405 +> [ 669.000000] (8:node@c-7.me) 10004764 | 16509405 +> [ 669.000000] (8:node@c-7.me) 10004768 | 16509405 +> [ 669.000000] (8:node@c-7.me) 10004776 | 16509405 +> [ 669.000000] (8:node@c-7.me) 10004792 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10004824 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10004888 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10005016 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10005272 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10005784 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10006808 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10008856 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10012952 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10021144 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10037528 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10070296 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10135832 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10266904 | 10004760 +> [ 669.000000] (8:node@c-7.me) 10529048 | 10004760 +> [ 669.000000] (8:node@c-7.me) 11053336 | 10004760 +> [ 669.000000] (8:node@c-7.me) 12101912 | 10004760 +> [ 669.000000] (8:node@c-7.me) 14199064 | 10004760 +> [ 669.000000] (8:node@c-7.me) 1616152 | 10004760 +> [ 669.000000] (8:node@c-7.me) Predecessor: 6518808 +> [ 671.000000] (3:node@c-2.me) My finger table: +> [ 671.000000] (3:node@c-2.me) Start | Succ +> [ 671.000000] (3:node@c-2.me) 533745 | 1319738 +> [ 671.000000] (3:node@c-2.me) 533746 | 10004760 +> [ 671.000000] (3:node@c-2.me) 533748 | 10004760 +> [ 671.000000] (3:node@c-2.me) 533752 | 6518808 +> [ 671.000000] (3:node@c-2.me) 533760 | 1319738 +> [ 671.000000] (3:node@c-2.me) 533776 | 533744 +> [ 671.000000] (3:node@c-2.me) 533808 | 533744 +> [ 671.000000] (3:node@c-2.me) 533872 | 533744 +> [ 671.000000] (3:node@c-2.me) 534000 | 533744 +> [ 671.000000] (3:node@c-2.me) 534256 | 533744 +> [ 671.000000] (3:node@c-2.me) 534768 | 533744 +> [ 671.000000] (3:node@c-2.me) 535792 | 533744 +> [ 671.000000] (3:node@c-2.me) 537840 | 533744 +> [ 671.000000] (3:node@c-2.me) 541936 | 533744 +> [ 671.000000] (3:node@c-2.me) 550128 | 533744 +> [ 671.000000] (3:node@c-2.me) 566512 | 533744 +> [ 671.000000] (3:node@c-2.me) 599280 | 533744 +> [ 671.000000] (3:node@c-2.me) 664816 | 533744 +> [ 671.000000] (3:node@c-2.me) 795888 | 533744 +> [ 671.000000] (3:node@c-2.me) 1058032 | 533744 +> [ 671.000000] (3:node@c-2.me) 1582320 | 533744 +> [ 671.000000] (3:node@c-2.me) 2630896 | 533744 +> [ 671.000000] (3:node@c-2.me) 4728048 | 533744 +> [ 671.000000] (3:node@c-2.me) 8922352 | 533744 +> [ 671.000000] (3:node@c-2.me) Predecessor: 10874876 +> [ 678.000000] (9:node@c-8.me) My finger table: +> [ 678.000000] (9:node@c-8.me) Start | Succ +> [ 678.000000] (9:node@c-8.me) 6518809 | 10004760 +> [ 678.000000] (9:node@c-8.me) 6518810 | 16728096 +> [ 678.000000] (9:node@c-8.me) 6518812 | 10004760 +> [ 678.000000] (9:node@c-8.me) 6518816 | 10004760 +> [ 678.000000] (9:node@c-8.me) 6518824 | 10004760 +> [ 678.000000] (9:node@c-8.me) 6518840 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6518872 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6518936 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6519064 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6519320 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6519832 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6520856 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6522904 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6527000 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6535192 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6551576 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6584344 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6649880 | 6518808 +> [ 678.000000] (9:node@c-8.me) 6780952 | 6518808 +> [ 678.000000] (9:node@c-8.me) 7043096 | 6518808 +> [ 678.000000] (9:node@c-8.me) 7567384 | 6518808 +> [ 678.000000] (9:node@c-8.me) 8615960 | 6518808 +> [ 678.000000] (9:node@c-8.me) 10713112 | 6518808 +> [ 678.000000] (9:node@c-8.me) 14907416 | 6518808 +> [ 678.000000] (9:node@c-8.me) Predecessor: 2015253 +> [ 683.000000] (2:node@c-1.me) My finger table: +> [ 683.000000] (2:node@c-1.me) Start | Succ +> [ 683.000000] (2:node@c-1.me) 366681 | 533744 +> [ 683.000000] (2:node@c-1.me) 366682 | 1319738 +> [ 683.000000] (2:node@c-1.me) 366684 | 1319738 +> [ 683.000000] (2:node@c-1.me) 366688 | 1319738 +> [ 683.000000] (2:node@c-1.me) 366696 | 533744 +> [ 683.000000] (2:node@c-1.me) 366712 | 366680 +> [ 683.000000] (2:node@c-1.me) 366744 | 366680 +> [ 683.000000] (2:node@c-1.me) 366808 | 366680 +> [ 683.000000] (2:node@c-1.me) 366936 | 366680 +> [ 683.000000] (2:node@c-1.me) 367192 | 366680 +> [ 683.000000] (2:node@c-1.me) 367704 | 366680 +> [ 683.000000] (2:node@c-1.me) 368728 | 366680 +> [ 683.000000] (2:node@c-1.me) 370776 | 366680 +> [ 683.000000] (2:node@c-1.me) 374872 | 366680 +> [ 683.000000] (2:node@c-1.me) 383064 | 366680 +> [ 683.000000] (2:node@c-1.me) 399448 | 366680 +> [ 683.000000] (2:node@c-1.me) 432216 | 366680 +> [ 683.000000] (2:node@c-1.me) 497752 | 366680 +> [ 683.000000] (2:node@c-1.me) 628824 | 366680 +> [ 683.000000] (2:node@c-1.me) 890968 | 366680 +> [ 683.000000] (2:node@c-1.me) 1415256 | 366680 +> [ 683.000000] (2:node@c-1.me) 2463832 | 366680 +> [ 683.000000] (2:node@c-1.me) 4560984 | 366680 +> [ 683.000000] (2:node@c-1.me) 8755288 | 366680 +> [ 683.000000] (2:node@c-1.me) Predecessor: 42 +> [ 684.000000] (3:node@c-2.me) My finger table: +> [ 684.000000] (3:node@c-2.me) Start | Succ +> [ 684.000000] (3:node@c-2.me) 533745 | 1319738 +> [ 684.000000] (3:node@c-2.me) 533746 | 10004760 +> [ 684.000000] (3:node@c-2.me) 533748 | 10004760 +> [ 684.000000] (3:node@c-2.me) 533752 | 6518808 +> [ 684.000000] (3:node@c-2.me) 533760 | 1319738 +> [ 684.000000] (3:node@c-2.me) 533776 | 533744 +> [ 684.000000] (3:node@c-2.me) 533808 | 533744 +> [ 684.000000] (3:node@c-2.me) 533872 | 533744 +> [ 684.000000] (3:node@c-2.me) 534000 | 533744 +> [ 684.000000] (3:node@c-2.me) 534256 | 533744 +> [ 684.000000] (3:node@c-2.me) 534768 | 533744 +> [ 684.000000] (3:node@c-2.me) 535792 | 533744 +> [ 684.000000] (3:node@c-2.me) 537840 | 533744 +> [ 684.000000] (3:node@c-2.me) 541936 | 533744 +> [ 684.000000] (3:node@c-2.me) 550128 | 533744 +> [ 684.000000] (3:node@c-2.me) 566512 | 533744 +> [ 684.000000] (3:node@c-2.me) 599280 | 533744 +> [ 684.000000] (3:node@c-2.me) 664816 | 533744 +> [ 684.000000] (3:node@c-2.me) 795888 | 533744 +> [ 684.000000] (3:node@c-2.me) 1058032 | 533744 +> [ 684.000000] (3:node@c-2.me) 1582320 | 533744 +> [ 684.000000] (3:node@c-2.me) 2630896 | 533744 +> [ 684.000000] (3:node@c-2.me) 4728048 | 533744 +> [ 684.000000] (3:node@c-2.me) 8922352 | 533744 +> [ 684.000000] (3:node@c-2.me) Predecessor: 366680 +> [ 721.000000] (10:node@c-9.me) My finger table: +> [ 721.000000] (10:node@c-9.me) Start | Succ +> [ 721.000000] (10:node@c-9.me) 2015254 | 6518808 +> [ 721.000000] (10:node@c-9.me) 2015255 | 16728096 +> [ 721.000000] (10:node@c-9.me) 2015257 | 6518808 +> [ 721.000000] (10:node@c-9.me) 2015261 | 6518808 +> [ 721.000000] (10:node@c-9.me) 2015269 | 6518808 +> [ 721.000000] (10:node@c-9.me) 2015285 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2015317 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2015381 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2015509 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2015765 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2016277 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2017301 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2019349 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2023445 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2031637 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2048021 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2080789 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2146325 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2277397 | 2015253 +> [ 721.000000] (10:node@c-9.me) 2539541 | 2015253 +> [ 721.000000] (10:node@c-9.me) 3063829 | 2015253 +> [ 721.000000] (10:node@c-9.me) 4112405 | 2015253 +> [ 721.000000] (10:node@c-9.me) 6209557 | 2015253 +> [ 721.000000] (10:node@c-9.me) 10403861 | 2015253 +> [ 721.000000] (10:node@c-9.me) Predecessor: 1319738 +> [ 744.000000] (6:node@c-5.me) My finger table: +> [ 744.000000] (6:node@c-5.me) Start | Succ +> [ 744.000000] (6:node@c-5.me) 10874877 | 16728096 +> [ 744.000000] (6:node@c-5.me) 10874878 | 533744 +> [ 744.000000] (6:node@c-5.me) 10874880 | 533744 +> [ 744.000000] (6:node@c-5.me) 10874884 | 533744 +> [ 744.000000] (6:node@c-5.me) 10874892 | 533744 +> [ 744.000000] (6:node@c-5.me) 10874908 | 16728096 +> [ 744.000000] (6:node@c-5.me) 10874940 | 10874876 +> [ 744.000000] (6:node@c-5.me) 10875004 | 10874876 +> [ 744.000000] (6:node@c-5.me) 10875132 | 10874876 +> [ 744.000000] (6:node@c-5.me) 10875388 | 10874876 +> [ 744.000000] (6:node@c-5.me) 10875900 | 10874876 +> [ 744.000000] (6:node@c-5.me) 10876924 | 10874876 +> [ 744.000000] (6:node@c-5.me) 10878972 | 10874876 +> [ 744.000000] (6:node@c-5.me) 10883068 | 10874876 +> [ 744.000000] (6:node@c-5.me) 10891260 | 10874876 +> [ 744.000000] (6:node@c-5.me) 10907644 | 10874876 +> [ 744.000000] (6:node@c-5.me) 10940412 | 10874876 +> [ 744.000000] (6:node@c-5.me) 11005948 | 10874876 +> [ 744.000000] (6:node@c-5.me) 11137020 | 10874876 +> [ 744.000000] (6:node@c-5.me) 11399164 | 10874876 +> [ 744.000000] (6:node@c-5.me) 11923452 | 10874876 +> [ 744.000000] (6:node@c-5.me) 12972028 | 10874876 +> [ 744.000000] (6:node@c-5.me) 15069180 | 10874876 +> [ 744.000000] (6:node@c-5.me) 2486268 | 10874876 +> [ 744.000000] (6:node@c-5.me) Predecessor: -1 +> [ 777.000000] (7:node@c-6.me) My finger table: +> [ 777.000000] (7:node@c-6.me) Start | Succ +> [ 777.000000] (7:node@c-6.me) 16728097 | 42 +> [ 777.000000] (7:node@c-6.me) 16728098 | 42 +> [ 777.000000] (7:node@c-6.me) 16728100 | 42 +> [ 777.000000] (7:node@c-6.me) 16728104 | 42 +> [ 777.000000] (7:node@c-6.me) 16728112 | 42 +> [ 777.000000] (7:node@c-6.me) 16728128 | 42 +> [ 777.000000] (7:node@c-6.me) 16728160 | 16728096 +> [ 777.000000] (7:node@c-6.me) 16728224 | 16728096 +> [ 777.000000] (7:node@c-6.me) 16728352 | 16728096 +> [ 777.000000] (7:node@c-6.me) 16728608 | 16728096 +> [ 777.000000] (7:node@c-6.me) 16729120 | 16728096 +> [ 777.000000] (7:node@c-6.me) 16730144 | 16728096 +> [ 777.000000] (7:node@c-6.me) 16732192 | 16728096 +> [ 777.000000] (7:node@c-6.me) 16736288 | 16728096 +> [ 777.000000] (7:node@c-6.me) 16744480 | 16728096 +> [ 777.000000] (7:node@c-6.me) 16760864 | 16728096 +> [ 777.000000] (7:node@c-6.me) 16416 | 16728096 +> [ 777.000000] (7:node@c-6.me) 81952 | 16728096 +> [ 777.000000] (7:node@c-6.me) 213024 | 16728096 +> [ 777.000000] (7:node@c-6.me) 475168 | 16728096 +> [ 777.000000] (7:node@c-6.me) 999456 | 16728096 +> [ 777.000000] (7:node@c-6.me) 2048032 | 16728096 +> [ 777.000000] (7:node@c-6.me) 4145184 | 16728096 +> [ 777.000000] (7:node@c-6.me) 8339488 | 16728096 +> [ 777.000000] (7:node@c-6.me) Predecessor: 16509405 +> [ 786.000000] (5:node@c-4.me) My finger table: +> [ 786.000000] (5:node@c-4.me) Start | Succ +> [ 786.000000] (5:node@c-4.me) 16509406 | 16728096 +> [ 786.000000] (5:node@c-4.me) 16509407 | 366680 +> [ 786.000000] (5:node@c-4.me) 16509409 | 16728096 +> [ 786.000000] (5:node@c-4.me) 16509413 | 16728096 +> [ 786.000000] (5:node@c-4.me) 16509421 | 16728096 +> [ 786.000000] (5:node@c-4.me) 16509437 | 16728096 +> [ 786.000000] (5:node@c-4.me) 16509469 | 16509405 +> [ 786.000000] (5:node@c-4.me) 16509533 | 16509405 +> [ 786.000000] (5:node@c-4.me) 16509661 | 16509405 +> [ 786.000000] (5:node@c-4.me) 16509917 | 16509405 +> [ 786.000000] (5:node@c-4.me) 16510429 | 16509405 +> [ 786.000000] (5:node@c-4.me) 16511453 | 16509405 +> [ 786.000000] (5:node@c-4.me) 16513501 | 16509405 +> [ 786.000000] (5:node@c-4.me) 16517597 | 16509405 +> [ 786.000000] (5:node@c-4.me) 16525789 | 16509405 +> [ 786.000000] (5:node@c-4.me) 16542173 | 16509405 +> [ 786.000000] (5:node@c-4.me) 16574941 | 16509405 +> [ 786.000000] (5:node@c-4.me) 16640477 | 16509405 +> [ 786.000000] (5:node@c-4.me) 16771549 | 16509405 +> [ 786.000000] (5:node@c-4.me) 256477 | 16509405 +> [ 786.000000] (5:node@c-4.me) 780765 | 16509405 +> [ 786.000000] (5:node@c-4.me) 1829341 | 16509405 +> [ 786.000000] (5:node@c-4.me) 3926493 | 16509405 +> [ 786.000000] (5:node@c-4.me) 8120797 | 16509405 +> [ 786.000000] (5:node@c-4.me) Predecessor: 10004760 +> [ 787.000000] (4:node@c-3.me) My finger table: +> [ 787.000000] (4:node@c-3.me) Start | Succ +> [ 787.000000] (4:node@c-3.me) 1319739 | 2015253 +> [ 787.000000] (4:node@c-3.me) 1319740 | 6518808 +> [ 787.000000] (4:node@c-3.me) 1319742 | 2015253 +> [ 787.000000] (4:node@c-3.me) 1319746 | 2015253 +> [ 787.000000] (4:node@c-3.me) 1319754 | 2015253 +> [ 787.000000] (4:node@c-3.me) 1319770 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1319802 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1319866 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1319994 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1320250 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1320762 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1321786 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1323834 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1327930 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1336122 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1352506 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1385274 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1450810 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1581882 | 1319738 +> [ 787.000000] (4:node@c-3.me) 1844026 | 1319738 +> [ 787.000000] (4:node@c-3.me) 2368314 | 1319738 +> [ 787.000000] (4:node@c-3.me) 3416890 | 1319738 +> [ 787.000000] (4:node@c-3.me) 5514042 | 1319738 +> [ 787.000000] (4:node@c-3.me) 9708346 | 1319738 +> [ 787.000000] (4:node@c-3.me) Predecessor: 533744 +> [ 788.000000] (1:node@c-0.me) My finger table: +> [ 788.000000] (1:node@c-0.me) Start | Succ +> [ 788.000000] (1:node@c-0.me) 43 | 366680 +> [ 788.000000] (1:node@c-0.me) 44 | 1319738 +> [ 788.000000] (1:node@c-0.me) 46 | 366680 +> [ 788.000000] (1:node@c-0.me) 50 | 366680 +> [ 788.000000] (1:node@c-0.me) 58 | 366680 +> [ 788.000000] (1:node@c-0.me) 74 | 366680 +> [ 788.000000] (1:node@c-0.me) 106 | 42 +> [ 788.000000] (1:node@c-0.me) 170 | 42 +> [ 788.000000] (1:node@c-0.me) 298 | 42 +> [ 788.000000] (1:node@c-0.me) 554 | 42 +> [ 788.000000] (1:node@c-0.me) 1066 | 42 +> [ 788.000000] (1:node@c-0.me) 2090 | 42 +> [ 788.000000] (1:node@c-0.me) 4138 | 42 +> [ 788.000000] (1:node@c-0.me) 8234 | 42 +> [ 788.000000] (1:node@c-0.me) 16426 | 42 +> [ 788.000000] (1:node@c-0.me) 32810 | 42 +> [ 788.000000] (1:node@c-0.me) 65578 | 42 +> [ 788.000000] (1:node@c-0.me) 131114 | 42 +> [ 788.000000] (1:node@c-0.me) 262186 | 42 +> [ 788.000000] (1:node@c-0.me) 524330 | 42 +> [ 788.000000] (1:node@c-0.me) 1048618 | 42 +> [ 788.000000] (1:node@c-0.me) 2097194 | 42 +> [ 788.000000] (1:node@c-0.me) 4194346 | 42 +> [ 788.000000] (1:node@c-0.me) 8388650 | 42 +> [ 788.000000] (1:node@c-0.me) Predecessor: 16728096 +> [ 793.000000] (3:node@c-2.me) My finger table: +> [ 793.000000] (3:node@c-2.me) Start | Succ +> [ 793.000000] (3:node@c-2.me) 533745 | 1319738 +> [ 793.000000] (3:node@c-2.me) 533746 | 10004760 +> [ 793.000000] (3:node@c-2.me) 533748 | 10004760 +> [ 793.000000] (3:node@c-2.me) 533752 | 6518808 +> [ 793.000000] (3:node@c-2.me) 533760 | 1319738 +> [ 793.000000] (3:node@c-2.me) 533776 | 1319738 +> [ 793.000000] (3:node@c-2.me) 533808 | 533744 +> [ 793.000000] (3:node@c-2.me) 533872 | 533744 +> [ 793.000000] (3:node@c-2.me) 534000 | 533744 +> [ 793.000000] (3:node@c-2.me) 534256 | 533744 +> [ 793.000000] (3:node@c-2.me) 534768 | 533744 +> [ 793.000000] (3:node@c-2.me) 535792 | 533744 +> [ 793.000000] (3:node@c-2.me) 537840 | 533744 +> [ 793.000000] (3:node@c-2.me) 541936 | 533744 +> [ 793.000000] (3:node@c-2.me) 550128 | 533744 +> [ 793.000000] (3:node@c-2.me) 566512 | 533744 +> [ 793.000000] (3:node@c-2.me) 599280 | 533744 +> [ 793.000000] (3:node@c-2.me) 664816 | 533744 +> [ 793.000000] (3:node@c-2.me) 795888 | 533744 +> [ 793.000000] (3:node@c-2.me) 1058032 | 533744 +> [ 793.000000] (3:node@c-2.me) 1582320 | 533744 +> [ 793.000000] (3:node@c-2.me) 2630896 | 533744 +> [ 793.000000] (3:node@c-2.me) 4728048 | 533744 +> [ 793.000000] (3:node@c-2.me) 8922352 | 533744 +> [ 793.000000] (3:node@c-2.me) Predecessor: 366680 +> [ 797.000000] (5:node@c-4.me) My finger table: +> [ 797.000000] (5:node@c-4.me) Start | Succ +> [ 797.000000] (5:node@c-4.me) 16509406 | 16728096 +> [ 797.000000] (5:node@c-4.me) 16509407 | 366680 +> [ 797.000000] (5:node@c-4.me) 16509409 | 16728096 +> [ 797.000000] (5:node@c-4.me) 16509413 | 16728096 +> [ 797.000000] (5:node@c-4.me) 16509421 | 16728096 +> [ 797.000000] (5:node@c-4.me) 16509437 | 16728096 +> [ 797.000000] (5:node@c-4.me) 16509469 | 16509405 +> [ 797.000000] (5:node@c-4.me) 16509533 | 16509405 +> [ 797.000000] (5:node@c-4.me) 16509661 | 16509405 +> [ 797.000000] (5:node@c-4.me) 16509917 | 16509405 +> [ 797.000000] (5:node@c-4.me) 16510429 | 16509405 +> [ 797.000000] (5:node@c-4.me) 16511453 | 16509405 +> [ 797.000000] (5:node@c-4.me) 16513501 | 16509405 +> [ 797.000000] (5:node@c-4.me) 16517597 | 16509405 +> [ 797.000000] (5:node@c-4.me) 16525789 | 16509405 +> [ 797.000000] (5:node@c-4.me) 16542173 | 16509405 +> [ 797.000000] (5:node@c-4.me) 16574941 | 16509405 +> [ 797.000000] (5:node@c-4.me) 16640477 | 16509405 +> [ 797.000000] (5:node@c-4.me) 16771549 | 16509405 +> [ 797.000000] (5:node@c-4.me) 256477 | 16509405 +> [ 797.000000] (5:node@c-4.me) 780765 | 16509405 +> [ 797.000000] (5:node@c-4.me) 1829341 | 16509405 +> [ 797.000000] (5:node@c-4.me) 3926493 | 16509405 +> [ 797.000000] (5:node@c-4.me) 8120797 | 16509405 +> [ 797.000000] (5:node@c-4.me) Predecessor: 10874876 +> [ 798.000000] (8:node@c-7.me) My finger table: +> [ 798.000000] (8:node@c-7.me) Start | Succ +> [ 798.000000] (8:node@c-7.me) 10004761 | 16509405 +> [ 798.000000] (8:node@c-7.me) 10004762 | 16509405 +> [ 798.000000] (8:node@c-7.me) 10004764 | 16509405 +> [ 798.000000] (8:node@c-7.me) 10004768 | 16509405 +> [ 798.000000] (8:node@c-7.me) 10004776 | 16509405 +> [ 798.000000] (8:node@c-7.me) 10004792 | 16509405 +> [ 798.000000] (8:node@c-7.me) 10004824 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10004888 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10005016 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10005272 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10005784 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10006808 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10008856 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10012952 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10021144 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10037528 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10070296 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10135832 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10266904 | 10004760 +> [ 798.000000] (8:node@c-7.me) 10529048 | 10004760 +> [ 798.000000] (8:node@c-7.me) 11053336 | 10004760 +> [ 798.000000] (8:node@c-7.me) 12101912 | 10004760 +> [ 798.000000] (8:node@c-7.me) 14199064 | 10004760 +> [ 798.000000] (8:node@c-7.me) 1616152 | 10004760 +> [ 798.000000] (8:node@c-7.me) Predecessor: 6518808 +> [ 801.000000] (9:node@c-8.me) My finger table: +> [ 801.000000] (9:node@c-8.me) Start | Succ +> [ 801.000000] (9:node@c-8.me) 6518809 | 10004760 +> [ 801.000000] (9:node@c-8.me) 6518810 | 16728096 +> [ 801.000000] (9:node@c-8.me) 6518812 | 10004760 +> [ 801.000000] (9:node@c-8.me) 6518816 | 10004760 +> [ 801.000000] (9:node@c-8.me) 6518824 | 10004760 +> [ 801.000000] (9:node@c-8.me) 6518840 | 10004760 +> [ 801.000000] (9:node@c-8.me) 6518872 | 6518808 +> [ 801.000000] (9:node@c-8.me) 6518936 | 6518808 +> [ 801.000000] (9:node@c-8.me) 6519064 | 6518808 +> [ 801.000000] (9:node@c-8.me) 6519320 | 6518808 +> [ 801.000000] (9:node@c-8.me) 6519832 | 6518808 +> [ 801.000000] (9:node@c-8.me) 6520856 | 6518808 +> [ 801.000000] (9:node@c-8.me) 6522904 | 6518808 +> [ 801.000000] (9:node@c-8.me) 6527000 | 6518808 +> [ 801.000000] (9:node@c-8.me) 6535192 | 6518808 +> [ 801.000000] (9:node@c-8.me) 6551576 | 6518808 +> [ 801.000000] (9:node@c-8.me) 6584344 | 6518808 +> [ 801.000000] (9:node@c-8.me) 6649880 | 6518808 +> [ 801.000000] (9:node@c-8.me) 6780952 | 6518808 +> [ 801.000000] (9:node@c-8.me) 7043096 | 6518808 +> [ 801.000000] (9:node@c-8.me) 7567384 | 6518808 +> [ 801.000000] (9:node@c-8.me) 8615960 | 6518808 +> [ 801.000000] (9:node@c-8.me) 10713112 | 6518808 +> [ 801.000000] (9:node@c-8.me) 14907416 | 6518808 +> [ 801.000000] (9:node@c-8.me) Predecessor: 2015253 +> [ 804.000000] (2:node@c-1.me) My finger table: +> [ 804.000000] (2:node@c-1.me) Start | Succ +> [ 804.000000] (2:node@c-1.me) 366681 | 533744 +> [ 804.000000] (2:node@c-1.me) 366682 | 1319738 +> [ 804.000000] (2:node@c-1.me) 366684 | 1319738 +> [ 804.000000] (2:node@c-1.me) 366688 | 1319738 +> [ 804.000000] (2:node@c-1.me) 366696 | 533744 +> [ 804.000000] (2:node@c-1.me) 366712 | 533744 +> [ 804.000000] (2:node@c-1.me) 366744 | 366680 +> [ 804.000000] (2:node@c-1.me) 366808 | 366680 +> [ 804.000000] (2:node@c-1.me) 366936 | 366680 +> [ 804.000000] (2:node@c-1.me) 367192 | 366680 +> [ 804.000000] (2:node@c-1.me) 367704 | 366680 +> [ 804.000000] (2:node@c-1.me) 368728 | 366680 +> [ 804.000000] (2:node@c-1.me) 370776 | 366680 +> [ 804.000000] (2:node@c-1.me) 374872 | 366680 +> [ 804.000000] (2:node@c-1.me) 383064 | 366680 +> [ 804.000000] (2:node@c-1.me) 399448 | 366680 +> [ 804.000000] (2:node@c-1.me) 432216 | 366680 +> [ 804.000000] (2:node@c-1.me) 497752 | 366680 +> [ 804.000000] (2:node@c-1.me) 628824 | 366680 +> [ 804.000000] (2:node@c-1.me) 890968 | 366680 +> [ 804.000000] (2:node@c-1.me) 1415256 | 366680 +> [ 804.000000] (2:node@c-1.me) 2463832 | 366680 +> [ 804.000000] (2:node@c-1.me) 4560984 | 366680 +> [ 804.000000] (2:node@c-1.me) 8755288 | 366680 +> [ 804.000000] (2:node@c-1.me) Predecessor: 42 +> [ 843.000000] (10:node@c-9.me) My finger table: +> [ 843.000000] (10:node@c-9.me) Start | Succ +> [ 843.000000] (10:node@c-9.me) 2015254 | 6518808 +> [ 843.000000] (10:node@c-9.me) 2015255 | 16728096 +> [ 843.000000] (10:node@c-9.me) 2015257 | 6518808 +> [ 843.000000] (10:node@c-9.me) 2015261 | 6518808 +> [ 843.000000] (10:node@c-9.me) 2015269 | 6518808 +> [ 843.000000] (10:node@c-9.me) 2015285 | 6518808 +> [ 843.000000] (10:node@c-9.me) 2015317 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2015381 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2015509 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2015765 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2016277 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2017301 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2019349 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2023445 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2031637 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2048021 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2080789 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2146325 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2277397 | 2015253 +> [ 843.000000] (10:node@c-9.me) 2539541 | 2015253 +> [ 843.000000] (10:node@c-9.me) 3063829 | 2015253 +> [ 843.000000] (10:node@c-9.me) 4112405 | 2015253 +> [ 843.000000] (10:node@c-9.me) 6209557 | 2015253 +> [ 843.000000] (10:node@c-9.me) 10403861 | 2015253 +> [ 843.000000] (10:node@c-9.me) Predecessor: 1319738 +> [ 865.000000] (6:node@c-5.me) My finger table: +> [ 865.000000] (6:node@c-5.me) Start | Succ +> [ 865.000000] (6:node@c-5.me) 10874877 | 16509405 +> [ 865.000000] (6:node@c-5.me) 10874878 | 533744 +> [ 865.000000] (6:node@c-5.me) 10874880 | 533744 +> [ 865.000000] (6:node@c-5.me) 10874884 | 533744 +> [ 865.000000] (6:node@c-5.me) 10874892 | 533744 +> [ 865.000000] (6:node@c-5.me) 10874908 | 16728096 +> [ 865.000000] (6:node@c-5.me) 10874940 | 16509405 +> [ 865.000000] (6:node@c-5.me) 10875004 | 10874876 +> [ 865.000000] (6:node@c-5.me) 10875132 | 10874876 +> [ 865.000000] (6:node@c-5.me) 10875388 | 10874876 +> [ 865.000000] (6:node@c-5.me) 10875900 | 10874876 +> [ 865.000000] (6:node@c-5.me) 10876924 | 10874876 +> [ 865.000000] (6:node@c-5.me) 10878972 | 10874876 +> [ 865.000000] (6:node@c-5.me) 10883068 | 10874876 +> [ 865.000000] (6:node@c-5.me) 10891260 | 10874876 +> [ 865.000000] (6:node@c-5.me) 10907644 | 10874876 +> [ 865.000000] (6:node@c-5.me) 10940412 | 10874876 +> [ 865.000000] (6:node@c-5.me) 11005948 | 10874876 +> [ 865.000000] (6:node@c-5.me) 11137020 | 10874876 +> [ 865.000000] (6:node@c-5.me) 11399164 | 10874876 +> [ 865.000000] (6:node@c-5.me) 11923452 | 10874876 +> [ 865.000000] (6:node@c-5.me) 12972028 | 10874876 +> [ 865.000000] (6:node@c-5.me) 15069180 | 10874876 +> [ 865.000000] (6:node@c-5.me) 2486268 | 10874876 +> [ 865.000000] (6:node@c-5.me) Predecessor: -1 +> [ 870.000000] (6:node@c-5.me) My finger table: +> [ 870.000000] (6:node@c-5.me) Start | Succ +> [ 870.000000] (6:node@c-5.me) 10874877 | 16509405 +> [ 870.000000] (6:node@c-5.me) 10874878 | 533744 +> [ 870.000000] (6:node@c-5.me) 10874880 | 533744 +> [ 870.000000] (6:node@c-5.me) 10874884 | 533744 +> [ 870.000000] (6:node@c-5.me) 10874892 | 533744 +> [ 870.000000] (6:node@c-5.me) 10874908 | 16728096 +> [ 870.000000] (6:node@c-5.me) 10874940 | 16509405 +> [ 870.000000] (6:node@c-5.me) 10875004 | 10874876 +> [ 870.000000] (6:node@c-5.me) 10875132 | 10874876 +> [ 870.000000] (6:node@c-5.me) 10875388 | 10874876 +> [ 870.000000] (6:node@c-5.me) 10875900 | 10874876 +> [ 870.000000] (6:node@c-5.me) 10876924 | 10874876 +> [ 870.000000] (6:node@c-5.me) 10878972 | 10874876 +> [ 870.000000] (6:node@c-5.me) 10883068 | 10874876 +> [ 870.000000] (6:node@c-5.me) 10891260 | 10874876 +> [ 870.000000] (6:node@c-5.me) 10907644 | 10874876 +> [ 870.000000] (6:node@c-5.me) 10940412 | 10874876 +> [ 870.000000] (6:node@c-5.me) 11005948 | 10874876 +> [ 870.000000] (6:node@c-5.me) 11137020 | 10874876 +> [ 870.000000] (6:node@c-5.me) 11399164 | 10874876 +> [ 870.000000] (6:node@c-5.me) 11923452 | 10874876 +> [ 870.000000] (6:node@c-5.me) 12972028 | 10874876 +> [ 870.000000] (6:node@c-5.me) 15069180 | 10874876 +> [ 870.000000] (6:node@c-5.me) 2486268 | 10874876 +> [ 870.000000] (6:node@c-5.me) Predecessor: 10004760 +> [ 910.000000] (5:node@c-4.me) My finger table: +> [ 910.000000] (5:node@c-4.me) Start | Succ +> [ 910.000000] (5:node@c-4.me) 16509406 | 16728096 +> [ 910.000000] (5:node@c-4.me) 16509407 | 366680 +> [ 910.000000] (5:node@c-4.me) 16509409 | 16728096 +> [ 910.000000] (5:node@c-4.me) 16509413 | 16728096 +> [ 910.000000] (5:node@c-4.me) 16509421 | 16728096 +> [ 910.000000] (5:node@c-4.me) 16509437 | 16728096 +> [ 910.000000] (5:node@c-4.me) 16509469 | 16728096 +> [ 910.000000] (5:node@c-4.me) 16509533 | 16509405 +> [ 910.000000] (5:node@c-4.me) 16509661 | 16509405 +> [ 910.000000] (5:node@c-4.me) 16509917 | 16509405 +> [ 910.000000] (5:node@c-4.me) 16510429 | 16509405 +> [ 910.000000] (5:node@c-4.me) 16511453 | 16509405 +> [ 910.000000] (5:node@c-4.me) 16513501 | 16509405 +> [ 910.000000] (5:node@c-4.me) 16517597 | 16509405 +> [ 910.000000] (5:node@c-4.me) 16525789 | 16509405 +> [ 910.000000] (5:node@c-4.me) 16542173 | 16509405 +> [ 910.000000] (5:node@c-4.me) 16574941 | 16509405 +> [ 910.000000] (5:node@c-4.me) 16640477 | 16509405 +> [ 910.000000] (5:node@c-4.me) 16771549 | 16509405 +> [ 910.000000] (5:node@c-4.me) 256477 | 16509405 +> [ 910.000000] (5:node@c-4.me) 780765 | 16509405 +> [ 910.000000] (5:node@c-4.me) 1829341 | 16509405 +> [ 910.000000] (5:node@c-4.me) 3926493 | 16509405 +> [ 910.000000] (5:node@c-4.me) 8120797 | 16509405 +> [ 910.000000] (5:node@c-4.me) Predecessor: 10874876 +> [ 912.000000] (1:node@c-0.me) My finger table: +> [ 912.000000] (1:node@c-0.me) Start | Succ +> [ 912.000000] (1:node@c-0.me) 43 | 366680 +> [ 912.000000] (1:node@c-0.me) 44 | 1319738 +> [ 912.000000] (1:node@c-0.me) 46 | 366680 +> [ 912.000000] (1:node@c-0.me) 50 | 366680 +> [ 912.000000] (1:node@c-0.me) 58 | 366680 +> [ 912.000000] (1:node@c-0.me) 74 | 366680 +> [ 912.000000] (1:node@c-0.me) 106 | 366680 +> [ 912.000000] (1:node@c-0.me) 170 | 42 +> [ 912.000000] (1:node@c-0.me) 298 | 42 +> [ 912.000000] (1:node@c-0.me) 554 | 42 +> [ 912.000000] (1:node@c-0.me) 1066 | 42 +> [ 912.000000] (1:node@c-0.me) 2090 | 42 +> [ 912.000000] (1:node@c-0.me) 4138 | 42 +> [ 912.000000] (1:node@c-0.me) 8234 | 42 +> [ 912.000000] (1:node@c-0.me) 16426 | 42 +> [ 912.000000] (1:node@c-0.me) 32810 | 42 +> [ 912.000000] (1:node@c-0.me) 65578 | 42 +> [ 912.000000] (1:node@c-0.me) 131114 | 42 +> [ 912.000000] (1:node@c-0.me) 262186 | 42 +> [ 912.000000] (1:node@c-0.me) 524330 | 42 +> [ 912.000000] (1:node@c-0.me) 1048618 | 42 +> [ 912.000000] (1:node@c-0.me) 2097194 | 42 +> [ 912.000000] (1:node@c-0.me) 4194346 | 42 +> [ 912.000000] (1:node@c-0.me) 8388650 | 42 +> [ 912.000000] (1:node@c-0.me) Predecessor: 16728096 +> [ 913.000000] (3:node@c-2.me) My finger table: +> [ 913.000000] (3:node@c-2.me) Start | Succ +> [ 913.000000] (3:node@c-2.me) 533745 | 1319738 +> [ 913.000000] (3:node@c-2.me) 533746 | 10004760 +> [ 913.000000] (3:node@c-2.me) 533748 | 10004760 +> [ 913.000000] (3:node@c-2.me) 533752 | 6518808 +> [ 913.000000] (3:node@c-2.me) 533760 | 1319738 +> [ 913.000000] (3:node@c-2.me) 533776 | 1319738 +> [ 913.000000] (3:node@c-2.me) 533808 | 1319738 +> [ 913.000000] (3:node@c-2.me) 533872 | 533744 +> [ 913.000000] (3:node@c-2.me) 534000 | 533744 +> [ 913.000000] (3:node@c-2.me) 534256 | 533744 +> [ 913.000000] (3:node@c-2.me) 534768 | 533744 +> [ 913.000000] (3:node@c-2.me) 535792 | 533744 +> [ 913.000000] (3:node@c-2.me) 537840 | 533744 +> [ 913.000000] (3:node@c-2.me) 541936 | 533744 +> [ 913.000000] (3:node@c-2.me) 550128 | 533744 +> [ 913.000000] (3:node@c-2.me) 566512 | 533744 +> [ 913.000000] (3:node@c-2.me) 599280 | 533744 +> [ 913.000000] (3:node@c-2.me) 664816 | 533744 +> [ 913.000000] (3:node@c-2.me) 795888 | 533744 +> [ 913.000000] (3:node@c-2.me) 1058032 | 533744 +> [ 913.000000] (3:node@c-2.me) 1582320 | 533744 +> [ 913.000000] (3:node@c-2.me) 2630896 | 533744 +> [ 913.000000] (3:node@c-2.me) 4728048 | 533744 +> [ 913.000000] (3:node@c-2.me) 8922352 | 533744 +> [ 913.000000] (3:node@c-2.me) Predecessor: 366680 +> [ 921.000000] (8:node@c-7.me) My finger table: +> [ 921.000000] (8:node@c-7.me) Start | Succ +> [ 921.000000] (8:node@c-7.me) 10004761 | 10874876 +> [ 921.000000] (8:node@c-7.me) 10004762 | 16509405 +> [ 921.000000] (8:node@c-7.me) 10004764 | 16509405 +> [ 921.000000] (8:node@c-7.me) 10004768 | 16509405 +> [ 921.000000] (8:node@c-7.me) 10004776 | 16509405 +> [ 921.000000] (8:node@c-7.me) 10004792 | 16509405 +> [ 921.000000] (8:node@c-7.me) 10004824 | 10874876 +> [ 921.000000] (8:node@c-7.me) 10004888 | 10004760 +> [ 921.000000] (8:node@c-7.me) 10005016 | 10004760 +> [ 921.000000] (8:node@c-7.me) 10005272 | 10004760 +> [ 921.000000] (8:node@c-7.me) 10005784 | 10004760 +> [ 921.000000] (8:node@c-7.me) 10006808 | 10004760 +> [ 921.000000] (8:node@c-7.me) 10008856 | 10004760 +> [ 921.000000] (8:node@c-7.me) 10012952 | 10004760 +> [ 921.000000] (8:node@c-7.me) 10021144 | 10004760 +> [ 921.000000] (8:node@c-7.me) 10037528 | 10004760 +> [ 921.000000] (8:node@c-7.me) 10070296 | 10004760 +> [ 921.000000] (8:node@c-7.me) 10135832 | 10004760 +> [ 921.000000] (8:node@c-7.me) 10266904 | 10004760 +> [ 921.000000] (8:node@c-7.me) 10529048 | 10004760 +> [ 921.000000] (8:node@c-7.me) 11053336 | 10004760 +> [ 921.000000] (8:node@c-7.me) 12101912 | 10004760 +> [ 921.000000] (8:node@c-7.me) 14199064 | 10004760 +> [ 921.000000] (8:node@c-7.me) 1616152 | 10004760 +> [ 921.000000] (8:node@c-7.me) Predecessor: 6518808 +> [ 964.000000] (2:node@c-1.me) My finger table: +> [ 964.000000] (2:node@c-1.me) Start | Succ +> [ 964.000000] (2:node@c-1.me) 366681 | 533744 +> [ 964.000000] (2:node@c-1.me) 366682 | 1319738 +> [ 964.000000] (2:node@c-1.me) 366684 | 1319738 +> [ 964.000000] (2:node@c-1.me) 366688 | 1319738 +> [ 964.000000] (2:node@c-1.me) 366696 | 533744 +> [ 964.000000] (2:node@c-1.me) 366712 | 533744 +> [ 964.000000] (2:node@c-1.me) 366744 | 533744 +> [ 964.000000] (2:node@c-1.me) 366808 | 366680 +> [ 964.000000] (2:node@c-1.me) 366936 | 366680 +> [ 964.000000] (2:node@c-1.me) 367192 | 366680 +> [ 964.000000] (2:node@c-1.me) 367704 | 366680 +> [ 964.000000] (2:node@c-1.me) 368728 | 366680 +> [ 964.000000] (2:node@c-1.me) 370776 | 366680 +> [ 964.000000] (2:node@c-1.me) 374872 | 366680 +> [ 964.000000] (2:node@c-1.me) 383064 | 366680 +> [ 964.000000] (2:node@c-1.me) 399448 | 366680 +> [ 964.000000] (2:node@c-1.me) 432216 | 366680 +> [ 964.000000] (2:node@c-1.me) 497752 | 366680 +> [ 964.000000] (2:node@c-1.me) 628824 | 366680 +> [ 964.000000] (2:node@c-1.me) 890968 | 366680 +> [ 964.000000] (2:node@c-1.me) 1415256 | 366680 +> [ 964.000000] (2:node@c-1.me) 2463832 | 366680 +> [ 964.000000] (2:node@c-1.me) 4560984 | 366680 +> [ 964.000000] (2:node@c-1.me) 8755288 | 366680 +> [ 964.000000] (2:node@c-1.me) Predecessor: 42 +> [ 966.000000] (4:node@c-3.me) My finger table: +> [ 966.000000] (4:node@c-3.me) Start | Succ +> [ 966.000000] (4:node@c-3.me) 1319739 | 2015253 +> [ 966.000000] (4:node@c-3.me) 1319740 | 6518808 +> [ 966.000000] (4:node@c-3.me) 1319742 | 2015253 +> [ 966.000000] (4:node@c-3.me) 1319746 | 2015253 +> [ 966.000000] (4:node@c-3.me) 1319754 | 2015253 +> [ 966.000000] (4:node@c-3.me) 1319770 | 2015253 +> [ 966.000000] (4:node@c-3.me) 1319802 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1319866 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1319994 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1320250 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1320762 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1321786 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1323834 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1327930 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1336122 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1352506 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1385274 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1450810 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1581882 | 1319738 +> [ 966.000000] (4:node@c-3.me) 1844026 | 1319738 +> [ 966.000000] (4:node@c-3.me) 2368314 | 1319738 +> [ 966.000000] (4:node@c-3.me) 3416890 | 1319738 +> [ 966.000000] (4:node@c-3.me) 5514042 | 1319738 +> [ 966.000000] (4:node@c-3.me) 9708346 | 1319738 +> [ 966.000000] (4:node@c-3.me) Predecessor: 533744 +> [ 966.000000] (7:node@c-6.me) My finger table: +> [ 966.000000] (7:node@c-6.me) Start | Succ +> [ 966.000000] (7:node@c-6.me) 16728097 | 42 +> [ 966.000000] (7:node@c-6.me) 16728098 | 42 +> [ 966.000000] (7:node@c-6.me) 16728100 | 42 +> [ 966.000000] (7:node@c-6.me) 16728104 | 42 +> [ 966.000000] (7:node@c-6.me) 16728112 | 42 +> [ 966.000000] (7:node@c-6.me) 16728128 | 42 +> [ 966.000000] (7:node@c-6.me) 16728160 | 42 +> [ 966.000000] (7:node@c-6.me) 16728224 | 16728096 +> [ 966.000000] (7:node@c-6.me) 16728352 | 16728096 +> [ 966.000000] (7:node@c-6.me) 16728608 | 16728096 +> [ 966.000000] (7:node@c-6.me) 16729120 | 16728096 +> [ 966.000000] (7:node@c-6.me) 16730144 | 16728096 +> [ 966.000000] (7:node@c-6.me) 16732192 | 16728096 +> [ 966.000000] (7:node@c-6.me) 16736288 | 16728096 +> [ 966.000000] (7:node@c-6.me) 16744480 | 16728096 +> [ 966.000000] (7:node@c-6.me) 16760864 | 16728096 +> [ 966.000000] (7:node@c-6.me) 16416 | 16728096 +> [ 966.000000] (7:node@c-6.me) 81952 | 16728096 +> [ 966.000000] (7:node@c-6.me) 213024 | 16728096 +> [ 966.000000] (7:node@c-6.me) 475168 | 16728096 +> [ 966.000000] (7:node@c-6.me) 999456 | 16728096 +> [ 966.000000] (7:node@c-6.me) 2048032 | 16728096 +> [ 966.000000] (7:node@c-6.me) 4145184 | 16728096 +> [ 966.000000] (7:node@c-6.me) 8339488 | 16728096 +> [ 966.000000] (7:node@c-6.me) Predecessor: 16509405 +> [ 973.000000] (9:node@c-8.me) My finger table: +> [ 973.000000] (9:node@c-8.me) Start | Succ +> [ 973.000000] (9:node@c-8.me) 6518809 | 10004760 +> [ 973.000000] (9:node@c-8.me) 6518810 | 16728096 +> [ 973.000000] (9:node@c-8.me) 6518812 | 10004760 +> [ 973.000000] (9:node@c-8.me) 6518816 | 10004760 +> [ 973.000000] (9:node@c-8.me) 6518824 | 10004760 +> [ 973.000000] (9:node@c-8.me) 6518840 | 10004760 +> [ 973.000000] (9:node@c-8.me) 6518872 | 10004760 +> [ 973.000000] (9:node@c-8.me) 6518936 | 6518808 +> [ 973.000000] (9:node@c-8.me) 6519064 | 6518808 +> [ 973.000000] (9:node@c-8.me) 6519320 | 6518808 +> [ 973.000000] (9:node@c-8.me) 6519832 | 6518808 +> [ 973.000000] (9:node@c-8.me) 6520856 | 6518808 +> [ 973.000000] (9:node@c-8.me) 6522904 | 6518808 +> [ 973.000000] (9:node@c-8.me) 6527000 | 6518808 +> [ 973.000000] (9:node@c-8.me) 6535192 | 6518808 +> [ 973.000000] (9:node@c-8.me) 6551576 | 6518808 +> [ 973.000000] (9:node@c-8.me) 6584344 | 6518808 +> [ 973.000000] (9:node@c-8.me) 6649880 | 6518808 +> [ 973.000000] (9:node@c-8.me) 6780952 | 6518808 +> [ 973.000000] (9:node@c-8.me) 7043096 | 6518808 +> [ 973.000000] (9:node@c-8.me) 7567384 | 6518808 +> [ 973.000000] (9:node@c-8.me) 8615960 | 6518808 +> [ 973.000000] (9:node@c-8.me) 10713112 | 6518808 +> [ 973.000000] (9:node@c-8.me) 14907416 | 6518808 +> [ 973.000000] (9:node@c-8.me) Predecessor: 2015253 +> [ 979.000000] (10:node@c-9.me) My finger table: +> [ 979.000000] (10:node@c-9.me) Start | Succ +> [ 979.000000] (10:node@c-9.me) 2015254 | 6518808 +> [ 979.000000] (10:node@c-9.me) 2015255 | 16728096 +> [ 979.000000] (10:node@c-9.me) 2015257 | 6518808 +> [ 979.000000] (10:node@c-9.me) 2015261 | 6518808 +> [ 979.000000] (10:node@c-9.me) 2015269 | 6518808 +> [ 979.000000] (10:node@c-9.me) 2015285 | 6518808 +> [ 979.000000] (10:node@c-9.me) 2015317 | 6518808 +> [ 979.000000] (10:node@c-9.me) 2015381 | 2015253 +> [ 979.000000] (10:node@c-9.me) 2015509 | 2015253 +> [ 979.000000] (10:node@c-9.me) 2015765 | 2015253 +> [ 979.000000] (10:node@c-9.me) 2016277 | 2015253 +> [ 979.000000] (10:node@c-9.me) 2017301 | 2015253 +> [ 979.000000] (10:node@c-9.me) 2019349 | 2015253 +> [ 979.000000] (10:node@c-9.me) 2023445 | 2015253 +> [ 979.000000] (10:node@c-9.me) 2031637 | 2015253 +> [ 979.000000] (10:node@c-9.me) 2048021 | 2015253 +> [ 979.000000] (10:node@c-9.me) 2080789 | 2015253 +> [ 979.000000] (10:node@c-9.me) 2146325 | 2015253 +> [ 979.000000] (10:node@c-9.me) 2277397 | 2015253 +> [ 979.000000] (10:node@c-9.me) 2539541 | 2015253 +> [ 979.000000] (10:node@c-9.me) 3063829 | 2015253 +> [ 979.000000] (10:node@c-9.me) 4112405 | 2015253 +> [ 979.000000] (10:node@c-9.me) 6209557 | 2015253 +> [ 979.000000] (10:node@c-9.me) 10403861 | 2015253 +> [ 979.000000] (10:node@c-9.me) Predecessor: 1319738 +> [ 987.000000] (6:node@c-5.me) My finger table: +> [ 987.000000] (6:node@c-5.me) Start | Succ +> [ 987.000000] (6:node@c-5.me) 10874877 | 16509405 +> [ 987.000000] (6:node@c-5.me) 10874878 | 533744 +> [ 987.000000] (6:node@c-5.me) 10874880 | 533744 +> [ 987.000000] (6:node@c-5.me) 10874884 | 533744 +> [ 987.000000] (6:node@c-5.me) 10874892 | 533744 +> [ 987.000000] (6:node@c-5.me) 10874908 | 16728096 +> [ 987.000000] (6:node@c-5.me) 10874940 | 16509405 +> [ 987.000000] (6:node@c-5.me) 10875004 | 16509405 +> [ 987.000000] (6:node@c-5.me) 10875132 | 10874876 +> [ 987.000000] (6:node@c-5.me) 10875388 | 10874876 +> [ 987.000000] (6:node@c-5.me) 10875900 | 10874876 +> [ 987.000000] (6:node@c-5.me) 10876924 | 10874876 +> [ 987.000000] (6:node@c-5.me) 10878972 | 10874876 +> [ 987.000000] (6:node@c-5.me) 10883068 | 10874876 +> [ 987.000000] (6:node@c-5.me) 10891260 | 10874876 +> [ 987.000000] (6:node@c-5.me) 10907644 | 10874876 +> [ 987.000000] (6:node@c-5.me) 10940412 | 10874876 +> [ 987.000000] (6:node@c-5.me) 11005948 | 10874876 +> [ 987.000000] (6:node@c-5.me) 11137020 | 10874876 +> [ 987.000000] (6:node@c-5.me) 11399164 | 10874876 +> [ 987.000000] (6:node@c-5.me) 11923452 | 10874876 +> [ 987.000000] (6:node@c-5.me) 12972028 | 10874876 +> [ 987.000000] (6:node@c-5.me) 15069180 | 10874876 +> [ 987.000000] (6:node@c-5.me) 2486268 | 10874876 +> [ 987.000000] (6:node@c-5.me) Predecessor: 10004760 +> [1196.000000] (0:@) Messages created: 1827 +> [1196.000000] (0:@) Simulated time: 1196 diff --git a/examples/msg/io/file.c b/examples/msg/io/file.c index d36365fea9..d1595cb44e 100644 --- a/examples/msg/io/file.c +++ b/examples/msg/io/file.c @@ -37,14 +37,14 @@ int host(int argc, char *argv[]) size_t read,write; if(!strcmp(MSG_process_get_name(MSG_process_self()),"0")){ - file = MSG_file_open(mount,FILENAME1); + file = MSG_file_open(mount,FILENAME1, NULL); MSG_file_dump(file); } else if(!strcmp(MSG_process_get_name(MSG_process_self()),"1")) - file = MSG_file_open(mount,FILENAME2); + file = MSG_file_open(mount,FILENAME2, NULL); else if(!strcmp(MSG_process_get_name(MSG_process_self()),"2")) - file = MSG_file_open(mount,FILENAME3); + file = MSG_file_open(mount,FILENAME3, NULL); else if(!strcmp(MSG_process_get_name(MSG_process_self()),"3")) - file = MSG_file_open(mount,FILENAME4); + file = MSG_file_open(mount,FILENAME4, NULL); else xbt_die("FILENAME NOT DEFINED %s",MSG_process_get_name(MSG_process_self())); XBT_INFO("\tOpen file '%s'",file->fullname); diff --git a/examples/msg/io/file_unlink.c b/examples/msg/io/file_unlink.c index 8bcf082499..47c712743e 100644 --- a/examples/msg/io/file_unlink.c +++ b/examples/msg/io/file_unlink.c @@ -35,7 +35,7 @@ int host(int argc, char *argv[]) // First open XBT_INFO("\tOpen file '%s'",FILENAME1); - file = MSG_file_open(mount,FILENAME1); + file = MSG_file_open(mount,FILENAME1, NULL); // Unlink the file XBT_INFO("\tUnlink file '%s'",file->fullname); @@ -43,7 +43,7 @@ int host(int argc, char *argv[]) // Re Open the file wich is in fact created XBT_INFO("\tOpen file '%s'",FILENAME1); - file = MSG_file_open(mount,FILENAME1); + file = MSG_file_open(mount,FILENAME1, NULL); // Write into the new file write = MSG_file_write(100000,file); // Write for 100Ko diff --git a/examples/msg/mc/CMakeLists.txt b/examples/msg/mc/CMakeLists.txt index 845088eade..876cf71979 100644 --- a/examples/msg/mc/CMakeLists.txt +++ b/examples/msg/mc/CMakeLists.txt @@ -3,9 +3,6 @@ cmake_minimum_required(VERSION 2.6) if(HAVE_MC) set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}") - file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/test/") - file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/chord/") - add_executable(centralized centralized_mutex.c) add_executable(bugged1 bugged1.c) add_executable(bugged2 bugged2.c) @@ -13,12 +10,6 @@ if(HAVE_MC) add_executable(electric_fence electric_fence.c) add_executable(bugged1_liveness bugged1_liveness.c) add_executable(bugged2_liveness bugged2_liveness.c) - add_executable(chord/chord chord/chord.c) - add_executable(test/snapshot_comparison1 test/snapshot_comparison1.c) - add_executable(test/snapshot_comparison2 test/snapshot_comparison2.c) - add_executable(test/snapshot_comparison3 test/snapshot_comparison3.c) - add_executable(test/snapshot_comparison4 test/snapshot_comparison4.c) - add_executable(test/snapshot_comparison5 test/snapshot_comparison5.c) target_link_libraries(centralized simgrid ) target_link_libraries(bugged1 simgrid ) @@ -27,12 +18,6 @@ if(HAVE_MC) target_link_libraries(electric_fence simgrid ) target_link_libraries(bugged1_liveness simgrid ) target_link_libraries(bugged2_liveness simgrid ) - target_link_libraries(chord/chord simgrid ) - target_link_libraries(test/snapshot_comparison1 simgrid ) - target_link_libraries(test/snapshot_comparison2 simgrid ) - target_link_libraries(test/snapshot_comparison3 simgrid ) - target_link_libraries(test/snapshot_comparison4 simgrid ) - target_link_libraries(test/snapshot_comparison5 simgrid ) endif() @@ -42,13 +27,6 @@ set(tesh_files ${CMAKE_CURRENT_SOURCE_DIR}/bugged2.tesh ${CMAKE_CURRENT_SOURCE_DIR}/bugged1_liveness.tesh ${CMAKE_CURRENT_SOURCE_DIR}/centralized.tesh - ${CMAKE_CURRENT_SOURCE_DIR}/chord/chord_neverjoin.tesh - ${CMAKE_CURRENT_SOURCE_DIR}/chord/chord_neverjoin_timeout_visited.tesh - ${CMAKE_CURRENT_SOURCE_DIR}/test/snapshot_comparison1.tesh - ${CMAKE_CURRENT_SOURCE_DIR}/test/snapshot_comparison2.tesh - ${CMAKE_CURRENT_SOURCE_DIR}/test/snapshot_comparison3.tesh - ${CMAKE_CURRENT_SOURCE_DIR}/test/snapshot_comparison4.tesh - ${CMAKE_CURRENT_SOURCE_DIR}/test/snapshot_comparison5.tesh PARENT_SCOPE ) set(xml_files @@ -61,9 +39,6 @@ set(xml_files ${CMAKE_CURRENT_SOURCE_DIR}/deploy_electric_fence.xml ${CMAKE_CURRENT_SOURCE_DIR}/deploy_mutex.xml ${CMAKE_CURRENT_SOURCE_DIR}/platform.xml - ${CMAKE_CURRENT_SOURCE_DIR}/chord/deploy_chord4.xml - ${CMAKE_CURRENT_SOURCE_DIR}/test/deploy_snapshot_comparison.xml - ${CMAKE_CURRENT_SOURCE_DIR}/test/snapshot_comparison_platform.xml PARENT_SCOPE ) set(examples_src @@ -77,20 +52,12 @@ set(examples_src ${CMAKE_CURRENT_SOURCE_DIR}/centralized_mutex.c ${CMAKE_CURRENT_SOURCE_DIR}/bugged1_liveness.h ${CMAKE_CURRENT_SOURCE_DIR}/bugged2_liveness.h - ${CMAKE_CURRENT_SOURCE_DIR}/chord/chord.c - ${CMAKE_CURRENT_SOURCE_DIR}/test/snapshot_comparison1.c - ${CMAKE_CURRENT_SOURCE_DIR}/test/snapshot_comparison2.c - ${CMAKE_CURRENT_SOURCE_DIR}/test/snapshot_comparison3.c - ${CMAKE_CURRENT_SOURCE_DIR}/test/snapshot_comparison4.c - ${CMAKE_CURRENT_SOURCE_DIR}/test/snapshot_comparison5.c PARENT_SCOPE ) set(bin_files ${bin_files} - ${CMAKE_CURRENT_SOURCE_DIR}/parse_dwarf ${CMAKE_CURRENT_SOURCE_DIR}/promela_bugged1_liveness ${CMAKE_CURRENT_SOURCE_DIR}/promela_bugged2_liveness - ${CMAKE_CURRENT_SOURCE_DIR}/test/promela PARENT_SCOPE ) set(txt_files diff --git a/examples/msg/mc/bugged1.tesh b/examples/msg/mc/bugged1.tesh index 78c1f5ef81..464633f5a9 100644 --- a/examples/msg/mc/bugged1.tesh +++ b/examples/msg/mc/bugged1.tesh @@ -22,16 +22,17 @@ $ ${bindir:=.}/bugged1 --cfg=model-check:1 "--log=root.fmt:[%10.6r]%e(%i:%P@%h)% > [ 0.000000] (1:server@HostA) *** PROPERTY NOT VALID *** > [ 0.000000] (1:server@HostA) ************************** > [ 0.000000] (1:server@HostA) Counter-example execution trace: -> [ 0.000000] (1:server@HostA) [(1)HostA (server)] iRecv (dst=(1)HostA (server), buff=(verbose only), size=(verbose only)) -> [ 0.000000] (1:server@HostA) [(2)HostB (client)] iSend (src=(2)HostB (client), buff=(verbose only), size=(verbose only)) -> [ 0.000000] (1:server@HostA) [(1)HostA (server)] Wait (comm=(verbose only) [(2)HostB (client)-> (1)HostA (server)]) -> [ 0.000000] (1:server@HostA) [(1)HostA (server)] iRecv (dst=(1)HostA (server), buff=(verbose only), size=(verbose only)) -> [ 0.000000] (1:server@HostA) [(2)HostB (client)] Wait (comm=(verbose only) [(2)HostB (client)-> (1)HostA (server)]) -> [ 0.000000] (1:server@HostA) [(4)HostD (client)] iSend (src=(4)HostD (client), buff=(verbose only), size=(verbose only)) -> [ 0.000000] (1:server@HostA) [(1)HostA (server)] Wait (comm=(verbose only) [(4)HostD (client)-> (1)HostA (server)]) -> [ 0.000000] (1:server@HostA) [(1)HostA (server)] iRecv (dst=(1)HostA (server), buff=(verbose only), size=(verbose only)) -> [ 0.000000] (1:server@HostA) [(3)HostC (client)] iSend (src=(3)HostC (client), buff=(verbose only), size=(verbose only)) -> [ 0.000000] (1:server@HostA) [(1)HostA (server)] Wait (comm=(verbose only) [(3)HostC (client)-> (1)HostA (server)]) +> [ 0.000000] (1:server@HostA) [(1)HostA (server)] iRecv(dst=(1)HostA (server), buff=(verbose only), size=(verbose only)) (56) +> [ 0.000000] (1:server@HostA) [(2)HostB (client)] iSend(src=(2)HostB (client), buff=(verbose only), size=(verbose only)) (54) +> [ 0.000000] (1:server@HostA) [(1)HostA (server)] Wait(comm=(verbose only) [(2)HostB (client)-> (1)HostA (server)]) (62) +> [ 0.000000] (1:server@HostA) [(1)HostA (server)] iRecv(dst=(1)HostA (server), buff=(verbose only), size=(verbose only)) (56) +> [ 0.000000] (1:server@HostA) [(2)HostB (client)] Wait(comm=(verbose only) [(2)HostB (client)-> (1)HostA (server)]) (62) +> [ 0.000000] (1:server@HostA) [(4)HostD (client)] iSend(src=(4)HostD (client), buff=(verbose only), size=(verbose only)) (54) +> [ 0.000000] (1:server@HostA) [(1)HostA (server)] Wait(comm=(verbose only) [(4)HostD (client)-> (1)HostA (server)]) (62) +> [ 0.000000] (1:server@HostA) [(1)HostA (server)] iRecv(dst=(1)HostA (server), buff=(verbose only), size=(verbose only)) (56) +> [ 0.000000] (1:server@HostA) [(3)HostC (client)] iSend(src=(3)HostC (client), buff=(verbose only), size=(verbose only)) (54) +> [ 0.000000] (1:server@HostA) [(1)HostA (server)] Wait(comm=(verbose only) [(3)HostC (client)-> (1)HostA (server)]) (62) > [ 0.000000] (1:server@HostA) Expanded states = 22 > [ 0.000000] (1:server@HostA) Visited states = 56 > [ 0.000000] (1:server@HostA) Executed transitions = 52 + diff --git a/examples/msg/mc/bugged1_liveness.tesh b/examples/msg/mc/bugged1_liveness.tesh index f69fd27319..96fd359d4e 100644 --- a/examples/msg/mc/bugged1_liveness.tesh +++ b/examples/msg/mc/bugged1_liveness.tesh @@ -5,6 +5,8 @@ $ ${bindir:=.}/bugged1_liveness --cfg=model-check:1 "--log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n" --cfg=contexts/factory:ucontext > [ 0.000000] (0:@) Configuration change: Set 'model-check' to '1' > [ 0.000000] (0:@) Check the liveness property promela_bugged1_liveness +> [ 0.000000] (0:@) Get debug information ... +> [ 0.000000] (0:@) Get debug information done ! > [ 0.000000] (2:client@Boivin) Ask the request > [ 0.000000] (3:client@Fafard) Ask the request > [ 0.000000] (2:client@Boivin) Propositions changed : r=1, cs=0 @@ -18,28 +20,30 @@ $ ${bindir:=.}/bugged1_liveness --cfg=model-check:1 "--log=root.fmt:[%10.6r]%e(% > [ 0.000000] (0:@) | ACCEPTANCE CYCLE | > [ 0.000000] (0:@) *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* > [ 0.000000] (0:@) Counter-example that violates formula : -> [ 0.000000] (0:@) [(1)Tremblay (coordinator)] iRecv (dst=(1)Tremblay (coordinator), buff=(verbose only), size=(verbose only)) -> [ 0.000000] (0:@) [(2)Boivin (client)] iSend (src=(2)Boivin (client), buff=(verbose only), size=(verbose only)) -> [ 0.000000] (0:@) [(1)Tremblay (coordinator)] Wait (comm=(verbose only) [(2)Boivin (client)-> (1)Tremblay (coordinator)]) -> [ 0.000000] (0:@) [(1)Tremblay (coordinator)] iRecv (dst=(1)Tremblay (coordinator), buff=(verbose only), size=(verbose only)) -> [ 0.000000] (0:@) [(2)Boivin (client)] Wait (comm=(verbose only) [(2)Boivin (client)-> (1)Tremblay (coordinator)]) -> [ 0.000000] (0:@) [(2)Boivin (client)] iRecv (dst=(2)Boivin (client), buff=(verbose only), size=(verbose only)) -> [ 0.000000] (0:@) [(3)Fafard (client)] iSend (src=(3)Fafard (client), buff=(verbose only), size=(verbose only)) -> [ 0.000000] (0:@) [(1)Tremblay (coordinator)] Wait (comm=(verbose only) [(3)Fafard (client)-> (1)Tremblay (coordinator)]) -> [ 0.000000] (0:@) [(1)Tremblay (coordinator)] iSend (src=(1)Tremblay (coordinator), buff=(verbose only), size=(verbose only)) -> [ 0.000000] (0:@) [(3)Fafard (client)] Wait (comm=(verbose only) [(3)Fafard (client)-> (1)Tremblay (coordinator)]) -> [ 0.000000] (0:@) [(3)Fafard (client)] iRecv (dst=(3)Fafard (client), buff=(verbose only), size=(verbose only)) -> [ 0.000000] (0:@) [(1)Tremblay (coordinator)] Wait (comm=(verbose only) [(1)Tremblay (coordinator)-> (3)Fafard (client)]) -> [ 0.000000] (0:@) [(1)Tremblay (coordinator)] iRecv (dst=(1)Tremblay (coordinator), buff=(verbose only), size=(verbose only)) -> [ 0.000000] (0:@) [(3)Fafard (client)] Wait (comm=(verbose only) [(1)Tremblay (coordinator)-> (3)Fafard (client)]) -> [ 0.000000] (0:@) [(3)Fafard (client)] iSend (src=(3)Fafard (client), buff=(verbose only), size=(verbose only)) -> [ 0.000000] (0:@) [(1)Tremblay (coordinator)] Wait (comm=(verbose only) [(3)Fafard (client)-> (1)Tremblay (coordinator)]) -> [ 0.000000] (0:@) [(1)Tremblay (coordinator)] iRecv (dst=(1)Tremblay (coordinator), buff=(verbose only), size=(verbose only)) -> [ 0.000000] (0:@) [(3)Fafard (client)] Wait (comm=(verbose only) [(3)Fafard (client)-> (1)Tremblay (coordinator)]) -> [ 0.000000] (0:@) [(3)Fafard (client)] iSend (src=(3)Fafard (client), buff=(verbose only), size=(verbose only)) -> [ 0.000000] (0:@) [(1)Tremblay (coordinator)] Wait (comm=(verbose only) [(3)Fafard (client)-> (1)Tremblay (coordinator)]) -> [ 0.000000] (0:@) [(1)Tremblay (coordinator)] iSend (src=(1)Tremblay (coordinator), buff=(verbose only), size=(verbose only)) +> [ 0.000000] (0:@) [(1)Tremblay (coordinator)] iRecv(dst=(1)Tremblay (coordinator), buff=(verbose only), size=(verbose only)) (56) +> [ 0.000000] (0:@) [(2)Boivin (client)] iSend(src=(2)Boivin (client), buff=(verbose only), size=(verbose only)) (54) +> [ 0.000000] (0:@) [(1)Tremblay (coordinator)] Wait(comm=(verbose only) [(2)Boivin (client)-> (1)Tremblay (coordinator)]) (62) +> [ 0.000000] (0:@) [(1)Tremblay (coordinator)] iRecv(dst=(1)Tremblay (coordinator), buff=(verbose only), size=(verbose only)) (56) +> [ 0.000000] (0:@) [(2)Boivin (client)] Wait(comm=(verbose only) [(2)Boivin (client)-> (1)Tremblay (coordinator)]) (62) +> [ 0.000000] (0:@) [(2)Boivin (client)] iRecv(dst=(2)Boivin (client), buff=(verbose only), size=(verbose only)) (56) +> [ 0.000000] (0:@) [(3)Fafard (client)] iSend(src=(3)Fafard (client), buff=(verbose only), size=(verbose only)) (54) +> [ 0.000000] (0:@) [(1)Tremblay (coordinator)] Wait(comm=(verbose only) [(3)Fafard (client)-> (1)Tremblay (coordinator)]) (62) +> [ 0.000000] (0:@) [(1)Tremblay (coordinator)] iSend(src=(1)Tremblay (coordinator), buff=(verbose only), size=(verbose only)) (54) +> [ 0.000000] (0:@) [(3)Fafard (client)] Wait(comm=(verbose only) [(3)Fafard (client)-> (1)Tremblay (coordinator)]) (62) +> [ 0.000000] (0:@) [(3)Fafard (client)] iRecv(dst=(3)Fafard (client), buff=(verbose only), size=(verbose only)) (56) +> [ 0.000000] (0:@) [(1)Tremblay (coordinator)] Wait(comm=(verbose only) [(1)Tremblay (coordinator)-> (3)Fafard (client)]) (62) +> [ 0.000000] (0:@) [(1)Tremblay (coordinator)] iRecv(dst=(1)Tremblay (coordinator), buff=(verbose only), size=(verbose only)) (56) +> [ 0.000000] (0:@) [(3)Fafard (client)] Wait(comm=(verbose only) [(1)Tremblay (coordinator)-> (3)Fafard (client)]) (62) +> [ 0.000000] (0:@) [(3)Fafard (client)] iSend(src=(3)Fafard (client), buff=(verbose only), size=(verbose only)) (54) +> [ 0.000000] (0:@) [(1)Tremblay (coordinator)] Wait(comm=(verbose only) [(3)Fafard (client)-> (1)Tremblay (coordinator)]) (62) +> [ 0.000000] (0:@) [(1)Tremblay (coordinator)] iRecv(dst=(1)Tremblay (coordinator), buff=(verbose only), size=(verbose only)) (56) +> [ 0.000000] (0:@) [(3)Fafard (client)] Wait(comm=(verbose only) [(3)Fafard (client)-> (1)Tremblay (coordinator)]) (62) +> [ 0.000000] (0:@) [(3)Fafard (client)] iSend(src=(3)Fafard (client), buff=(verbose only), size=(verbose only)) (54) +> [ 0.000000] (0:@) [(1)Tremblay (coordinator)] Wait(comm=(verbose only) [(3)Fafard (client)-> (1)Tremblay (coordinator)]) (62) +> [ 0.000000] (0:@) [(1)Tremblay (coordinator)] iSend(src=(1)Tremblay (coordinator), buff=(verbose only), size=(verbose only)) (54) > [ 0.000000] (0:@) Expanded pairs = 22 > [ 0.000000] (0:@) Visited pairs = 22 > [ 0.000000] (0:@) Executed transitions = 21 + + diff --git a/examples/msg/mc/bugged2.tesh b/examples/msg/mc/bugged2.tesh index bbfd7ac102..2fe18e9581 100644 --- a/examples/msg/mc/bugged2.tesh +++ b/examples/msg/mc/bugged2.tesh @@ -887,13 +887,14 @@ $ ${bindir:=.}/bugged2 --cfg=model-check:1 "--log=root.fmt:[%10.6r]%e(%i:%P@%h)% > [ 0.000000] (1:server@HostA) *** PROPERTY NOT VALID *** > [ 0.000000] (1:server@HostA) ************************** > [ 0.000000] (1:server@HostA) Counter-example execution trace: -> [ 0.000000] (1:server@HostA) [(1)HostA (server)] iRecv (dst=(1)HostA (server), buff=(verbose only), size=(verbose only)) -> [ 0.000000] (1:server@HostA) [(3)HostC (client)] iSend (src=(3)HostC (client), buff=(verbose only), size=(verbose only)) -> [ 0.000000] (1:server@HostA) [(1)HostA (server)] Wait (comm=(verbose only) [(3)HostC (client)-> (1)HostA (server)]) -> [ 0.000000] (1:server@HostA) [(3)HostC (client)] Wait (comm=(verbose only) [(3)HostC (client)-> (1)HostA (server)]) -> [ 0.000000] (1:server@HostA) [(1)HostA (server)] iRecv (dst=(1)HostA (server), buff=(verbose only), size=(verbose only)) -> [ 0.000000] (1:server@HostA) [(3)HostC (client)] iSend (src=(3)HostC (client), buff=(verbose only), size=(verbose only)) -> [ 0.000000] (1:server@HostA) [(1)HostA (server)] Wait (comm=(verbose only) [(3)HostC (client)-> (1)HostA (server)]) +> [ 0.000000] (1:server@HostA) [(1)HostA (server)] iRecv(dst=(1)HostA (server), buff=(verbose only), size=(verbose only)) (56) +> [ 0.000000] (1:server@HostA) [(3)HostC (client)] iSend(src=(3)HostC (client), buff=(verbose only), size=(verbose only)) (54) +> [ 0.000000] (1:server@HostA) [(1)HostA (server)] Wait(comm=(verbose only) [(3)HostC (client)-> (1)HostA (server)]) (62) +> [ 0.000000] (1:server@HostA) [(3)HostC (client)] Wait(comm=(verbose only) [(3)HostC (client)-> (1)HostA (server)]) (62) +> [ 0.000000] (1:server@HostA) [(1)HostA (server)] iRecv(dst=(1)HostA (server), buff=(verbose only), size=(verbose only)) (56) +> [ 0.000000] (1:server@HostA) [(3)HostC (client)] iSend(src=(3)HostC (client), buff=(verbose only), size=(verbose only)) (54) +> [ 0.000000] (1:server@HostA) [(1)HostA (server)] Wait(comm=(verbose only) [(3)HostC (client)-> (1)HostA (server)]) (62) > [ 0.000000] (1:server@HostA) Expanded states = 461 > [ 0.000000] (1:server@HostA) Visited states = 2271 > [ 0.000000] (1:server@HostA) Executed transitions = 2117 + diff --git a/examples/msg/mc/bugged2_liveness.c b/examples/msg/mc/bugged2_liveness.c index 7117b49b79..26f2b31ca3 100644 --- a/examples/msg/mc/bugged2_liveness.c +++ b/examples/msg/mc/bugged2_liveness.c @@ -35,7 +35,6 @@ int coordinator(int argc, char *argv[]) XBT_INFO("CS already used."); msg_task_t answer = MSG_task_create("not grant", 0, 1000, NULL); MSG_task_send(answer, req); - MC_compare(); } else { // can serve it immediatly XBT_INFO("CS idle. Grant immediatly"); msg_task_t answer = MSG_task_create("grant", 0, 1000, NULL); diff --git a/examples/msg/mc/chord/chord.c b/examples/msg/mc/chord/chord.c deleted file mode 100644 index 9d9feae5c1..0000000000 --- a/examples/msg/mc/chord/chord.c +++ /dev/null @@ -1,1013 +0,0 @@ - -/* Copyright (c) 2010. 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. */ - -#include -#include "msg/msg.h" -#include "xbt/log.h" -#include "xbt/asserts.h" -#include "simgrid/modelchecker.h" -#include "mc/mc.h" - -/** @addtogroup MSG_examples - * - * - chord/chord.c: Classical Chord P2P protocol - * This example implements the well known Chord P2P protocol. Its - * main advantage is that it constitute a fully working non-trivial - * example. In addition, its implementation is rather efficient, as - * demonstrated in http://hal.inria.fr/inria-00602216/ - */ - - -XBT_LOG_NEW_DEFAULT_CATEGORY(mc_chord, - "Messages specific for this example"); - -#define COMM_SIZE 10 -#define COMP_SIZE 0 -#define MAILBOX_NAME_SIZE 10 - -static int nb_bits = 24; -static int nb_keys = 0; -static int timeout = 50; -//static int max_simulation_time = 1000; -static int periodic_stabilize_delay = 20; -static int periodic_fix_fingers_delay = 120; -static int periodic_check_predecessor_delay = 120; -static int periodic_lookup_delay = 10; - -// Liveness properties verification -static int j = 0; - -static int predJ(){ - return j; -} - -//extern long int smx_total_comms; - -/* - * Finger element. - */ -typedef struct s_finger { - int id; - char mailbox[MAILBOX_NAME_SIZE]; // string representation of the id -} s_finger_t, *finger_t; - -/* - * Node data. - */ -typedef struct s_node { - int id; // my id - char mailbox[MAILBOX_NAME_SIZE]; // my mailbox name (string representation of the id) - s_finger_t *fingers; // finger table, of size nb_bits (fingers[0] is my successor) - int pred_id; // predecessor id - char pred_mailbox[MAILBOX_NAME_SIZE]; // predecessor's mailbox name - int next_finger_to_fix; // index of the next finger to fix in fix_fingers() - msg_comm_t comm_receive; // current communication to receive - double last_change_date; // last time I changed a finger or my predecessor -} s_node_t, *node_t; - -/** - * Types of tasks exchanged between nodes. - */ -typedef enum { - TASK_FIND_SUCCESSOR, - TASK_FIND_SUCCESSOR_ANSWER, - TASK_GET_PREDECESSOR, - TASK_GET_PREDECESSOR_ANSWER, - TASK_NOTIFY, - TASK_SUCCESSOR_LEAVING, - TASK_PREDECESSOR_LEAVING -} e_task_type_t; - -/* - * Data attached with the tasks sent and received - */ -typedef struct s_task_data { - e_task_type_t type; // type of task - int request_id; // id paramater (used by some types of tasks) - int request_finger; // finger parameter (used by some types of tasks) - int answer_id; // answer (used by some types of tasks) - char answer_to[MAILBOX_NAME_SIZE]; // mailbox to send an answer to (if any) - const char* issuer_host_name; // used for logging -} s_task_data_t, *task_data_t; - -static int *powers2; - -// utility functions -static void chord_initialize(void); -static void chord_exit(void); -static int normalize(int id); -static int is_in_interval(int id, int start, int end); -static void get_mailbox(int host_id, char* mailbox); -static void task_free(void* task); -static void print_finger_table(node_t node); -static void set_finger(node_t node, int finger_index, int id); -static void set_predecessor(node_t node, int predecessor_id); - -// process functions -static int node(int argc, char *argv[]); -static void handle_task(node_t node, msg_task_t task); - -// Chord core -static void create(node_t node); -static int join(node_t node, int known_id); -static void leave(node_t node); -static int find_successor(node_t node, int id); -static int remote_find_successor(node_t node, int ask_to_id, int id); -static int remote_get_predecessor(node_t node, int ask_to_id); -static int closest_preceding_node(node_t node, int id); -static void stabilize(node_t node); -static void notify(node_t node, int predecessor_candidate_id); -static void remote_notify(node_t node, int notify_to, int predecessor_candidate_id); -static void fix_fingers(node_t node); -static void check_predecessor(node_t node); -static void random_lookup(node_t); -static void quit_notify(node_t node); - - -/** - * \brief Global initialization of the Chord simulation. - */ -static void chord_initialize(void) -{ - // compute the powers of 2 once for all - powers2 = xbt_new(int, nb_bits); - int pow = 1; - int i; - for (i = 0; i < nb_bits; i++) { - powers2[i] = pow; - pow = pow << 1; - } - nb_keys = pow; - XBT_DEBUG("Sets nb_keys to %d", nb_keys); -} - -static void chord_exit(void) -{ - xbt_free(powers2); -} - -/** - * \brief Turns an id into an equivalent id in [0, nb_keys). - * \param id an id - * \return the corresponding normalized id - */ -static int normalize(int id) -{ - // like id % nb_keys, but works with negatives numbers (and faster) - return id & (nb_keys - 1); -} - -/** - * \brief Returns whether an id belongs to the interval [start, end]. - * - * The parameters are noramlized to make sure they are between 0 and nb_keys - 1). - * 1 belongs to [62, 3] - * 1 does not belong to [3, 62] - * 63 belongs to [62, 3] - * 63 does not belong to [3, 62] - * 24 belongs to [21, 29] - * 24 does not belong to [29, 21] - * - * \param id id to check - * \param start lower bound - * \param end upper bound - * \return a non-zero value if id in in [start, end] - */ -static int is_in_interval(int id, int start, int end) -{ - id = normalize(id); - start = normalize(start); - end = normalize(end); - - // make sure end >= start and id >= start - if (end < start) { - end += nb_keys; - } - - if (id < start) { - id += nb_keys; - } - - return id <= end; -} - -/** - * \brief Gets the mailbox name of a host given its chord id. - * \param node_id id of a node - * \param mailbox pointer to where the mailbox name should be written - * (there must be enough space) - */ -static void get_mailbox(int node_id, char* mailbox) -{ - snprintf(mailbox, MAILBOX_NAME_SIZE - 1, "%d", node_id); -} - -/** - * \brief Frees the memory used by a task. - * \param task the MSG task to destroy - */ -static void task_free(void* task) -{ - // TODO add a parameter data_free_function to MSG_task_create? - if(task != NULL){ - xbt_free(MSG_task_get_data(task)); - MSG_task_destroy(task); - task = NULL; - } -} - -/** - * \brief Displays the finger table of a node. - * \param node a node - */ -static void print_finger_table(node_t node) -{ - if (XBT_LOG_ISENABLED(mc_chord, xbt_log_priority_verbose)) { - int i; - XBT_VERB("My finger table:"); - XBT_VERB("Start | Succ "); - for (i = 0; i < nb_bits; i++) { - XBT_VERB(" %3d | %3d ", (node->id + powers2[i]) % nb_keys, node->fingers[i].id); - } - XBT_VERB("Predecessor: %d", node->pred_id); - } -} - -/** - * \brief Sets a finger of the current node. - * \param node the current node - * \param finger_index index of the finger to set (0 to nb_bits - 1) - * \param id the id to set for this finger - */ -static void set_finger(node_t node, int finger_index, int id) -{ - if (id != node->fingers[finger_index].id) { - node->fingers[finger_index].id = id; - get_mailbox(id, node->fingers[finger_index].mailbox); - node->last_change_date = MSG_get_clock(); - XBT_DEBUG("My new finger #%d is %d", finger_index, id); - } -} - -/** - * \brief Sets the predecessor of the current node. - * \param node the current node - * \param id the id to predecessor, or -1 to unset the predecessor - */ -static void set_predecessor(node_t node, int predecessor_id) -{ - if (predecessor_id != node->pred_id) { - node->pred_id = predecessor_id; - - if (predecessor_id != -1) { - get_mailbox(predecessor_id, node->pred_mailbox); - } - node->last_change_date = MSG_get_clock(); - - XBT_DEBUG("My new predecessor is %d", predecessor_id); - } -} - -/** - * \brief Node Function - * Arguments: - * - my id - * - the id of a guy I know in the system (except for the first node) - * - the time to sleep before I join (except for the first node) - */ -int node(int argc, char *argv[]) -{ - /* Reduce the run size for the MC */ - if(MC_is_active()){ - periodic_stabilize_delay = 8; - periodic_fix_fingers_delay = 8; - periodic_check_predecessor_delay = 8; - } - - double init_time = MSG_get_clock(); - msg_task_t task_received = NULL; - int i; - int join_success = 0; - //double deadline; - double next_stabilize_date = init_time + periodic_stabilize_delay; - double next_fix_fingers_date = init_time + periodic_fix_fingers_delay; - double next_check_predecessor_date = init_time + periodic_check_predecessor_delay; - double next_lookup_date = init_time + periodic_lookup_delay; - - //int stab = 0, fix = 0, check = 0, rand_look = 0; - int end = 0; - - xbt_assert(argc == 3 || argc == 5, "Wrong number of arguments for this node"); - - // initialize my node - s_node_t node = {0}; - node.id = atoi(argv[1]); - get_mailbox(node.id, node.mailbox); - node.next_finger_to_fix = 0; - node.fingers = xbt_new0(s_finger_t, nb_bits); - node.last_change_date = init_time; - - for (i = 0; i < nb_bits; i++) { - node.fingers[i].id = -1; - set_finger(&node, i, node.id); - } - - if (argc == 3) { // first ring - //deadline = atof(argv[2]); - create(&node); - join_success = 1; - } - else { - int known_id = atoi(argv[2]); - //double sleep_time = atof(argv[3]); - //deadline = atof(argv[4]); - - /* - // sleep before starting - XBT_DEBUG("Let's sleep during %f", sleep_time); - MSG_process_sleep(sleep_time); - */ - XBT_DEBUG("Hey! Let's join the system."); - - join_success = join(&node, known_id); - - if(join_success) - j = 1; - - //MC_assert(!join_success); - - } - - if (join_success) { - - XBT_INFO("Node %d joined the ring", node.id); - - //while (MSG_get_clock() < init_time + deadline - // && MSG_get_clock() < node.last_change_date + 1000 - //&& MSG_get_clock() < max_simulation_time) { - - //while (!(stab == 1 || fix == 1 || check == 1 || rand_look == 1)) { - - while(1){ - - if (node.comm_receive == NULL) { - task_received = NULL; - node.comm_receive = MSG_task_irecv(&task_received, node.mailbox); - // FIXME: do not make MSG_task_irecv() calls from several functions - } - - if (!MSG_comm_test(node.comm_receive)) { - - #ifdef HAVE_MC - if(MC_is_active()){ - if(end == 0 && MC_random()){ - stabilize(&node); - end = 1; - }else if(end == 0 && MC_random()){ - fix_fingers(&node); - end = 1; - }else if(end == 0 && MC_random()){ - check_predecessor(&node); - end = 1; - }else if(end == 0 && MC_random()){ - random_lookup(&node); - end = 1; - }else{ - MSG_process_sleep(5); - } - }else{ - if (MSG_get_clock() >= next_stabilize_date) { - stabilize(&node); - next_stabilize_date = MSG_get_clock() + periodic_stabilize_delay; - } - else if (MSG_get_clock() >= next_fix_fingers_date) { - fix_fingers(&node); - next_fix_fingers_date = MSG_get_clock() + periodic_fix_fingers_delay; - } - else if (MSG_get_clock() >= next_check_predecessor_date) { - check_predecessor(&node); - next_check_predecessor_date = MSG_get_clock() + periodic_check_predecessor_delay; - } - else if (MSG_get_clock() >= next_lookup_date) { - random_lookup(&node); - next_lookup_date = MSG_get_clock() + periodic_lookup_delay; - } - else { - // nothing to do: sleep for a while - MSG_process_sleep(5); - } - } - #else - if (MSG_get_clock() >= next_stabilize_date) { - stabilize(&node); - next_stabilize_date = MSG_get_clock() + periodic_stabilize_delay; - } - else if (MSG_get_clock() >= next_fix_fingers_date) { - fix_fingers(&node); - next_fix_fingers_date = MSG_get_clock() + periodic_fix_fingers_delay; - } - else if (MSG_get_clock() >= next_check_predecessor_date) { - check_predecessor(&node); - next_check_predecessor_date = MSG_get_clock() + periodic_check_predecessor_delay; - } - else if (MSG_get_clock() >= next_lookup_date) { - random_lookup(&node); - next_lookup_date = MSG_get_clock() + periodic_lookup_delay; - } - else { - // nothing to do: sleep for a while - MSG_process_sleep(5); - } - #endif - - }else{ - - if (node.comm_receive) { - - XBT_INFO("A transfer has occured"); - - // a transfer has occured - - msg_error_t status = MSG_comm_get_status(node.comm_receive); - - if (status != MSG_OK) { - XBT_INFO("Failed to receive a task. Nevermind."); - MSG_comm_destroy(node.comm_receive); - node.comm_receive = NULL; - } - else { - // the task was successfully received - XBT_INFO("The task was successfully received by node %d", node.id); - MSG_comm_destroy(node.comm_receive); - node.comm_receive = NULL; - handle_task(&node, task_received); - } - } - } - } - - if (node.comm_receive) { - MSG_comm_destroy(node.comm_receive); - node.comm_receive = NULL; - } - - // leave the ring - leave(&node); - - XBT_INFO("Node %d leave the ring", node.id); - //sleep(15); - } - - // stop the simulation - xbt_free(node.fingers); - return 0; -} - -/** - * \brief This function is called when the current node receives a task. - * \param node the current node - * \param task the task to handle (don't touch it then: - * it will be destroyed, reused or forwarded) - */ -static void handle_task(node_t node, msg_task_t task) { - - XBT_DEBUG("Handling task %p", task); - char mailbox[MAILBOX_NAME_SIZE]; - task_data_t task_data = (task_data_t) MSG_task_get_data(task); - e_task_type_t type = task_data->type; - - switch (type) { - - case TASK_FIND_SUCCESSOR: - XBT_DEBUG("Receiving a 'Find Successor' request from %s for id %d", - task_data->issuer_host_name, task_data->request_id); - // is my successor the successor? - if (is_in_interval(task_data->request_id, node->id + 1, node->fingers[0].id)) { - task_data->type = TASK_FIND_SUCCESSOR_ANSWER; - task_data->answer_id = node->fingers[0].id; - XBT_DEBUG("Sending back a 'Find Successor Answer' to %s (mailbox %s): the successor of %d is %d", - task_data->issuer_host_name, - task_data->answer_to, - task_data->request_id, task_data->answer_id); - MSG_task_dsend(task, task_data->answer_to, task_free); - } - else { - // otherwise, forward the request to the closest preceding finger in my table - int closest = closest_preceding_node(node, task_data->request_id); - XBT_DEBUG("Forwarding the 'Find Successor' request for id %d to my closest preceding finger %d", - task_data->request_id, closest); - get_mailbox(closest, mailbox); - MSG_task_dsend(task, mailbox, task_free); - } - break; - - case TASK_GET_PREDECESSOR: - XBT_DEBUG("Receiving a 'Get Predecessor' request from %s", task_data->issuer_host_name); - task_data->type = TASK_GET_PREDECESSOR_ANSWER; - task_data->answer_id = node->pred_id; - XBT_DEBUG("Sending back a 'Get Predecessor Answer' to %s via mailbox '%s': my predecessor is %d", - task_data->issuer_host_name, - task_data->answer_to, task_data->answer_id); - MSG_task_dsend(task, task_data->answer_to, task_free); - break; - - case TASK_NOTIFY: - // someone is telling me that he may be my new predecessor - XBT_DEBUG("Receiving a 'Notify' request from %s", task_data->issuer_host_name); - notify(node, task_data->request_id); - task_free(task); - break; - - case TASK_PREDECESSOR_LEAVING: - // my predecessor is about to quit - XBT_DEBUG("Receiving a 'Predecessor Leaving' message from %s", task_data->issuer_host_name); - // modify my predecessor - set_predecessor(node, task_data->request_id); - task_free(task); - /*TODO : - >> notify my new predecessor - >> send a notify_predecessors !! - */ - break; - - case TASK_SUCCESSOR_LEAVING: - // my successor is about to quit - XBT_DEBUG("Receiving a 'Successor Leaving' message from %s", task_data->issuer_host_name); - // modify my successor FIXME : this should be implicit ? - set_finger(node, 0, task_data->request_id); - task_free(task); - /* TODO - >> notify my new successor - >> update my table & predecessors table */ - break; - - case TASK_FIND_SUCCESSOR_ANSWER: - case TASK_GET_PREDECESSOR_ANSWER: - XBT_DEBUG("Ignoring unexpected task of type %d (%p)", (int)type, task); - task_free(task); - break; - } -} - -/** - * \brief Initializes the current node as the first one of the system. - * \param node the current node - */ -static void create(node_t node) -{ - XBT_DEBUG("Create a new Chord ring..."); - set_predecessor(node, -1); // -1 means that I have no predecessor - print_finger_table(node); -} - -/** - * \brief Makes the current node join the ring, knowing the id of a node - * already in the ring - * \param node the current node - * \param known_id id of a node already in the ring - * \return 1 if the join operation succeeded, 0 otherwise - */ -static int join(node_t node, int known_id) -{ - XBT_INFO("Joining the ring with id %d, knowing node %d", node->id, known_id); - set_predecessor(node, -1); // no predecessor (yet) - - /* - int i; - for (i = 0; i < nb_bits; i++) { - set_finger(node, i, known_id); - } - */ - - int successor_id = remote_find_successor(node, known_id, node->id); - if (successor_id == -1) { - XBT_INFO("Cannot join the ring."); - } - else { - set_finger(node, 0, successor_id); - print_finger_table(node); - } - - return successor_id != -1; -} - -/** - * \brief Makes the current node quit the system - * \param node the current node - */ -static void leave(node_t node) -{ - XBT_DEBUG("Well Guys! I Think it's time for me to quit ;)"); - quit_notify(node); -} - -/* - * \brief Notifies the successor and the predecessor of the current node - * of the departure - * \param node the current node - */ -static void quit_notify(node_t node) -{ - char mailbox[MAILBOX_NAME_SIZE]; - //send the PREDECESSOR_LEAVING to our successor - task_data_t req_data = xbt_new0(s_task_data_t,1); - req_data->type = TASK_PREDECESSOR_LEAVING; - req_data->request_id = node->pred_id; - get_mailbox(node->id, req_data->answer_to); - req_data->issuer_host_name = MSG_host_get_name(MSG_host_self()); - - msg_task_t task_sent = MSG_task_create(NULL, COMP_SIZE, COMM_SIZE, req_data); - XBT_DEBUG("Sending a 'PREDECESSOR_LEAVING' to my successor %d",node->fingers[0].id); - MSG_task_send_with_timeout(task_sent, node->fingers[0].mailbox, timeout); - - //send the SUCCESSOR_LEAVING to our predecessor - get_mailbox(node->pred_id, mailbox); - task_data_t req_data_s = xbt_new0(s_task_data_t,1); - req_data_s->type = TASK_SUCCESSOR_LEAVING; - req_data_s->request_id = node->fingers[0].id; - req_data_s->request_id = node->pred_id; - get_mailbox(node->id, req_data_s->answer_to); - req_data_s->issuer_host_name = MSG_host_get_name(MSG_host_self()); - - msg_task_t task_sent_s = MSG_task_create(NULL, COMP_SIZE, COMM_SIZE, req_data_s); - XBT_DEBUG("Sending a 'SUCCESSOR_LEAVING' to my predecessor %d",node->pred_id); - MSG_task_send_with_timeout(task_sent_s, mailbox, timeout); - -} - -/** - * \brief Makes the current node find the successor node of an id. - * \param node the current node - * \param id the id to find - * \return the id of the successor node, or -1 if the request failed - */ -static int find_successor(node_t node, int id) -{ - // is my successor the successor? - if (is_in_interval(id, node->id + 1, node->fingers[0].id)) { - return node->fingers[0].id; - } - - // otherwise, ask the closest preceding finger in my table - int closest = closest_preceding_node(node, id); - return remote_find_successor(node, closest, id); -} - -/** - * \brief Asks another node the successor node of an id. - * \param node the current node - * \param ask_to the node to ask to - * \param id the id to find - * \return the id of the successor node, or -1 if the request failed - */ -static int remote_find_successor(node_t node, int ask_to, int id) -{ - int successor = -1; - int stop = 0; - char mailbox[MAILBOX_NAME_SIZE]; - get_mailbox(ask_to, mailbox); - task_data_t req_data = xbt_new0(s_task_data_t, 1); - req_data->type = TASK_FIND_SUCCESSOR; - req_data->request_id = id; - get_mailbox(node->id, req_data->answer_to); - req_data->issuer_host_name = MSG_host_get_name(MSG_host_self()); - - // send a "Find Successor" request to ask_to_id - msg_task_t task_sent = MSG_task_create(NULL, COMP_SIZE, COMM_SIZE, req_data); - XBT_DEBUG("Sending a 'Find Successor' request (task %p) to %d for id %d", task_sent, ask_to, id); - msg_error_t res = MSG_task_send_with_timeout(task_sent, mailbox, timeout); - - if (res != MSG_OK) { - XBT_DEBUG("Failed to send the 'Find Successor' request (task %p) to %d for id %d", - task_sent, ask_to, id); - task_free(task_sent); - } - else { - - // receive the answer - XBT_DEBUG("Sent a 'Find Successor' request (task %p) to %d for key %d, waiting for the answer", - task_sent, ask_to, id); - - do { - if (node->comm_receive == NULL) { - msg_task_t task_received = NULL; - node->comm_receive = MSG_task_irecv(&task_received, node->mailbox); - } - - res = MSG_comm_wait(node->comm_receive, timeout); - - if (res != MSG_OK) { - XBT_DEBUG("Failed to receive the answer to my 'Find Successor' request (task %p): %d", - task_sent, (int)res); - stop = 1; - MSG_comm_destroy(node->comm_receive); - node->comm_receive = NULL; - } - else { - msg_task_t task_received = MSG_comm_get_task(node->comm_receive); - XBT_DEBUG("Received a task (%p)", task_received); - task_data_t ans_data = MSG_task_get_data(task_received); - - if (MC_is_active()) { - // the model-checker is expected to find a counter-example here. - // - // As you can see in the test right below, task_received is not always equal to task_sent - // (as messages from differing round can interleave). But the previous version of this code - // wrongly assumed that, leading to problems. But this only occured on large platforms, - // leading to hardly usable traces. So we used the model-checker to track down the issue, - // and we came down to this test, that explained the bug in a snap. - //MC_assert(task_received == task_sent); - } - - if (task_received != task_sent) { - // this is not the expected answer - MSG_comm_destroy(node->comm_receive); - node->comm_receive = NULL; - handle_task(node, task_received); - } - else { - // this is our answer - XBT_DEBUG("Received the answer to my 'Find Successor' request for id %d (task %p): the successor of key %d is %d", - ans_data->request_id, task_received, id, ans_data->answer_id); - successor = ans_data->answer_id; - stop = 1; - MSG_comm_destroy(node->comm_receive); - node->comm_receive = NULL; - task_free(task_received); - } - } - } while (!stop); - } - - return successor; -} - -/** - * \brief Asks another node its predecessor. - * \param node the current node - * \param ask_to the node to ask to - * \return the id of its predecessor node, or -1 if the request failed - * (or if the node does not know its predecessor) - */ -static int remote_get_predecessor(node_t node, int ask_to) -{ - int predecessor_id = -1; - int stop = 0; - char mailbox[MAILBOX_NAME_SIZE]; - get_mailbox(ask_to, mailbox); - task_data_t req_data = xbt_new0(s_task_data_t, 1); - req_data->type = TASK_GET_PREDECESSOR; - get_mailbox(node->id, req_data->answer_to); - req_data->issuer_host_name = MSG_host_get_name(MSG_host_self()); - - // send a "Get Predecessor" request to ask_to_id - XBT_DEBUG("Sending a 'Get Predecessor' request to %d", ask_to); - msg_task_t task_sent = MSG_task_create(NULL, COMP_SIZE, COMM_SIZE, req_data); - msg_error_t res = MSG_task_send_with_timeout(task_sent, mailbox, timeout); - - if (res != MSG_OK) { - XBT_DEBUG("Failed to send the 'Get Predecessor' request (task %p) to %d", - task_sent, ask_to); - task_free(task_sent); - } - else { - - // receive the answer - XBT_DEBUG("Sent 'Get Predecessor' request (task %p) to %d, waiting for the answer on my mailbox '%s'", - task_sent, ask_to, req_data->answer_to); - - do { - if (node->comm_receive == NULL) { // FIXME simplify this - msg_task_t task_received = NULL; - node->comm_receive = MSG_task_irecv(&task_received, node->mailbox); - } - - res = MSG_comm_wait(node->comm_receive, timeout); - - if (res != MSG_OK) { - XBT_DEBUG("Failed to receive the answer to my 'Get Predecessor' request (task %p): %d", - task_sent, (int)res); - stop = 1; - MSG_comm_destroy(node->comm_receive); - node->comm_receive = NULL; - } - else { - msg_task_t task_received = MSG_comm_get_task(node->comm_receive); - task_data_t ans_data = MSG_task_get_data(task_received); - - /*if (MC_is_active()) { - MC_assert(task_received == task_sent); - }*/ - - if (task_received != task_sent) { - MSG_comm_destroy(node->comm_receive); - node->comm_receive = NULL; - handle_task(node, task_received); - } - else { - XBT_DEBUG("Received the answer to my 'Get Predecessor' request (task %p): the predecessor of node %d is %d", - task_received, ask_to, ans_data->answer_id); - predecessor_id = ans_data->answer_id; - stop = 1; - MSG_comm_destroy(node->comm_receive); - node->comm_receive = NULL; - task_free(task_received); - } - } - } while (!stop); - } - - return predecessor_id; -} - -/** - * \brief Returns the closest preceding finger of an id - * with respect to the finger table of the current node. - * \param node the current node - * \param id the id to find - * \return the closest preceding finger of that id - */ -int closest_preceding_node(node_t node, int id) -{ - int i; - for (i = nb_bits - 1; i >= 0; i--) { - if (is_in_interval(node->fingers[i].id, node->id + 1, id - 1)) { - return node->fingers[i].id; - } - } - return node->id; -} - -/** - * \brief This function is called periodically. It checks the immediate - * successor of the current node. - * \param node the current node - */ -static void stabilize(node_t node) -{ - XBT_DEBUG("Stabilizing node %d", node->id); - - // get the predecessor of my immediate successor - int candidate_id; - int successor_id = node->fingers[0].id; - if (successor_id != node->id) { - candidate_id = remote_get_predecessor(node, successor_id); - } - else { - candidate_id = node->pred_id; - } - - // this node is a candidate to become my new successor - if (candidate_id != -1 - && is_in_interval(candidate_id, node->id + 1, successor_id - 1)) { - set_finger(node, 0, candidate_id); - } - if (successor_id != node->id) { - remote_notify(node, successor_id, node->id); - } -} - -/** - * \brief Notifies the current node that its predecessor may have changed. - * \param node the current node - * \param candidate_id the possible new predecessor - */ -static void notify(node_t node, int predecessor_candidate_id) { - - XBT_DEBUG("Notifying node %d", node->id); - - if (node->pred_id == -1 - || is_in_interval(predecessor_candidate_id, node->pred_id + 1, node->id - 1)) { - - set_predecessor(node, predecessor_candidate_id); - print_finger_table(node); - } - else { - XBT_DEBUG("I don't have to change my predecessor to %d", predecessor_candidate_id); - } -} - -/** - * \brief Notifies a remote node that its predecessor may have changed. - * \param node the current node - * \param notify_id id of the node to notify - * \param candidate_id the possible new predecessor - */ -static void remote_notify(node_t node, int notify_id, int predecessor_candidate_id) { - - task_data_t req_data = xbt_new0(s_task_data_t, 1); - req_data->type = TASK_NOTIFY; - req_data->request_id = predecessor_candidate_id; - req_data->issuer_host_name = MSG_host_get_name(MSG_host_self()); - - // send a "Notify" request to notify_id - msg_task_t task = MSG_task_create(NULL, COMP_SIZE, COMM_SIZE, req_data); - XBT_DEBUG("Sending a 'Notify' request (task %p) to %d", task, notify_id); - char mailbox[MAILBOX_NAME_SIZE]; - get_mailbox(notify_id, mailbox); - MSG_task_dsend(task, mailbox, task_free); - } - -/** - * \brief This function is called periodically. - * It refreshes the finger table of the current node. - * \param node the current node - */ -static void fix_fingers(node_t node) { - - XBT_DEBUG("Fixing fingers"); - int i = node->next_finger_to_fix; - int id = find_successor(node, node->id + powers2[i]); - if (id != -1) { - - if (id != node->fingers[i].id) { - set_finger(node, i, id); - print_finger_table(node); - } - node->next_finger_to_fix = (i + 1) % nb_bits; - } -} - -/** - * \brief This function is called periodically. - * It checks whether the predecessor has failed - * \param node the current node - */ -static void check_predecessor(node_t node) -{ - XBT_DEBUG("Checking whether my predecessor is alive"); - // TODO -} - -/** - * \brief Performs a find successor request to a random id. - * \param node the current node - */ -static void random_lookup(node_t node) -{ - int id = 1337; // TODO pick a pseudorandom id - XBT_DEBUG("Making a lookup request for id %d", id); - find_successor(node, id); -} - -/** - * \brief Main function. - */ -int main(int argc, char *argv[]) -{ - MSG_init(&argc, argv); - if (argc < 3) { - printf("Usage: %s [-nb_bits=n] [-timeout=t] platform_file deployment_file\n", argv[0]); - printf("example: %s ../../msg_platform.xml deploy_chord1.xml\n", argv[0]); - exit(1); - } - - char **options = &argv[1]; - while (!strncmp(options[0], "-", 1)) { - - int length = strlen("-nb_bits="); - if (!strncmp(options[0], "-nb_bits=", length) && strlen(options[0]) > length) { - nb_bits = atoi(options[0] + length); - XBT_DEBUG("Set nb_bits to %d", nb_bits); - } - else { - - length = strlen("-timeout="); - if (!strncmp(options[0], "-timeout=", length) && strlen(options[0]) > length) { - timeout = atoi(options[0] + length); - XBT_DEBUG("Set timeout to %d", timeout); - } - else { - xbt_die("Invalid chord option '%s'", options[0]); - } - } - options++; - } - - const char* platform_file = options[0]; - const char* application_file = options[1]; - - chord_initialize(); - - //MSG_config("model-check/property","promela_join"); - MC_automaton_new_propositional_symbol("j", &predJ); - - MSG_create_environment(platform_file); - - MSG_function_register("node", node); - MSG_launch_application(application_file); - - msg_error_t res = MSG_main(); - XBT_INFO("Simulated time: %g", MSG_get_clock()); - - chord_exit(); - - if (res == MSG_OK) - return 0; - else - return 1; -} diff --git a/examples/msg/mc/chord/chord_neverjoin.tesh b/examples/msg/mc/chord/chord_neverjoin.tesh deleted file mode 100644 index 5e4fcfb80e..0000000000 --- a/examples/msg/mc/chord/chord_neverjoin.tesh +++ /dev/null @@ -1,30 +0,0 @@ -#! ./tesh - -! expect signal SIGABRT -! timeout 200 -$ ${bindir:=.}/chord ../../msg_platform.xml deploy_chord4.xml --cfg=model-check:1 "--log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n" -> [ 0.000000] (0:@) Configuration change: Set 'model-check' to '1' -> [ 0.000000] (0:@) Check a safety property -> [ 0.000000] (1:node@Jean_Yves) Joining the ring with id 6, knowing node 16 -> [ 0.000000] (2:node@Boivin) Joining the ring with id 10, knowing node 16 -> [ 0.000000] (3:node@TeX) Joining the ring with id 8, knowing node 16 -> [ 0.000000] (4:node@Jacquelin) A transfer has occured -> [ 0.000000] (4:node@Jacquelin) The task was successfully received by node 16 -> [ 0.000000] (1:node@Jean_Yves) Node 6 joined the ring -> [ 0.000000] (1:node@Jean_Yves) ************************** -> [ 0.000000] (1:node@Jean_Yves) *** PROPERTY NOT VALID *** -> [ 0.000000] (1:node@Jean_Yves) ************************** -> [ 0.000000] (1:node@Jean_Yves) Counter-example execution trace: -> [ 0.000000] (1:node@Jean_Yves) [(1)node] iSend (src=node, buff=(verbose only), size=(verbose only)) -> [ 0.000000] (1:node@Jean_Yves) [(2)node] iSend (src=node, buff=(verbose only), size=(verbose only)) -> [ 0.000000] (1:node@Jean_Yves) [(3)node] iSend (src=node, buff=(verbose only), size=(verbose only)) -> [ 0.000000] (1:node@Jean_Yves) [(4)node] iRecv (dst=node, buff=(verbose only), size=(verbose only)) -> [ 0.000000] (1:node@Jean_Yves) [(1)node] Wait (comm=(verbose only) [(1)node -> (4)node]) -> [ 0.000000] (1:node@Jean_Yves) [(1)node] iRecv (dst=node, buff=(verbose only), size=(verbose only)) -> [ 0.000000] (1:node@Jean_Yves) [(4)node] Test TRUE (comm=(verbose only) [(1)node -> (4)node]) -> [ 0.000000] (1:node@Jean_Yves) [(4)node] iSend (src=node, buff=(verbose only), size=(verbose only)) -> [ 0.000000] (1:node@Jean_Yves) [(1)node] Wait (comm=(verbose only) [(4)node -> (1)node]) -> [ 0.000000] (1:node@Jean_Yves) Expanded states = 9 -> [ 0.000000] (1:node@Jean_Yves) Visited states = 9 -> [ 0.000000] (1:node@Jean_Yves) Executed transitions = 9 - diff --git a/examples/msg/mc/chord/chord_neverjoin_timeout_visited.tesh b/examples/msg/mc/chord/chord_neverjoin_timeout_visited.tesh deleted file mode 100644 index a0afde7775..0000000000 --- a/examples/msg/mc/chord/chord_neverjoin_timeout_visited.tesh +++ /dev/null @@ -1,80 +0,0 @@ -#! ./tesh - -! expect signal SIGABRT -! timeout 200 -$ ${bindir:=.}/chord ../../msg_platform.xml deploy_chord4.xml --cfg=model-check:1 "--log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n" --cfg=contexts/factory:ucontext --cfg=model-check/timeout:1 --cfg=model-check/visited:100 -> [ 0.000000] (0:@) Configuration change: Set 'model-check' to '1' -> [ 0.000000] (0:@) Configuration change: Set 'model-check/timeout' to '1' -> [ 0.000000] (0:@) Configuration change: Set 'model-check/visited' to '100' -> [ 0.000000] (0:@) Check a safety property -> [ 0.000000] (1:node@Jean_Yves) Joining the ring with id 6, knowing node 16 -> [ 0.000000] (2:node@Boivin) Joining the ring with id 10, knowing node 16 -> [ 0.000000] (3:node@TeX) Joining the ring with id 8, knowing node 16 -> [ 0.000000] (1:node@Jean_Yves) Cannot join the ring. -> [ 0.000000] (2:node@Boivin) Cannot join the ring. -> [ 0.000000] (3:node@TeX) Cannot join the ring. -> [ 0.000000] (1:node@Jean_Yves) Cannot join the ring. -> [ 0.000000] (2:node@Boivin) Cannot join the ring. -> [ 0.000000] (3:node@TeX) Cannot join the ring. -> [ 0.000000] (1:node@Jean_Yves) Cannot join the ring. -> [ 0.000000] (2:node@Boivin) Cannot join the ring. -> [ 0.000000] (3:node@TeX) Cannot join the ring. -> [ 0.000000] (1:node@Jean_Yves) Cannot join the ring. -> [ 0.000000] (2:node@Boivin) Cannot join the ring. -> [ 0.000000] (3:node@TeX) Cannot join the ring. -> [ 0.000000] (1:node@Jean_Yves) Cannot join the ring. -> [ 0.000000] (2:node@Boivin) Cannot join the ring. -> [ 0.000000] (3:node@TeX) Cannot join the ring. -> [ 0.000000] (1:node@Jean_Yves) Cannot join the ring. -> [ 0.000000] (2:node@Boivin) Cannot join the ring. -> [ 0.000000] (3:node@TeX) Cannot join the ring. -> [ 0.000000] (4:node@Jacquelin) A transfer has occured -> [ 0.000000] (4:node@Jacquelin) The task was successfully received by node 16 -> [ 0.000000] (1:node@Jean_Yves) Cannot join the ring. -> [ 0.000000] (2:node@Boivin) Cannot join the ring. -> [ 0.000000] (3:node@TeX) Cannot join the ring. -> [ 0.000000] (4:node@Jacquelin) A transfer has occured -> [ 0.000000] (4:node@Jacquelin) The task was successfully received by node 16 -> [ 0.000000] (1:node@Jean_Yves) Cannot join the ring. -> [ 0.000000] (2:node@Boivin) Cannot join the ring. -> [ 0.000000] (3:node@TeX) Cannot join the ring. -> [ 0.000000] (4:node@Jacquelin) A transfer has occured -> [ 0.000000] (4:node@Jacquelin) The task was successfully received by node 16 -> [ 0.000000] (1:node@Jean_Yves) Cannot join the ring. -> [ 0.000000] (2:node@Boivin) Cannot join the ring. -> [ 0.000000] (3:node@TeX) Cannot join the ring. -> [ 0.000000] (4:node@Jacquelin) A transfer has occured -> [ 0.000000] (4:node@Jacquelin) The task was successfully received by node 16 -> [ 0.000000] (1:node@Jean_Yves) Cannot join the ring. -> [ 0.000000] (2:node@Boivin) Cannot join the ring. -> [ 0.000000] (3:node@TeX) Cannot join the ring. -> [ 0.000000] (4:node@Jacquelin) A transfer has occured -> [ 0.000000] (4:node@Jacquelin) The task was successfully received by node 16 -> [ 0.000000] (1:node@Jean_Yves) Cannot join the ring. -> [ 0.000000] (2:node@Boivin) Cannot join the ring. -> [ 0.000000] (4:node@Jacquelin) A transfer has occured -> [ 0.000000] (4:node@Jacquelin) The task was successfully received by node 16 -> [ 0.000000] (3:node@TeX) Cannot join the ring. -> [ 0.000000] (1:node@Jean_Yves) Cannot join the ring. -> [ 0.000000] (2:node@Boivin) Cannot join the ring. -> [ 0.000000] (4:node@Jacquelin) A transfer has occured -> [ 0.000000] (4:node@Jacquelin) The task was successfully received by node 16 -> [ 0.000000] (3:node@TeX) Node 8 joined the ring -> [ 0.000000] (3:node@TeX) ************************** -> [ 0.000000] (3:node@TeX) *** PROPERTY NOT VALID *** -> [ 0.000000] (3:node@TeX) ************************** -> [ 0.000000] (3:node@TeX) Counter-example execution trace: -> [ 0.000000] (3:node@TeX) [(1)node] iSend (src=node, buff=(verbose only), size=(verbose only)) -> [ 0.000000] (3:node@TeX) [(1)node] WaitTimeout (comm=(verbose only)) -> [ 0.000000] (3:node@TeX) [(2)node] iSend (src=node, buff=(verbose only), size=(verbose only)) -> [ 0.000000] (3:node@TeX) [(2)node] WaitTimeout (comm=(verbose only)) -> [ 0.000000] (3:node@TeX) [(3)node] iSend (src=node, buff=(verbose only), size=(verbose only)) -> [ 0.000000] (3:node@TeX) [(4)node] iRecv (dst=node, buff=(verbose only), size=(verbose only)) -> [ 0.000000] (3:node@TeX) [(3)node] Wait (comm=(verbose only) [(3)node -> (4)node]) -> [ 0.000000] (3:node@TeX) [(4)node] Test TRUE (comm=(verbose only) [(3)node -> (4)node]) -> [ 0.000000] (3:node@TeX) [(3)node] iRecv (dst=node, buff=(verbose only), size=(verbose only)) -> [ 0.000000] (3:node@TeX) [(4)node] iSend (src=node, buff=(verbose only), size=(verbose only)) -> [ 0.000000] (3:node@TeX) [(3)node] Wait (comm=(verbose only) [(4)node -> (3)node]) -> [ 0.000000] (3:node@TeX) Expanded states = 42 -> [ 0.000000] (3:node@TeX) Visited states = 170 -> [ 0.000000] (3:node@TeX) Executed transitions = 159 diff --git a/examples/msg/mc/chord/deploy_chord4.xml b/examples/msg/mc/chord/deploy_chord4.xml deleted file mode 100644 index f03b06bf33..0000000000 --- a/examples/msg/mc/chord/deploy_chord4.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/msg/mc/parse_dwarf b/examples/msg/mc/parse_dwarf deleted file mode 100644 index 0073de9f85..0000000000 --- a/examples/msg/mc/parse_dwarf +++ /dev/null @@ -1,100 +0,0 @@ -#!/usr/bin/perl - -# infos = [file, ref, level, type of declaration, parent (if level>1), name, type (base type or ref dwarf), global, size, address] -# type of declaration : base_type, pointer_type, const_type, structure_type, member, enumeration_type, enumerator - - -use strict; -use warnings; -use Switch; - -my ($argument) = @ARGV; - -my $executable = $argument; -open (FILE, $executable) or die "E/S : $!\n"; - -my @infos; - -my $ligne=""; -my @champs; - -my $file = 0; -my $level=1; -my $ref=0; my $parent_ref=0; -my $type_decl="undef"; -my $name="undef"; -my $type="undef"; -my $size=0; -my $global = 0; -my $address=0; - - -while ($ligne=) { - - @champs = split /\s+/, $ligne; - - if(@champs > 0){ - - if ($champs[0] eq "<") { # new declaration - - # save last information in infos - if( $level>0 ) { - my @entry = ($file, $ref, $level, $type_decl, $parent_ref, $name, $type, $global, $size, $address); - push @infos, \@entry; - } - - # get new information - my @lr = split /> 0){ # level = 0, information about source file - - if($level < $lr[0]){ - $parent_ref = $ref; - }else{ - if($lr[0] == 1){ - $parent_ref = 0; - } - } - - $level = $lr[0]; # level - $ref = substr($lr[1], 0, length($lr[1]) -1 ); # dwarf ref - $type_decl = $champs[2]; - - }else{ # create new hashtable - - $file++; - $level=0; - } - - }else{ - - switch ($champs[1]){ - - case "DW_AT_name" { $name = substr($champs[2], 1, length($champs[2]) - 2); } - case "DW_AT_type" { $type = substr($champs[2], 1, length($champs[2]) - 2); } - case "DW_AT_byte_size" { $size = hex($champs[2]); } - case "DW_AT_external" { $global = 1; } - case "DW_AT_location" { - if ($global == 1) { - $address = $champs[3]; - } - } - else { $global = 0;} - - - } - #print $champs[1]." ".$champs[2]."\n"; - } - } -} - -# save last information in infos -my @entry = ($file, $ref, $level, $type_decl, $parent_ref, $name, $type, $global, $size, $address); -push @infos, \@entry; - -my $i; - -printf "%5s %12s %6s %30s %11s %60s %15s %9s %5s %10s\n", "file", "ref", "level", "type of declaration", "parent", "name", "type", "isGlobal", "size", "address"; -for($i = 0; $i < @infos; $i++){ - printf "%5s %12s %6s %30s %11s %60s %15s %9s %5s %10s\n", $infos[$i]->[0], $infos[$i]->[1], $infos[$i]->[2], $infos[$i]->[3], $infos[$i]->[4], $infos[$i]->[5], $infos[$i]->[6], $infos[$i]->[7], $infos[$i]->[8], $infos[$i]->[9]; -} diff --git a/examples/msg/mc/test/deploy_snapshot_comparison.xml b/examples/msg/mc/test/deploy_snapshot_comparison.xml deleted file mode 100644 index 70067b51f9..0000000000 --- a/examples/msg/mc/test/deploy_snapshot_comparison.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/examples/msg/mc/test/promela b/examples/msg/mc/test/promela deleted file mode 100644 index 54b9747fed..0000000000 --- a/examples/msg/mc/test/promela +++ /dev/null @@ -1,10 +0,0 @@ -never { -T0_init : /* init */ - if - :: (1) -> goto accept_S2 - fi; -accept_S2 : /* 1 */ - if - :: (1) -> goto accept_S2 - fi; -} \ No newline at end of file diff --git a/examples/msg/mc/test/snapshot_comparison1.c b/examples/msg/mc/test/snapshot_comparison1.c deleted file mode 100644 index 126c590243..0000000000 --- a/examples/msg/mc/test/snapshot_comparison1.c +++ /dev/null @@ -1,55 +0,0 @@ -/* Copyright (c) 2012. 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. */ - -#include -#include -#include "mc/mc.h" - -XBT_LOG_NEW_DEFAULT_CATEGORY(snapshot_comparison_liveness1, "Debug information for snasphot comparison liveness1 test example"); - -int test(int argc, char **argv); - -int test(int argc, char **argv){ - - MSG_process_sleep(1); - - XBT_INFO("**** Start test ****"); - XBT_INFO("Take two successive snapshots (No modification)"); - - void *snap1 = MC_snapshot(); - - XBT_INFO("First snapshot"); - - MSG_process_sleep(1); - - void *snap2 = MC_snapshot(); - - MSG_process_sleep(1); - - XBT_INFO("Second snapshot"); - - XBT_INFO("Test result : %d (0 = state equality, 1 = different states)", MC_compare_snapshots(snap1, snap2)); - - XBT_INFO("**** End test ****"); - - xbt_abort(); -} - -int main(int argc, char **argv){ - MSG_init(&argc, argv); - - MSG_config("model-check/property","promela"); - - MSG_create_environment("snapshot_comparison_platform.xml"); - - MSG_function_register("test", test); - - MSG_launch_application("deploy_snapshot_comparison.xml"); - - MSG_main(); - - return 0; -} diff --git a/examples/msg/mc/test/snapshot_comparison1.tesh b/examples/msg/mc/test/snapshot_comparison1.tesh deleted file mode 100644 index 119844a1f2..0000000000 --- a/examples/msg/mc/test/snapshot_comparison1.tesh +++ /dev/null @@ -1,13 +0,0 @@ -#! ./tesh - -! expect signal SIGABRT -! timeout 200 -$ ${bindir:=.}/snapshot_comparison1 --cfg=model-check:1 "--log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n" -> [ 0.000000] (0:@) Configuration change: Set 'model-check' to '1' -> [ 0.000000] (0:@) Check the liveness property promela -> [ 0.000000] (1:test@HostA) **** Start test **** -> [ 0.000000] (1:test@HostA) Take two successive snapshots (No modification) -> [ 0.000000] (1:test@HostA) First snapshot -> [ 0.000000] (1:test@HostA) Second snapshot -> [ 0.000000] (1:test@HostA) Test result : 0 (0 = state equality, 1 = different states) -> [ 0.000000] (1:test@HostA) **** End test **** diff --git a/examples/msg/mc/test/snapshot_comparison2.c b/examples/msg/mc/test/snapshot_comparison2.c deleted file mode 100644 index 9c08973e5c..0000000000 --- a/examples/msg/mc/test/snapshot_comparison2.c +++ /dev/null @@ -1,60 +0,0 @@ -/* Copyright (c) 2012. 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. */ - -#include -#include -#include "mc/mc.h" - -XBT_LOG_NEW_DEFAULT_CATEGORY(snapshot_comparison_liveness2, "Debug information for snasphot comparison liveness2 test example"); - -int test(int argc, char **argv); - -int test(int argc, char **argv){ - - MSG_process_sleep(1); - - XBT_INFO("**** Start test ****"); - XBT_INFO("Malloc after first snapshot"); - - void *snap1 = MC_snapshot(); - - MSG_process_sleep(1); - - XBT_INFO("First snapshot"); - - char *toto = xbt_malloc(5); - XBT_INFO("Toto allocated"); - - void *snap2 = MC_snapshot(); - - MSG_process_sleep(1); - - XBT_INFO("Second snapshot"); - - XBT_INFO("Test result : %d (0 = state equality, 1 = different states)", MC_compare_snapshots(snap1, snap2)); - - XBT_INFO("**** End test ****"); - - xbt_free(toto); - - xbt_abort(); -} - -int main(int argc, char **argv){ - MSG_init(&argc, argv); - - MSG_config("model-check/property","promela"); - - MSG_create_environment("snapshot_comparison_platform.xml"); - - MSG_function_register("test", test); - - MSG_launch_application("deploy_snapshot_comparison.xml"); - - MSG_main(); - - return 0; -} diff --git a/examples/msg/mc/test/snapshot_comparison2.tesh b/examples/msg/mc/test/snapshot_comparison2.tesh deleted file mode 100644 index 230bbcce5c..0000000000 --- a/examples/msg/mc/test/snapshot_comparison2.tesh +++ /dev/null @@ -1,14 +0,0 @@ -#! ./tesh - -! expect signal SIGABRT -! timeout 200 -$ ${bindir:=.}/snapshot_comparison2 --cfg=model-check:1 "--log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n" -> [ 0.000000] (0:@) Configuration change: Set 'model-check' to '1' -> [ 0.000000] (0:@) Check the liveness property promela -> [ 0.000000] (1:test@HostA) **** Start test **** -> [ 0.000000] (1:test@HostA) Malloc after first snapshot -> [ 0.000000] (1:test@HostA) First snapshot -> [ 0.000000] (1:test@HostA) Toto allocated -> [ 0.000000] (1:test@HostA) Second snapshot -> [ 0.000000] (1:test@HostA) Test result : 1 (0 = state equality, 1 = different states) -> [ 0.000000] (1:test@HostA) **** End test **** diff --git a/examples/msg/mc/test/snapshot_comparison3.c b/examples/msg/mc/test/snapshot_comparison3.c deleted file mode 100644 index e46578fe99..0000000000 --- a/examples/msg/mc/test/snapshot_comparison3.c +++ /dev/null @@ -1,66 +0,0 @@ -/* Copyright (c) 2012. 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. */ - -#include -#include -#include "mc/mc.h" - -XBT_LOG_NEW_DEFAULT_CATEGORY(snapshot_comparison_liveness3, "Debug information for snasphot comparison liveness3 test example"); - -int test(int argc, char **argv); - -int test(int argc, char **argv){ - - MSG_process_sleep(1); - - XBT_INFO("**** Start test ****"); - XBT_INFO("Malloc and free after first snapshot"); - - char *toto = NULL; - - void *snap1 = MC_snapshot(); - - MSG_process_sleep(1); - - XBT_INFO("First snapshot"); - - toto = xbt_malloc(5); - XBT_INFO("Toto allocated"); - xbt_free(toto); - toto = NULL; - XBT_INFO("Toto free"); - - MSG_process_sleep(1); - - void *snap2 = MC_snapshot(); - - XBT_INFO("Second snapshot"); - - MC_ignore_stack("snap2", "test"); - MC_ignore_stack("snap1", "test"); - - XBT_INFO("Test result : %d (0 = state equality, 1 = different states)", MC_compare_snapshots(snap1, snap2)); - - XBT_INFO("**** End test ****"); - - xbt_abort(); -} - -int main(int argc, char **argv){ - MSG_init(&argc, argv); - - MSG_config("model-check/property","promela"); - - MSG_create_environment("snapshot_comparison_platform.xml"); - - MSG_function_register("test", test); - - MSG_launch_application("deploy_snapshot_comparison.xml"); - - MSG_main(); - - return 0; -} diff --git a/examples/msg/mc/test/snapshot_comparison3.tesh b/examples/msg/mc/test/snapshot_comparison3.tesh deleted file mode 100644 index 6589319479..0000000000 --- a/examples/msg/mc/test/snapshot_comparison3.tesh +++ /dev/null @@ -1,15 +0,0 @@ -#! ./tesh - -! expect signal SIGABRT -! timeout 200 -$ ${bindir:=.}/snapshot_comparison3 --cfg=model-check:1 "--log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n" -> [ 0.000000] (0:@) Configuration change: Set 'model-check' to '1' -> [ 0.000000] (0:@) Check the liveness property promela -> [ 0.000000] (1:test@HostA) **** Start test **** -> [ 0.000000] (1:test@HostA) Malloc and free after first snapshot -> [ 0.000000] (1:test@HostA) First snapshot -> [ 0.000000] (1:test@HostA) Toto allocated -> [ 0.000000] (1:test@HostA) Toto free -> [ 0.000000] (1:test@HostA) Second snapshot -> [ 0.000000] (1:test@HostA) Test result : 0 (0 = state equality, 1 = different states) -> [ 0.000000] (1:test@HostA) **** End test **** diff --git a/examples/msg/mc/test/snapshot_comparison4.c b/examples/msg/mc/test/snapshot_comparison4.c deleted file mode 100644 index bff95bfe0a..0000000000 --- a/examples/msg/mc/test/snapshot_comparison4.c +++ /dev/null @@ -1,64 +0,0 @@ -/* Copyright (c) 2012. 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. */ - -#include -#include -#include "mc/mc.h" - -XBT_LOG_NEW_DEFAULT_CATEGORY(snapshot_comparison_liveness4, "Debug information for snasphot comparison liveness4 test example"); - -int test(int argc, char **argv); - -int test(int argc, char **argv){ - - MSG_process_sleep(1); - - XBT_INFO("**** Start test ****"); - XBT_INFO("Free after first snapshot"); - - char *toto = xbt_malloc(5); - XBT_INFO("Toto allocated"); - - void *snap1 = MC_snapshot(); - - MSG_process_sleep(1); - - XBT_INFO("First snapshot"); - - xbt_free(toto); - XBT_INFO("Toto free"); - - void *snap2 = MC_snapshot(); - - XBT_INFO("Second snapshot"); - - MSG_process_sleep(1); - - MC_ignore_stack("snap2", "test"); - MC_ignore_stack("snap1", "test"); - - XBT_INFO("Test result : %d (0 = state equality, 1 = different states)", MC_compare_snapshots(snap1, snap2)); - - XBT_INFO("**** End test ****"); - - xbt_abort(); -} - -int main(int argc, char **argv){ - MSG_init(&argc, argv); - - MSG_config("model-check/property","promela"); - - MSG_create_environment("snapshot_comparison_platform.xml"); - - MSG_function_register("test", test); - - MSG_launch_application("deploy_snapshot_comparison.xml"); - - MSG_main(); - - return 0; -} diff --git a/examples/msg/mc/test/snapshot_comparison4.tesh b/examples/msg/mc/test/snapshot_comparison4.tesh deleted file mode 100644 index 6f4ca6546d..0000000000 --- a/examples/msg/mc/test/snapshot_comparison4.tesh +++ /dev/null @@ -1,15 +0,0 @@ -#! ./tesh - -! expect signal SIGABRT -! timeout 200 -$ ${bindir:=.}/snapshot_comparison4 --cfg=model-check:1 "--log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n" -> [ 0.000000] (0:@) Configuration change: Set 'model-check' to '1' -> [ 0.000000] (0:@) Check the liveness property promela -> [ 0.000000] (1:test@HostA) **** Start test **** -> [ 0.000000] (1:test@HostA) Free after first snapshot -> [ 0.000000] (1:test@HostA) Toto allocated -> [ 0.000000] (1:test@HostA) First snapshot -> [ 0.000000] (1:test@HostA) Toto free -> [ 0.000000] (1:test@HostA) Second snapshot -> [ 0.000000] (1:test@HostA) Test result : 1 (0 = state equality, 1 = different states) -> [ 0.000000] (1:test@HostA) **** End test **** \ No newline at end of file diff --git a/examples/msg/mc/test/snapshot_comparison5.c b/examples/msg/mc/test/snapshot_comparison5.c deleted file mode 100644 index 307885419a..0000000000 --- a/examples/msg/mc/test/snapshot_comparison5.c +++ /dev/null @@ -1,64 +0,0 @@ -/* Copyright (c) 2012. 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. */ - -#include -#include -#include "mc/mc.h" - -XBT_LOG_NEW_DEFAULT_CATEGORY(snapshot_comparison_liveness5, "Debug information for snasphot comparison liveness5 test example"); - -int test(int argc, char **argv); - -int test(int argc, char **argv){ - - MSG_process_sleep(1); - - XBT_INFO("**** Start test ****"); - XBT_INFO("Increment local variable"); - - int j = 0; - XBT_INFO("j = %d", j); - - void *snap1 = MC_snapshot(); - - MSG_process_sleep(1); - - XBT_INFO("First snapshot"); - - j = 1; - XBT_INFO("j = %d", j); - - void *snap2 = MC_snapshot(); - - MSG_process_sleep(1); - - XBT_INFO("Second snapshot"); - - MC_ignore_stack("snap2", "test"); - MC_ignore_stack("snap1", "test"); - - XBT_INFO("Test result : %d (0 = state equality, 1 = different states)", MC_compare_snapshots(snap1, snap2)); - - XBT_INFO("**** End test ****"); - - xbt_abort(); -} - -int main(int argc, char **argv){ - MSG_init(&argc, argv); - - MSG_config("model-check/property","promela"); - - MSG_create_environment("snapshot_comparison_platform.xml"); - - MSG_function_register("test", test); - - MSG_launch_application("deploy_snapshot_comparison.xml"); - - MSG_main(); - - return 0; -} diff --git a/examples/msg/mc/test/snapshot_comparison5.tesh b/examples/msg/mc/test/snapshot_comparison5.tesh deleted file mode 100644 index d483ae3c7d..0000000000 --- a/examples/msg/mc/test/snapshot_comparison5.tesh +++ /dev/null @@ -1,15 +0,0 @@ -#! ./tesh - -! expect signal SIGABRT -! timeout 200 -$ ${bindir:=.}/snapshot_comparison5 --cfg=model-check:1 "--log=root.fmt:[%10.6r]%e(%i:%P@%h)%e%m%n" -> [ 0.000000] (0:@) Configuration change: Set 'model-check' to '1' -> [ 0.000000] (0:@) Check the liveness property promela -> [ 0.000000] (1:test@HostA) **** Start test **** -> [ 0.000000] (1:test@HostA) Increment local variable -> [ 0.000000] (1:test@HostA) j = 0 -> [ 0.000000] (1:test@HostA) First snapshot -> [ 0.000000] (1:test@HostA) j = 1 -> [ 0.000000] (1:test@HostA) Second snapshot -> [ 0.000000] (1:test@HostA) Test result : 1 (0 = state equality, 1 = different states) -> [ 0.000000] (1:test@HostA) **** End test **** diff --git a/examples/msg/mc/test/snapshot_comparison_platform.xml b/examples/msg/mc/test/snapshot_comparison_platform.xml deleted file mode 100644 index cc4ea2c55b..0000000000 --- a/examples/msg/mc/test/snapshot_comparison_platform.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/examples/simdag/io/CMakeLists.txt b/examples/simdag/io/CMakeLists.txt new file mode 100644 index 0000000000..6288f7fde0 --- /dev/null +++ b/examples/simdag/io/CMakeLists.txt @@ -0,0 +1,31 @@ +cmake_minimum_required(VERSION 2.6) + +set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}") + +add_executable(sd_io sd_io.c) + +### Add definitions for compile +if(NOT WIN32) + target_link_libraries(sd_io simgrid pthread m) +else() + target_link_libraries(sd_io simgrid) +endif() + +set(tesh_files + ${tesh_files} + ${CMAKE_CURRENT_SOURCE_DIR}/io.tesh + PARENT_SCOPE + ) +set(examples_src + ${examples_src} + ${CMAKE_CURRENT_SOURCE_DIR}/sd_io.c + PARENT_SCOPE + ) +set(bin_files + ${bin_files} + PARENT_SCOPE + ) +set(txt_files + ${txt_files} + PARENT_SCOPE + ) diff --git a/examples/simdag/io/io.tesh b/examples/simdag/io/io.tesh new file mode 100644 index 0000000000..201b14736e --- /dev/null +++ b/examples/simdag/io/io.tesh @@ -0,0 +1,7 @@ +#! ./tesh + +$ ${bindir:=.}/io/sd_io ${srcdir:=.}/examples/platforms/storage.xml +> [0.000000] [sd_io/INFO] Workstation 'denise' mounts '/home' +> [0.000000] [sd_io/INFO] Workstation 'alice' mounts '/home' +> [0.000000] [sd_io/INFO] Workstation 'carl' mounts '/home' +> [0.000000] [sd_io/INFO] Workstation 'bob' mounts '/home' diff --git a/examples/simdag/io/sd_io.c b/examples/simdag/io/sd_io.c new file mode 100644 index 0000000000..76a192b16c --- /dev/null +++ b/examples/simdag/io/sd_io.c @@ -0,0 +1,40 @@ +/* Copyright (c) 2013. 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. */ + +#include +#include +#include "simdag/simdag.h" +#include "xbt/ex.h" +#include "xbt/log.h" + +XBT_LOG_NEW_DEFAULT_CATEGORY(sd_io, + "Logging specific to this SimDag example"); +int main(int argc, char **argv) +{ + unsigned int ctr, ctr2; + const SD_workstation_t *workstations; + int total_nworkstations; + xbt_dynar_t current_storage_list; + char *mount_name; + + SD_init(&argc, argv); + /* Set the workstation model to default, as storage is not supported by the + * ptask_L07 model yet. + */ + SD_config("workstation/model", "default"); + SD_create_environment(argv[1]); + workstations = SD_workstation_get_list(); + total_nworkstations = SD_workstation_get_number(); + + for (ctr=0; ctr +#include +#include + +#define GRANT_TAG 0 +#define REQUEST_TAG 1 +#define RELEASE_TAG 2 + +int r, cs; + +static int predR(){ + return r; +} + +static int predCS(){ + return cs; +} + + +int main(int argc, char **argv){ + + //int i; + int err, size, rank; + int recv_buff; + MPI_Status status; + int CS_used = 0; + + /* Initialize MPI */ + err = MPI_Init(&argc, &argv); + if(err != MPI_SUCCESS){ + printf("MPI initialization failed !\n"); + exit(1); + } + + MC_automaton_new_propositional_symbol("r", &predR); + MC_automaton_new_propositional_symbol("cs", &predCS); + + MC_ignore(&(status.count), sizeof(status.count)); + + /* Get number of processes */ + err = MPI_Comm_size(MPI_COMM_WORLD, &size); + /* Get id of this process */ + err = MPI_Comm_rank(MPI_COMM_WORLD, &rank); + + if(rank == 0){ /* Coordinator */ + //for(i=0; iFcs) */ +T0_init : /* init */ + if + :: (1) -> goto T0_init + :: (!cs && r) -> goto accept_S2 + fi; +accept_S2 : /* 1 */ + if + :: (!cs) -> goto accept_S2 + fi; +} diff --git a/include/msg/datatypes.h b/include/msg/datatypes.h index c01b2434c0..c844ad10af 100644 --- a/include/msg/datatypes.h +++ b/include/msg/datatypes.h @@ -113,7 +113,6 @@ typedef struct s_file_info { typedef struct msg_file { char *fullname; /**< @brief file full name (path+name)*/ simdata_file_t simdata; /**< @brief simulator data */ - void *data; /**< @brief user data */ msg_file_info_t info; } s_msg_file_t; diff --git a/include/msg/msg.h b/include/msg/msg.h index 17ed281306..4a95329176 100644 --- a/include/msg/msg.h +++ b/include/msg/msg.h @@ -80,7 +80,10 @@ XBT_PUBLIC(xbt_dynar_t) MSG_environment_as_get_hosts(msg_as_t as); /************************** File handling ***********************************/ XBT_PUBLIC(size_t) MSG_file_read(size_t size, msg_file_t fd); XBT_PUBLIC(size_t) MSG_file_write(size_t size, msg_file_t fd); -XBT_PUBLIC(msg_file_t) MSG_file_open(const char* mount, const char* path); +XBT_PUBLIC(msg_file_t) MSG_file_open(const char* mount, const char* path, + void* data); +XBT_PUBLIC(void*) MSG_file_get_data(msg_file_t fd); +XBT_PUBLIC(msg_error_t) MSG_file_set_data(msg_file_t fd, void * data); XBT_PUBLIC(int) MSG_file_close(msg_file_t fd); XBT_PUBLIC(size_t) MSG_file_get_size(msg_file_t fd); XBT_PUBLIC(void) MSG_file_dump(msg_file_t fd); diff --git a/include/simdag/simdag.h b/include/simdag/simdag.h index 9afe61d509..6d39ab774c 100644 --- a/include/simdag/simdag.h +++ b/include/simdag/simdag.h @@ -105,6 +105,8 @@ XBT_PUBLIC(double) SD_route_get_communication_time(SD_workstation_t src, XBT_PUBLIC(SD_task_t) SD_workstation_get_current_task(SD_workstation_t workstation); +XBT_PUBLIC(xbt_dynar_t) + SD_workstation_get_storage_list(SD_workstation_t workstation); /** @} */ /************************** Task handling ************************************/ @@ -135,6 +137,7 @@ XBT_PUBLIC(void) SD_task_set_rate(SD_task_t task, double rate); XBT_PUBLIC(void) SD_task_watch(SD_task_t task, e_SD_task_state_t state); XBT_PUBLIC(void) SD_task_unwatch(SD_task_t task, e_SD_task_state_t state); XBT_PUBLIC(double) SD_task_get_amount(SD_task_t task); +XBT_PUBLIC(void) SD_task_set_amount(SD_task_t task, double amount); XBT_PUBLIC(double) SD_task_get_alpha(SD_task_t task); XBT_PUBLIC(double) SD_task_get_remaining_amount(SD_task_t task); XBT_PUBLIC(double) SD_task_get_execution_time(SD_task_t task, @@ -225,6 +228,7 @@ XBT_PUBLIC(int) SD_task_dependency_exists(SD_task_t src, SD_task_t dst); * @{ */ XBT_PUBLIC(void) SD_init(int *argc, char **argv); +XBT_PUBLIC(void) SD_config(const char *key, const char *value); XBT_PUBLIC(void) SD_application_reinit(void); XBT_PUBLIC(void) SD_create_environment(const char *platform_file); XBT_PUBLIC(xbt_dynar_t) SD_simulate(double how_long); diff --git a/include/simgrid/modelchecker.h b/include/simgrid/modelchecker.h index 18535fdefc..fae8a40498 100644 --- a/include/simgrid/modelchecker.h +++ b/include/simgrid/modelchecker.h @@ -15,19 +15,24 @@ #ifdef HAVE_MC extern int _sg_do_model_check; /* please don't use directly: we inline MC_is_active, but that's what you should use */ +extern int _sg_mc_visited; #define MC_is_active() _sg_do_model_check +#define MC_visited_reduction() _sg_mc_visited XBT_PUBLIC(void) MC_assert(int); -XBT_PUBLIC(int) MC_random(void); +XBT_PUBLIC(int) MC_random(int min, int max); XBT_PUBLIC(void) MC_automaton_new_propositional_symbol(const char* id, void* fct); XBT_PUBLIC(void *) MC_snapshot(void); XBT_PUBLIC(int) MC_compare_snapshots(void *s1, void *s2); +XBT_PUBLIC(void) MC_cut(void); +XBT_PUBLIC(void) MC_ignore(void *addr, size_t size); #else #define MC_assert(a) xbt_assert(a) #define MC_is_active() 0 +#define MC_visited_reduction() 0 #endif diff --git a/include/simgrid/simix.h b/include/simgrid/simix.h index 4a521c55e2..a13c31cb61 100644 --- a/include/simgrid/simix.h +++ b/include/simgrid/simix.h @@ -285,6 +285,10 @@ XBT_PUBLIC(int) SIMIX_comm_has_send_match(smx_rdv_t rdv, int (*match_fun)(void*, XBT_PUBLIC(int) SIMIX_comm_has_recv_match(smx_rdv_t rdv, int (*match_fun)(void*, void*), void* data); XBT_PUBLIC(void) SIMIX_comm_finish(smx_action_t action); +/*********************************** File *************************************/ +XBT_PUBLIC(void*) SIMIX_file_get_data(smx_file_t fd); +XBT_PUBLIC(void) SIMIX_file_set_data(smx_file_t fd, void *data); + /******************************************************************************/ /* SIMIX simcalls */ /******************************************************************************/ @@ -473,6 +477,8 @@ XBT_PUBLIC(void) simcall_sem_acquire_timeout(smx_sem_t sem, XBT_PUBLIC(int) simcall_sem_get_capacity(smx_sem_t sem); /***************************** File **********************************/ +XBT_PUBLIC(void *) simcall_file_get_data(smx_file_t fd); +XBT_PUBLIC(void) simcall_file_set_data(smx_file_t fd, void *data); XBT_PUBLIC(size_t) simcall_file_read(size_t size, smx_file_t fd); XBT_PUBLIC(size_t) simcall_file_write(size_t size, smx_file_t fd); XBT_PUBLIC(smx_file_t) simcall_file_open(const char* storage, const char* path); @@ -494,7 +500,7 @@ XBT_PUBLIC(xbt_dict_t) simcall_asr_get_properties(const char *name); /************************** MC simcalls **********************************/ XBT_PUBLIC(void *) simcall_mc_snapshot(void); XBT_PUBLIC(int) simcall_mc_compare_snapshots(void *s1, void *s2); -XBT_PUBLIC(int) simcall_mc_random(void); +XBT_PUBLIC(int) simcall_mc_random(int min, int max); /************************** New API simcalls **********************************/ /* TUTORIAL: New API */ diff --git a/include/smpi/mpif.h b/include/smpi/mpif.h index 690380e673..b8424469a1 100644 --- a/include/smpi/mpif.h +++ b/include/smpi/mpif.h @@ -111,14 +111,17 @@ ! This should be equal to the number of int fields in MPI_Status integer MPI_STATUS_SIZE, MPI_STATUSES_IGNORE parameter(MPI_STATUS_SIZE=4) - parameter(MPI_STATUSES_IGNORE=0) + parameter(MPI_STATUSES_IGNORE=-1) - integer MPI_STATUS_IGNORE(MPI_STATUS_SIZE) - common/smpi/ MPI_STATUS_IGNORE + integer MPI_STATUS_IGNORE + parameter(MPI_STATUS_IGNORE=-1) integer MPI_REQUEST_NULL parameter(MPI_REQUEST_NULL=-1) + integer MPI_INTEGER_KIND + parameter(MPI_INTEGER_KIND=4) + ! These should be ordered as in smpi_f77.c integer MPI_DATATYPE_NULL, MPI_BYTE, MPI_CHARACTER, MPI_LOGICAL integer MPI_INTEGER, MPI_INTEGER1, MPI_INTEGER2, MPI_INTEGER4 diff --git a/include/smpi/smpi.h b/include/smpi/smpi.h index 1eebe9fbec..47ffd5f35f 100644 --- a/include/smpi/smpi.h +++ b/include/smpi/smpi.h @@ -167,6 +167,8 @@ typedef struct { #define MPI_STATUS_IGNORE NULL #define MPI_STATUSES_IGNORE NULL +#define MPI_FORTRAN_STATUS_IGNORE -1 +#define MPI_FORTRAN_STATUSES_IGNORE -1 #define MPI_DATATYPE_NULL NULL XBT_PUBLIC_DATA( MPI_Datatype ) MPI_CHAR; @@ -570,6 +572,7 @@ MPI_CALL(XBT_PUBLIC(int), MPI_Errhandler_get, (MPI_Comm comm, MPI_Errhandler* er MPI_CALL(XBT_PUBLIC(int), MPI_Error_string, (int errorcode, char* string, int* resultlen)); MPI_CALL(XBT_PUBLIC(int), MPI_Errhandler_set, (MPI_Comm comm, MPI_Errhandler errhandler)); MPI_CALL(XBT_PUBLIC(int), MPI_Comm_set_errhandler, (MPI_Comm comm, MPI_Errhandler errhandler)); +MPI_CALL(XBT_PUBLIC(int), MPI_Comm_get_errhandler, (MPI_Comm comm, MPI_Errhandler *errhandler)); MPI_CALL(XBT_PUBLIC(int), MPI_Comm_create_errhandler,( MPI_Comm_errhandler_fn *function, MPI_Errhandler *errhandler)); MPI_CALL(XBT_PUBLIC(int), MPI_Comm_call_errhandler,(MPI_Comm comm,int errorcode)); MPI_CALL(XBT_PUBLIC(int), MPI_Add_error_class,( int *errorclass)); diff --git a/include/xbt/mmalloc.h b/include/xbt/mmalloc.h index 5e254eaff9..df40f030d3 100644 --- a/include/xbt/mmalloc.h +++ b/include/xbt/mmalloc.h @@ -19,6 +19,7 @@ #endif #include "xbt/dynar.h" +#include "xbt/dict.h" /* Datatype representing a separate heap. The whole point of the mmalloc module * is to allow several such heaps in the process. It thus works by redefining @@ -58,15 +59,9 @@ xbt_mheap_t mmalloc_get_current_heap(void); int mmalloc_compare_heap(xbt_mheap_t heap1, xbt_mheap_t heap2); int mmalloc_linear_compare_heap(xbt_mheap_t heap1, xbt_mheap_t heap2); void init_heap_information(xbt_mheap_t heap1, xbt_mheap_t heap2, xbt_dynar_t to_ignore1, xbt_dynar_t to_ignore2); -void match_equals(xbt_dynar_t list); -int compare_area(void *area1, void* area2, xbt_dynar_t previous); +int compare_heap_area(void *area1, void* area2, xbt_dynar_t previous, xbt_dict_t all_types, xbt_dict_t other_types, char *type, int pointer_level); void reset_heap_information(void); - -void mmalloc_backtrace_block_display(void* heapinfo, int block); -void mmalloc_backtrace_fragment_display(void* heapinfo, int block, int frag); -void mmalloc_backtrace_display(void *addr); - -int is_free_area(void *area, xbt_mheap_t heap); +int get_pointed_area_size(void *area, int heap); size_t mmalloc_get_bytes_used(xbt_mheap_t); diff --git a/src/bindings/java/jmsg_file.c b/src/bindings/java/jmsg_file.c index 7e77c72e5c..ec40195a28 100644 --- a/src/bindings/java/jmsg_file.c +++ b/src/bindings/java/jmsg_file.c @@ -29,7 +29,7 @@ Java_org_simgrid_msg_File_open(JNIEnv *env, jobject jfile, jobject jstorage, job const char *path = (*env)->GetStringUTFChars(env, jpath, 0); msg_file_t file; - file = MSG_file_open(storage, path); + file = MSG_file_open(storage, path, NULL); jfile_bind(env, jfile, file); (*env)->ReleaseStringUTFChars(env, jstorage, storage); diff --git a/src/include/mc/datatypes.h b/src/include/mc/datatypes.h index 656541b87a..9be94cc804 100644 --- a/src/include/mc/datatypes.h +++ b/src/include/mc/datatypes.h @@ -25,16 +25,6 @@ typedef struct s_mc_heap_ignore_region{ size_t size; }s_mc_heap_ignore_region_t, *mc_heap_ignore_region_t; -typedef struct s_mc_stack_ignore_variable{ - char *var_name; - char *frame; -}s_mc_stack_ignore_variable_t, *mc_stack_ignore_variable_t; - -typedef struct s_mc_data_bss_ignore_variable{ - void *address; - size_t size; -}s_mc_data_bss_ignore_variable_t, *mc_data_bss_ignore_variable_t; - typedef struct s_stack_region{ void *address; char *process_name; @@ -43,20 +33,39 @@ typedef struct s_stack_region{ int block; }s_stack_region_t, *stack_region_t; -typedef struct s_heap_equality{ - void *address1; - void *address2; -}s_heap_equality_t, *heap_equality_t; - -void heap_equality_free_voidp(void *e); void stack_region_free_voidp(void *s); void heap_ignore_region_free(mc_heap_ignore_region_t r); void heap_ignore_region_free_voidp(void *r); -void data_bss_ignore_variable_free(mc_data_bss_ignore_variable_t v); -void data_bss_ignore_variable_free_voidp(void *v); -void stack_ignore_variable_free(mc_stack_ignore_variable_t v); -void stack_ignore_variable_free_voidp(void *v); + +/************ DWARF structures *************/ + +typedef enum{ + e_dw_base_type = 0, + e_dw_enumeration_type, + e_dw_enumerator, + e_dw_typedef, + e_dw_const_type, + e_dw_array_type, + e_dw_pointer_type, + e_dw_structure_type, + e_dw_union_type, + e_dw_subroutine_type, + e_dw_volatile_type +}e_dw_type_type; + +typedef struct s_dw_type{ + e_dw_type_type type; + void *id; + char *name; + int size; + char *dw_type_id; + xbt_dynar_t members; /* if DW_TAG_structure_type */ + int is_pointer_type; + int offset; +}s_dw_type_t, *dw_type_t; + +char* get_type_description(xbt_dict_t types, char *type_name); SG_END_DECL() #endif /* _MC_MC_H */ diff --git a/src/include/mc/mc.h b/src/include/mc/mc.h index 65c8212973..0fd382658e 100644 --- a/src/include/mc/mc.h +++ b/src/include/mc/mc.h @@ -56,17 +56,14 @@ void MC_automaton_load(const char *file); /****************************** MC ignore **********************************/ XBT_PUBLIC(void) MC_ignore_heap(void *address, size_t size); XBT_PUBLIC(void) MC_remove_ignore_heap(void *address, size_t size); -XBT_PUBLIC(void) MC_ignore_stack(const char *var_name, const char *frame); -XBT_PUBLIC(void) MC_ignore_data_bss(void *address, size_t size); +XBT_PUBLIC(void) MC_ignore_local_variable(const char *var_name, const char *frame); +XBT_PUBLIC(void) MC_ignore_global_variable(const char *var_name); void MC_new_stack_area(void *stack, char *name, void *context, size_t size); /********************************* Memory *************************************/ XBT_PUBLIC(void) MC_memory_init(void); /* Initialize the memory subsystem */ XBT_PUBLIC(void) MC_memory_exit(void); -/* Trigger for state equality detection (check potential cycle in application) */ -void MC_compare(void); - SG_END_DECL() #endif /* _MC_MC_H */ diff --git a/src/include/xbt/xbt_os_time.h b/src/include/xbt/xbt_os_time.h index a6d848d5ae..11b2892e4c 100644 --- a/src/include/xbt/xbt_os_time.h +++ b/src/include/xbt/xbt_os_time.h @@ -20,10 +20,11 @@ XBT_PUBLIC(double) xbt_os_time(void); XBT_PUBLIC(void) xbt_os_sleep(double sec); typedef struct s_xbt_os_timer *xbt_os_timer_t; + XBT_PUBLIC(xbt_os_timer_t) xbt_os_timer_new(void); XBT_PUBLIC(void) xbt_os_timer_free(xbt_os_timer_t timer); XBT_PUBLIC(double) xbt_os_timer_elapsed(xbt_os_timer_t timer); - +XBT_PUBLIC(size_t) xbt_os_timer_size(void); XBT_PUBLIC(void) xbt_os_walltimer_start(xbt_os_timer_t timer); XBT_PUBLIC(void) xbt_os_walltimer_resume(xbt_os_timer_t timer); diff --git a/src/mc/mc_checkpoint.c b/src/mc/mc_checkpoint.c index 340b1b00d5..5e65143767 100644 --- a/src/mc/mc_checkpoint.c +++ b/src/mc/mc_checkpoint.c @@ -24,23 +24,35 @@ void *start_data_libsimgrid, *start_bss_libsimgrid; void *start_data_binary, *start_bss_binary; void *start_text_binary; -static mc_mem_region_t MC_region_new(int type, void *start_addr, size_t size); -static void MC_region_restore(mc_mem_region_t reg); -static void MC_region_destroy(mc_mem_region_t reg); +/************************************ Free functions **************************************/ +/*****************************************************************************************/ -static void MC_snapshot_add_region(mc_snapshot_t snapshot, int type, void *start_addr, size_t size); +static void MC_snapshot_stack_free(mc_snapshot_stack_t s){ + if(s){ + xbt_free(s->local_variables->data); + xbt_free(s->local_variables); + xbt_free(s); + } +} + +static void MC_snapshot_stack_free_voidp(void *s){ + MC_snapshot_stack_free((mc_snapshot_stack_t) * (void **) s); +} + +static void local_variable_free(local_variable_t v){ + xbt_free(v->frame); + xbt_free(v->name); + xbt_free(v->type); + xbt_free(v); +} -static void add_value(xbt_dynar_t *list, const char *type, unsigned long int val); -static xbt_dynar_t take_snapshot_stacks(mc_snapshot_t *s, void *heap); -static xbt_strbuff_t get_local_variables_values(void *stack_context, void *heap); -static void print_local_variables_values(xbt_dynar_t all_variables); -static void *get_stack_pointer(void *stack_context, void *heap); +static void local_variable_free_voidp(void *v){ + local_variable_free((local_variable_t) * (void **) v); +} -static void snapshot_stack_free(mc_snapshot_stack_t s); -static xbt_dynar_t take_snapshot_ignore(void); -static void get_hash_global(char *snapshot_hash, void *data1, void *data2); -static void get_hash_local(char *snapshot_hash, xbt_dynar_t stacks); +/******************************* Snapshot regions ********************************/ +/*********************************************************************************/ static mc_mem_region_t MC_region_new(int type, void *start_addr, size_t size) { @@ -78,7 +90,7 @@ static void MC_snapshot_add_region(mc_snapshot_t snapshot, int type, void *start return; } -static void get_memory_regions(mc_snapshot_t snapshot){ +static void MC_get_memory_regions(mc_snapshot_t snapshot){ FILE *fp; char *line = NULL; @@ -188,7 +200,7 @@ void MC_init_memory_map_info(){ unsigned int i = 0; s_map_region_t reg; - memory_map_t maps = get_memory_map(); + memory_map_t maps = MC_get_memory_map(); while (i < maps->mapsize) { reg = maps->regions[i]; @@ -227,63 +239,11 @@ void MC_init_memory_map_info(){ i++; } - free_memory_map(maps); - -} - -mc_snapshot_t MC_take_snapshot() -{ - - int raw_mem = (mmalloc_get_current_heap() == raw_heap); - - MC_SET_RAW_MEM; - - mc_snapshot_t snapshot = xbt_new0(s_mc_snapshot_t, 1); - snapshot->nb_processes = xbt_swag_size(simix_global->process_list); - - /* Save the std heap and the writable mapped pages of libsimgrid and binary */ - get_memory_regions(snapshot); - - snapshot->to_ignore = take_snapshot_ignore(); - - if(_sg_mc_visited > 0 || strcmp(_sg_mc_property_file,"")){ - snapshot->stacks = take_snapshot_stacks(&snapshot, snapshot->regions[0]->data); - get_hash_global(snapshot->hash_global, snapshot->regions[1]->data, snapshot->regions[2]->data); - get_hash_local(snapshot->hash_local, snapshot->stacks); - } - - MC_UNSET_RAW_MEM; - - if(raw_mem) - MC_SET_RAW_MEM; - - return snapshot; - -} + MC_free_memory_map(maps); -void MC_restore_snapshot(mc_snapshot_t snapshot) -{ - unsigned int i; - for(i=0; i < NB_REGIONS; i++){ - MC_region_restore(snapshot->regions[i]); - } - -} - -void MC_free_snapshot(mc_snapshot_t snapshot) -{ - unsigned int i; - for(i=0; i < NB_REGIONS; i++) - MC_region_destroy(snapshot->regions[i]); - - xbt_free(snapshot->stack_sizes); - xbt_dynar_free(&(snapshot->stacks)); - xbt_dynar_free(&(snapshot->to_ignore)); - xbt_free(snapshot); } - -void get_libsimgrid_plt_section(){ +void MC_get_libsimgrid_plt_section(){ FILE *fp; char *line = NULL; /* Temporal storage for each line that is readed */ @@ -348,7 +308,7 @@ void get_libsimgrid_plt_section(){ } -void get_binary_plt_section(){ +void MC_get_binary_plt_section(){ FILE *fp; char *line = NULL; /* Temporal storage for each line that is readed */ @@ -411,56 +371,104 @@ void get_binary_plt_section(){ } -static void add_value(xbt_dynar_t *list, const char *type, unsigned long int val){ - variable_value_t value = xbt_new0(s_variable_value_t, 1); - value->type = strdup(type); - if(strcmp(type, "value") == 0){ - value->value.res = val; - }else{ - value->value.address = (void *)val; - } - xbt_dynar_push(*list, &value); -} - -static xbt_dynar_t take_snapshot_stacks(mc_snapshot_t *snapshot, void *heap){ +/************************************* Take Snapshot ************************************/ +/****************************************************************************************/ - xbt_dynar_t res = xbt_dynar_new(sizeof(s_mc_snapshot_stack_t), snapshot_stack_free_voidp); - - unsigned int cursor = 0; - stack_region_t current_stack; +static void MC_get_hash_global(char *snapshot_hash, void *data1, void *data2){ - xbt_dynar_foreach(stacks_areas, cursor, current_stack){ - mc_snapshot_stack_t st = xbt_new(s_mc_snapshot_stack_t, 1); - st->local_variables = get_local_variables_values(current_stack->context, heap); - st->stack_pointer = get_stack_pointer(current_stack->context, heap); - xbt_dynar_push(res, &st); - (*snapshot)->stack_sizes = xbt_realloc((*snapshot)->stack_sizes, (cursor + 1) * sizeof(size_t)); - (*snapshot)->stack_sizes[cursor] = current_stack->size - ((char *)st->stack_pointer - (char *)((char *)heap + ((char *)current_stack->address - (char *)std_heap))); - } + /* unsigned int cursor = 0; */ + /* size_t offset; */ + /* global_variable_t current_var; */ + /* void *addr_pointed = NULL; */ + /* void *res = NULL; */ - return res; + /* xbt_strbuff_t clear = xbt_strbuff_new(); */ + + /* xbt_dynar_foreach(mc_global_variables, cursor, current_var){ */ + /* if(current_var->address < start_data_libsimgrid){ /\* binary *\/ */ + /* offset = (char *)current_var->address - (char *)start_data_binary; */ + /* addr_pointed = *((void **)((char *)data2 + offset)); */ + /* if(((addr_pointed >= start_plt_binary && addr_pointed <= end_plt_binary)) || ((addr_pointed >= std_heap && (char *)addr_pointed <= (char *)std_heap + STD_HEAP_SIZE ))) */ + /* continue; */ + /* res = xbt_malloc0(current_var->size + 1); */ + /* memset(res, 0, current_var->size + 1); */ + /* memcpy(res, (char*)data2 + offset, current_var->size); */ + /* }else{ /\* libsimgrid *\/ */ + /* offset = (char *)current_var->address - (char *)start_data_libsimgrid; */ + /* addr_pointed = *((void **)((char *)data1 + offset)); */ + /* if((addr_pointed >= start_plt_libsimgrid && addr_pointed <= end_plt_libsimgrid) || (addr_pointed >= std_heap && (char *)addr_pointed <= (char *)std_heap + STD_HEAP_SIZE )) */ + /* continue; */ + /* res = xbt_malloc0(current_var->size + 1); */ + /* memset(res, 0, current_var->size + 1); */ + /* memcpy(res, (char*)data1 + offset, current_var->size); */ + /* } */ + /* if(res != NULL){ */ + /* xbt_strbuff_append(clear, (const char*)res); */ + /* xbt_free(res); */ + /* res = NULL; */ + /* } */ + /* } */ + + /* xbt_sha(clear->data, snapshot_hash); */ + + /* xbt_strbuff_free(clear); */ } -static void *get_stack_pointer(void *stack_context, void *heap){ - - unw_cursor_t c; - int ret; - unw_word_t sp; - - ret = unw_init_local(&c, (unw_context_t *)stack_context); - if(ret < 0){ - XBT_INFO("unw_init_local failed"); - xbt_abort(); - } - - unw_get_reg(&c, UNW_REG_SP, &sp); - - return ((char *)heap + (size_t)(((char *)((long)sp) - (char*)std_heap))); +static void MC_get_hash_local(char *snapshot_hash, xbt_dynar_t stacks){ + + /* xbt_dynar_t tokens = NULL, s_tokens = NULL; */ + /* unsigned int cursor1 = 0, cursor2 = 0; */ + /* mc_snapshot_stack_t current_stack; */ + /* char *frame_name = NULL; */ + /* void *addr; */ + + /* xbt_strbuff_t clear = xbt_strbuff_new(); */ + + /* while(cursor1 < xbt_dynar_length(stacks)){ */ + /* current_stack = xbt_dynar_get_as(stacks, cursor1, mc_snapshot_stack_t); */ + /* tokens = xbt_str_split(current_stack->local_variables->data, NULL); */ + /* cursor2 = 0; */ + /* while(cursor2 < xbt_dynar_length(tokens)){ */ + /* s_tokens = xbt_str_split(xbt_dynar_get_as(tokens, cursor2, char *), "="); */ + /* if(xbt_dynar_length(s_tokens) > 1){ */ + /* if(strcmp(xbt_dynar_get_as(s_tokens, 0, char *), "frame_name") == 0){ */ + /* xbt_free(frame_name); */ + /* frame_name = xbt_strdup(xbt_dynar_get_as(s_tokens, 1, char *)); */ + /* xbt_strbuff_append(clear, (const char*)xbt_dynar_get_as(tokens, cursor2, char *)); */ + /* cursor2++; */ + /* xbt_dynar_free(&s_tokens); */ + /* continue; */ + /* } */ + /* addr = (void *) strtoul(xbt_dynar_get_as(s_tokens, 1, char *), NULL, 16); */ + /* if(addr > std_heap && (char *)addr <= (char *)std_heap + STD_HEAP_SIZE){ */ + /* cursor2++; */ + /* xbt_dynar_free(&s_tokens); */ + /* continue; */ + /* } */ + /* if(is_stack_ignore_variable(frame_name, xbt_dynar_get_as(s_tokens, 0, char *))){ */ + /* cursor2++; */ + /* xbt_dynar_free(&s_tokens); */ + /* continue; */ + /* } */ + /* xbt_strbuff_append(clear, (const char *)xbt_dynar_get_as(tokens, cursor2, char *)); */ + /* } */ + /* xbt_dynar_free(&s_tokens); */ + /* cursor2++; */ + /* } */ + /* xbt_dynar_free(&tokens); */ + /* cursor1++; */ + /* } */ + + /* xbt_free(frame_name); */ + + /* xbt_sha(clear->data, snapshot_hash); */ + + /* xbt_strbuff_free(clear); */ } -static xbt_strbuff_t get_local_variables_values(void *stack_context, void *heap){ +static xbt_dynar_t MC_get_local_variables_values(void *stack_context){ unw_cursor_t c; int ret; @@ -475,21 +483,17 @@ static xbt_strbuff_t get_local_variables_values(void *stack_context, void *heap) unw_word_t ip, sp, off; dw_frame_t frame; - - xbt_dynar_t compose = xbt_dynar_new(sizeof(variable_value_t), variable_value_free_voidp); - xbt_strbuff_t variables = xbt_strbuff_new(); - xbt_dict_cursor_t dict_cursor; - char *variable_name; - dw_local_variable_t current_variable; - unsigned int cursor = 0, cursor2 = 0; + unsigned int cursor = 0; + dw_variable_t current_variable; dw_location_entry_t entry = NULL; dw_location_t location_entry = NULL; unw_word_t res; - int frame_found = 0; + int frame_found = 0, region_type; void *frame_pointer_address = NULL; - long true_ip; - char *to_append; + long true_ip, value; + + xbt_dynar_t variables = xbt_dynar_new(sizeof(local_variable_t), local_variable_free_voidp); while(ret >= 0){ @@ -498,59 +502,50 @@ static xbt_strbuff_t get_local_variables_values(void *stack_context, void *heap) unw_get_proc_name(&c, frame_name, sizeof (frame_name), &off); - frame = xbt_dict_get_or_null(mc_local_variables, frame_name); + if((long)ip > (long)start_text_libsimgrid) + frame = xbt_dict_get_or_null(mc_local_variables_libsimgrid, frame_name); + else + frame = xbt_dict_get_or_null(mc_local_variables_binary, frame_name); if(frame == NULL){ - xbt_dynar_free(&compose); - xbt_dict_cursor_free(&dict_cursor); - return variables; + ret = unw_step(&c); + continue; } - - to_append = bprintf("frame_name=%s\n", frame_name); - xbt_strbuff_append(variables, to_append); - xbt_free(to_append); - to_append = bprintf("ip=%lx\n", (unsigned long)ip); - xbt_strbuff_append(variables, to_append); - xbt_free(to_append); true_ip = (long)frame->low_pc + (long)off; + frame_pointer_address = NULL; /* Get frame pointer */ switch(frame->frame_base->type){ case e_dw_loclist: - while((cursor < xbt_dynar_length(frame->frame_base->location.loclist)) && frame_found == 0){ + cursor = 0; + while(cursor < xbt_dynar_length(frame->frame_base->location.loclist) && !frame_found){ entry = xbt_dynar_get_as(frame->frame_base->location.loclist, cursor, dw_location_entry_t); if((true_ip >= entry->lowpc) && (true_ip < entry->highpc)){ frame_found = 1; switch(entry->location->type){ case e_dw_compose: - xbt_dynar_reset(compose); - cursor2 = 0; - while(cursor2 < xbt_dynar_length(entry->location->location.compose)){ - location_entry = xbt_dynar_get_as(entry->location->location.compose, cursor2, dw_location_t); + if(xbt_dynar_length(entry->location->location.compose) > 1){ + frame_pointer_address = NULL; /* TODO : location list with optimizations enabled */ + }else{ + location_entry = xbt_dynar_get_as(entry->location->location.compose, 0, dw_location_t); switch(location_entry->type){ case e_dw_register: unw_get_reg(&c, location_entry->location.reg, &res); - add_value(&compose, "address", (long)res); + frame_pointer_address = (void*)(long)res; break; case e_dw_bregister_op: unw_get_reg(&c, location_entry->location.breg_op.reg, &res); - add_value(&compose, "address", (long)res + location_entry->location.breg_op.offset); + frame_pointer_address = (void*)((long)res + location_entry->location.breg_op.offset); break; default: - xbt_dynar_reset(compose); + frame_pointer_address = NULL; /* FIXME : implement other cases (with optimizations enabled) */ break; } - cursor2++; - } - - if(!xbt_dynar_is_empty(compose)){ - frame_pointer_address = xbt_dynar_get_as(compose, xbt_dynar_length(compose) - 1, variable_value_t)->value.address ; - xbt_dynar_reset(compose); } break; - default : - frame_pointer_address = NULL; + default: + frame_pointer_address = NULL; /* FIXME : implement other cases (with optimizations enabled) */ break; } } @@ -558,229 +553,119 @@ static xbt_strbuff_t get_local_variables_values(void *stack_context, void *heap) } break; default : - frame_pointer_address = NULL; + frame_pointer_address = NULL; /* FIXME : implement other cases (with optimizations enabled)*/ break; } frame_found = 0; cursor = 0; - xbt_dict_foreach(frame->variables, dict_cursor, variable_name, current_variable){ - if(current_variable->location != NULL){ - switch(current_variable->location->type){ + xbt_dynar_foreach(frame->variables, cursor, current_variable){ + + if((long)ip > (long)start_text_libsimgrid) + region_type = 1; + else + region_type = 2; + + local_variable_t new_var = xbt_new0(s_local_variable_t, 1); + new_var->frame = xbt_strdup(frame_name); + new_var->ip = (unsigned long)ip; + new_var->name = xbt_strdup(current_variable->name); + new_var->type = strdup(current_variable->type_origin); + new_var->region= region_type; + + if(current_variable->address.location != NULL){ + switch(current_variable->address.location->type){ case e_dw_compose: - xbt_dynar_reset(compose); - cursor = 0; - while(cursor < xbt_dynar_length(current_variable->location->location.compose)){ - location_entry = xbt_dynar_get_as(current_variable->location->location.compose, cursor, dw_location_t); + if(xbt_dynar_length(current_variable->address.location->location.compose) > 1){ + /* TODO : location list with optimizations enabled */ + }else{ + location_entry = xbt_dynar_get_as(current_variable->address.location->location.compose, 0, dw_location_t); + switch(location_entry->type){ case e_dw_register: unw_get_reg(&c, location_entry->location.reg, &res); - add_value(&compose, "value", (long)res); + value = (long)res; break; case e_dw_bregister_op: unw_get_reg(&c, location_entry->location.breg_op.reg, &res); - add_value(&compose, "address", (long)res + location_entry->location.breg_op.offset); + value = (long)res + location_entry->location.breg_op.offset; break; case e_dw_fbregister_op: if(frame_pointer_address != NULL) - add_value(&compose, "address", (long)((char *)frame_pointer_address + location_entry->location.fbreg_op)); + value = (long)((char *)frame_pointer_address + location_entry->location.fbreg_op); + else + value = 0; break; default: - xbt_dynar_reset(compose); + value = 0; /* FIXME : implement other cases (with optimizations enabled)*/ break; } - cursor++; - } - - if(!xbt_dynar_is_empty(compose)){ - if(strcmp(xbt_dynar_get_as(compose, xbt_dynar_length(compose) - 1, variable_value_t)->type, "value") == 0){ - to_append = bprintf("%s=%lx\n", current_variable->name, xbt_dynar_get_as(compose, xbt_dynar_length(compose) - 1, variable_value_t)->value.res); - xbt_strbuff_append(variables, to_append); - xbt_free(to_append); - }else{ - if((long)xbt_dynar_get_as(compose, xbt_dynar_length(compose) - 1,variable_value_t)->value.address < 0 || *((void**)xbt_dynar_get_as(compose, xbt_dynar_length(compose) - 1,variable_value_t)->value.address) == NULL){ - to_append = bprintf("%s=NULL\n", current_variable->name); - xbt_strbuff_append(variables, to_append); - xbt_free(to_append); - }else if(((long)*((void**)xbt_dynar_get_as(compose, xbt_dynar_length(compose) - 1,variable_value_t)->value.address) > 0xffffffff) || ((long)*((void**)xbt_dynar_get_as(compose, xbt_dynar_length(compose) - 1,variable_value_t)->value.address) < (long)start_text_binary)){ - to_append = bprintf("%s=%u\n", current_variable->name, (unsigned int)(long)*((void**)xbt_dynar_get_as(compose, xbt_dynar_length(compose) - 1, variable_value_t)->value.address)); - xbt_strbuff_append(variables, to_append); - xbt_free(to_append); - }else{ - to_append = bprintf("%s=%p\n", current_variable->name, *((void**)xbt_dynar_get_as(compose, xbt_dynar_length(compose) - 1, variable_value_t)->value.address)); - xbt_strbuff_append(variables, to_append); - xbt_free(to_append); - } - } - xbt_dynar_reset(compose); - }else{ - to_append = bprintf("%s=undefined\n", current_variable->name); - xbt_strbuff_append(variables, to_append); - xbt_free(to_append); + + if(value) + new_var->address = (void *)value; + else + new_var->address = NULL; } break; default : break; } - }else{ - to_append = bprintf("%s=undefined\n", current_variable->name); - xbt_strbuff_append(variables, to_append); - xbt_free(to_append); } - } - + + xbt_dynar_push(variables, &new_var); + + } + ret = unw_step(&c); } - xbt_dynar_free(&compose); - xbt_dict_cursor_free(&dict_cursor); - return variables; } -static void print_local_variables_values(xbt_dynar_t all_variables){ - - unsigned cursor = 0; - mc_snapshot_stack_t stack; - xbt_dynar_foreach(all_variables, cursor, stack){ - XBT_INFO("%s", stack->local_variables->data); - } -} +static void *MC_get_stack_pointer(void *stack_context, void *heap){ + unw_cursor_t c; + int ret; + unw_word_t sp; -static void snapshot_stack_free(mc_snapshot_stack_t s){ - if(s){ - xbt_free(s->local_variables->data); - xbt_free(s->local_variables); - xbt_free(s); + ret = unw_init_local(&c, (unw_context_t *)stack_context); + if(ret < 0){ + XBT_INFO("unw_init_local failed"); + xbt_abort(); } -} -void snapshot_stack_free_voidp(void *s){ - snapshot_stack_free((mc_snapshot_stack_t) * (void **) s); -} - -mc_snapshot_t SIMIX_pre_mc_snapshot(smx_simcall_t simcall){ - return MC_take_snapshot(); -} + unw_get_reg(&c, UNW_REG_SP, &sp); -void *MC_snapshot(void){ + return ((char *)heap + (size_t)(((char *)((long)sp) - (char*)std_heap))); - return simcall_mc_snapshot(); - } -void variable_value_free(variable_value_t v){ - if(v){ - xbt_free(v->type); - xbt_free(v); - } -} +static xbt_dynar_t MC_take_snapshot_stacks(mc_snapshot_t *snapshot, void *heap){ -void variable_value_free_voidp(void* v){ - variable_value_free((variable_value_t) * (void **)v); -} + xbt_dynar_t res = xbt_dynar_new(sizeof(s_mc_snapshot_stack_t), MC_snapshot_stack_free_voidp); -static void get_hash_global(char *snapshot_hash, void *data1, void *data2){ - unsigned int cursor = 0; - size_t offset; - global_variable_t current_var; - void *addr_pointed = NULL; - void *res = NULL; - - xbt_strbuff_t clear = xbt_strbuff_new(); + stack_region_t current_stack; - xbt_dynar_foreach(mc_global_variables, cursor, current_var){ - if(current_var->address < start_data_libsimgrid){ /* binary */ - offset = (char *)current_var->address - (char *)start_data_binary; - addr_pointed = *((void **)((char *)data2 + offset)); - if(((addr_pointed >= start_plt_binary && addr_pointed <= end_plt_binary)) || ((addr_pointed >= std_heap && (char *)addr_pointed <= (char *)std_heap + STD_HEAP_SIZE ))) - continue; - res = xbt_malloc0(current_var->size + 1); - memset(res, 0, current_var->size + 1); - memcpy(res, (char*)data2 + offset, current_var->size); - }else{ /* libsimgrid */ - offset = (char *)current_var->address - (char *)start_data_libsimgrid; - addr_pointed = *((void **)((char *)data1 + offset)); - if((addr_pointed >= start_plt_libsimgrid && addr_pointed <= end_plt_libsimgrid) || (addr_pointed >= std_heap && (char *)addr_pointed <= (char *)std_heap + STD_HEAP_SIZE )) - continue; - res = xbt_malloc0(current_var->size + 1); - memset(res, 0, current_var->size + 1); - memcpy(res, (char*)data1 + offset, current_var->size); - } - if(res != NULL){ - xbt_strbuff_append(clear, (const char*)res); - xbt_free(res); - res = NULL; - } - } - - xbt_sha(clear->data, snapshot_hash); - - xbt_strbuff_free(clear); - -} - -static void get_hash_local(char *snapshot_hash, xbt_dynar_t stacks){ - - xbt_dynar_t tokens = NULL, s_tokens = NULL; - unsigned int cursor1 = 0, cursor2 = 0; - mc_snapshot_stack_t current_stack; - char *frame_name = NULL; - void *addr; - - xbt_strbuff_t clear = xbt_strbuff_new(); - - while(cursor1 < xbt_dynar_length(stacks)){ - current_stack = xbt_dynar_get_as(stacks, cursor1, mc_snapshot_stack_t); - tokens = xbt_str_split(current_stack->local_variables->data, NULL); - cursor2 = 0; - while(cursor2 < xbt_dynar_length(tokens)){ - s_tokens = xbt_str_split(xbt_dynar_get_as(tokens, cursor2, char *), "="); - if(xbt_dynar_length(s_tokens) > 1){ - if(strcmp(xbt_dynar_get_as(s_tokens, 0, char *), "frame_name") == 0){ - xbt_free(frame_name); - frame_name = xbt_strdup(xbt_dynar_get_as(s_tokens, 1, char *)); - xbt_strbuff_append(clear, (const char*)xbt_dynar_get_as(tokens, cursor2, char *)); - cursor2++; - xbt_dynar_free(&s_tokens); - continue; - } - addr = (void *) strtoul(xbt_dynar_get_as(s_tokens, 1, char *), NULL, 16); - if(addr > std_heap && (char *)addr <= (char *)std_heap + STD_HEAP_SIZE){ - cursor2++; - xbt_dynar_free(&s_tokens); - continue; - } - if(is_stack_ignore_variable(frame_name, xbt_dynar_get_as(s_tokens, 0, char *))){ - cursor2++; - xbt_dynar_free(&s_tokens); - continue; - } - xbt_strbuff_append(clear, (const char *)xbt_dynar_get_as(tokens, cursor2, char *)); - } - xbt_dynar_free(&s_tokens); - cursor2++; - } - xbt_dynar_free(&tokens); - cursor1++; + xbt_dynar_foreach(stacks_areas, cursor, current_stack){ + mc_snapshot_stack_t st = xbt_new(s_mc_snapshot_stack_t, 1); + st->local_variables = MC_get_local_variables_values(current_stack->context); + st->stack_pointer = MC_get_stack_pointer(current_stack->context, heap); + st->real_address = current_stack->address; + xbt_dynar_push(res, &st); + (*snapshot)->stack_sizes = xbt_realloc((*snapshot)->stack_sizes, (cursor + 1) * sizeof(size_t)); + (*snapshot)->stack_sizes[cursor] = current_stack->size - ((char *)st->stack_pointer - (char *)((char *)heap + ((char *)current_stack->address - (char *)std_heap))); } - xbt_free(frame_name); - - xbt_sha(clear->data, snapshot_hash); - - xbt_strbuff_free(clear); + return res; } - -static xbt_dynar_t take_snapshot_ignore(){ +static xbt_dynar_t MC_take_snapshot_ignore(){ if(mc_heap_comparison_ignore == NULL) return NULL; @@ -803,3 +688,83 @@ static xbt_dynar_t take_snapshot_ignore(){ return cpy; } + +static void MC_dump_checkpoint_ignore(mc_snapshot_t snapshot){ + + unsigned int cursor = 0; + mc_checkpoint_ignore_region_t region; + size_t offset; + + xbt_dynar_foreach(mc_checkpoint_ignore, cursor, region){ + if(region->addr > snapshot->regions[0]->start_addr && (char *)(region->addr) < (char *)snapshot->regions[0]->start_addr + STD_HEAP_SIZE){ + offset = (char *)region->addr - (char *)snapshot->regions[0]->start_addr; + memset((char *)snapshot->regions[0]->data + offset, 0, region->size); + }else if(region->addr > snapshot->regions[2]->start_addr && (char *)(region->addr) < (char*)snapshot->regions[2]->start_addr + snapshot->regions[2]->size){ + offset = (char *)region->addr - (char *)snapshot->regions[2]->start_addr; + memset((char *)snapshot->regions[2]->data + offset, 0, region->size); + }else if(region->addr > snapshot->regions[1]->start_addr && (char *)(region->addr) < (char*)snapshot->regions[1]->start_addr + snapshot->regions[1]->size){ + offset = (char *)region->addr - (char *)snapshot->regions[1]->start_addr; + memset((char *)snapshot->regions[1]->data + offset, 0, region->size); + } + } + +} + + +mc_snapshot_t MC_take_snapshot(){ + + int raw_mem = (mmalloc_get_current_heap() == raw_heap); + + MC_SET_RAW_MEM; + + mc_snapshot_t snapshot = xbt_new0(s_mc_snapshot_t, 1); + snapshot->nb_processes = xbt_swag_size(simix_global->process_list); + + /* Save the std heap and the writable mapped pages of libsimgrid and binary */ + MC_get_memory_regions(snapshot); + + snapshot->to_ignore = MC_take_snapshot_ignore(); + + if(_sg_mc_visited > 0 || strcmp(_sg_mc_property_file,"")){ + snapshot->stacks = MC_take_snapshot_stacks(&snapshot, snapshot->regions[0]->data); + //MC_get_hash_global(snapshot->hash_global, snapshot->regions[1]->data, snapshot->regions[2]->data); + //MC_get_hash_local(snapshot->hash_local, snapshot->stacks); + } + + MC_dump_checkpoint_ignore(snapshot); + + MC_UNSET_RAW_MEM; + + if(raw_mem) + MC_SET_RAW_MEM; + + return snapshot; + +} + +void MC_restore_snapshot(mc_snapshot_t snapshot){ + unsigned int i; + for(i=0; i < NB_REGIONS; i++){ + MC_region_restore(snapshot->regions[i]); + } + +} + +void MC_free_snapshot(mc_snapshot_t snapshot){ + unsigned int i; + for(i=0; i < NB_REGIONS; i++) + MC_region_destroy(snapshot->regions[i]); + + xbt_free(snapshot->stack_sizes); + xbt_dynar_free(&(snapshot->stacks)); + xbt_dynar_free(&(snapshot->to_ignore)); + xbt_free(snapshot); +} + +mc_snapshot_t SIMIX_pre_mc_snapshot(smx_simcall_t simcall){ + return MC_take_snapshot(); +} + +void *MC_snapshot(void){ + return simcall_mc_snapshot(); +} diff --git a/src/mc/mc_compare.c b/src/mc/mc_compare.c index b51f045685..1037bf8efd 100644 --- a/src/mc/mc_compare.c +++ b/src/mc/mc_compare.c @@ -10,118 +10,300 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_compare, mc, "Logging specific to mc_compare"); -static int heap_region_compare(void *d1, void *d2, size_t size); +typedef struct s_pointers_pair{ + void *p1; + void *p2; +}s_pointers_pair_t, *pointers_pair_t; + +xbt_dynar_t compared_pointers; -static int is_heap_equality(xbt_dynar_t equals, void *a1, void *a2); -static size_t heap_ignore_size(void *address); +static int heap_region_compare(void *d1, void *d2, size_t size); static void stack_region_free(stack_region_t s); -static void heap_equality_free(heap_equality_t e); -static int compare_local_variables(char *s1, char *s2); -static int compare_global_variables(int region_type, void *d1, void *d2); +static int compare_local_variables(mc_snapshot_stack_t stack1, mc_snapshot_stack_t stack2, void *heap1, void *heap2); +static int compare_global_variables(int region_type, mc_mem_region_t r1, mc_mem_region_t r2); +static int compare_pointer(char *pointer_type, void *addr_pointed1, void *addr_pointed2, int region_size, int region_type); +static int compare_areas_with_type(void *area1, void *area2, xbt_dict_t types, xbt_dict_t other_types, char *type_id, int region_size, int region_type, void *start_data, int pointer_level); + +static int already_compared_pointers(void *p1, void *p2){ + + if(xbt_dynar_is_empty(compared_pointers)) + return -1; -static size_t heap_ignore_size(void *address){ unsigned int cursor = 0; int start = 0; - int end = xbt_dynar_length(mc_heap_comparison_ignore) - 1; - mc_heap_ignore_region_t region; + int end = xbt_dynar_length(compared_pointers) - 1; + pointers_pair_t pair; while(start <= end){ cursor = (start + end) / 2; - region = (mc_heap_ignore_region_t)xbt_dynar_get_as(mc_heap_comparison_ignore, cursor, mc_heap_ignore_region_t); - if(region->address == address) - return region->size; - if(region->address < address) + pair = (pointers_pair_t)xbt_dynar_get_as(compared_pointers, cursor, pointers_pair_t); + if(pair->p1 == p1){ + if(pair->p2 == p2) + return 0; + else if(pair->p2 < p2) + start = cursor + 1; + else + end = cursor - 1; + }else if(pair->p1 < p1){ start = cursor + 1; - if(region->address > address) - end = cursor - 1; + }else{ + end = cursor - 1 ; + } } - return 0; + return -1; + } -static int compare_global_variables(int region_type, void *d1, void *d2){ /* region_type = 1 -> libsimgrid, region_type = 2 -> binary */ +static void add_compared_pointers(void *p1, void *p2){ + + pointers_pair_t new_pair = xbt_new0(s_pointers_pair_t, 1); + new_pair->p1 = p1; + new_pair->p2 = p2; + + if(xbt_dynar_is_empty(compared_pointers)){ + xbt_dynar_push(compared_pointers, &new_pair); + return; + } unsigned int cursor = 0; - size_t offset; - int i = 0; - global_variable_t current_var; - int pointer_align; - void *addr_pointed1 = NULL, *addr_pointed2 = NULL; - int res_compare = 0; - void *plt_start, *plt_end; + int start = 0; + int end = xbt_dynar_length(compared_pointers) - 1; + pointers_pair_t pair = NULL; - if(region_type == 2){ - plt_start = start_plt_binary; - plt_end = end_plt_binary; + while(start <= end){ + cursor = (start + end) / 2; + pair = (pointers_pair_t)xbt_dynar_get_as(compared_pointers, cursor, pointers_pair_t); + if(pair->p1 == p1){ + if(pair->p2 == p2) + return; + else if(pair->p2 < p2) + start = cursor + 1; + else + end = cursor - 1; + }else if(pair->p1 < p1){ + start = cursor + 1; + }else{ + end = cursor - 1 ; + } + } + + if(pair->p1 == p1){ + if(pair->p2 < p2) + xbt_dynar_insert_at(compared_pointers, cursor + 1, &new_pair); + else + xbt_dynar_insert_at(compared_pointers, cursor, &new_pair); }else{ - plt_start = start_plt_libsimgrid; - plt_end = end_plt_libsimgrid; + if(pair->p1 < p1) + xbt_dynar_insert_at(compared_pointers, cursor + 1, &new_pair); + else + xbt_dynar_insert_at(compared_pointers, cursor, &new_pair); } - xbt_dynar_foreach(mc_global_variables, cursor, current_var){ - if(current_var->address < start_data_libsimgrid){ /* binary global variable */ - if(region_type == 1) - continue; - offset = (char *)current_var->address - (char *)start_data_binary; - }else{ /* libsimgrid global variable */ - if(region_type == 2) - break; - offset = (char *)current_var->address - (char *)start_data_libsimgrid; +} + +static int compare_areas_with_type(void *area1, void *area2, xbt_dict_t types, xbt_dict_t other_types, char *type_id, int region_size, int region_type, void *start_data, int pointer_level){ + + dw_type_t type = xbt_dict_get_or_null(types, type_id);; + unsigned int cursor = 0; + dw_type_t member, subtype, subsubtype; + int elm_size, i, res, switch_types = 0; + void *addr_pointed1, *addr_pointed2; + int pointed_area_size1, pointed_area_size2; + + switch(type->type){ + case e_dw_base_type: + case e_dw_enumeration_type: + case e_dw_union_type: + return (memcmp(area1, area2, type->size) != 0); + break; + case e_dw_typedef: + case e_dw_volatile_type: + return compare_areas_with_type(area1, area2, types, other_types, type->dw_type_id, region_size, region_type, start_data, pointer_level); + break; + case e_dw_const_type: /* Const variable cannot be modified */ + return -1; + break; + case e_dw_array_type: + subtype = xbt_dict_get_or_null(types, type->dw_type_id); + switch(subtype->type){ + case e_dw_base_type: + case e_dw_enumeration_type: + case e_dw_pointer_type: + case e_dw_structure_type: + case e_dw_union_type: + if(subtype->size == 0){ /*declaration of the type, need the complete description */ + subtype = xbt_dict_get_or_null(types, get_type_description(types, subtype->name)); + if(subtype == NULL){ + subtype = xbt_dict_get_or_null(other_types, get_type_description(other_types, subtype->name)); + switch_types = 1; + } + } + elm_size = subtype->size; + break; + case e_dw_typedef: + case e_dw_volatile_type: + subsubtype = xbt_dict_get_or_null(types, subtype->dw_type_id); + if(subsubtype->size == 0){ /*declaration of the type, need the complete description */ + subsubtype = xbt_dict_get_or_null(types, get_type_description(types, subsubtype->name)); + if(subsubtype == NULL){ + subsubtype = xbt_dict_get_or_null(other_types, get_type_description(other_types, subsubtype->name)); + switch_types = 1; + } + } + elm_size = subsubtype->size; + break; + default : + return 0; + break; + } + for(i=0; isize; i++){ + if(switch_types) + res = compare_areas_with_type((char *)area1 + (i*elm_size), (char *)area2 + (i*elm_size), other_types, types, type->dw_type_id, region_size, region_type, start_data, pointer_level); + else + res = compare_areas_with_type((char *)area1 + (i*elm_size), (char *)area2 + (i*elm_size), types, other_types, type->dw_type_id, region_size, region_type, start_data, pointer_level); + if(res != 0) + return res; } - i = 0; - while(i < current_var->size){ - if(memcmp((char *)d1 + offset + i, (char *)d2 + offset + i, 1) != 0){ - pointer_align = (i / sizeof(void*)) * sizeof(void*); - addr_pointed1 = *((void **)((char *)d1 + offset + pointer_align)); - addr_pointed2 = *((void **)((char *)d2 + offset + pointer_align)); - if((addr_pointed1 > plt_start && addr_pointed1 < plt_end) || (addr_pointed2 > plt_start && addr_pointed2 < plt_end)){ - i = pointer_align + sizeof(void*); - continue; - }else if((addr_pointed1 > std_heap) && ((char *)addr_pointed1 < (char *)std_heap + STD_HEAP_SIZE) - && (addr_pointed2 > std_heap) && ((char *)addr_pointed2 < (char *)std_heap + STD_HEAP_SIZE)){ - res_compare = compare_area(addr_pointed1, addr_pointed2, NULL); - if(res_compare == 1){ - #ifdef MC_VERBOSE - if(region_type == 2) - XBT_VERB("Different global variable in binary : %s at addresses %p - %p (size = %zu)", current_var->name, (char *)d1+offset, (char *)d2+offset, current_var->size); - else - XBT_VERB("Different global variable in libsimgrid : %s at addresses %p - %p (size = %zu)", current_var->name, (char *)d1+offset, (char *)d2+offset, current_var->size); - #endif - #ifdef MC_DEBUG - if(region_type == 2) - XBT_DEBUG("Different global variable in binary : %s at addresses %p - %p (size = %zu)", current_var->name, (char *)d1+offset, (char *)d2+offset, current_var->size); - else - XBT_DEBUG("Different global variable in libsimgrid : %s at addresses %p - %p (size = %zu)", current_var->name, (char *)d1+offset, (char *)d2+offset, current_var->size); - #endif - return 1; - } - i = pointer_align + sizeof(void*); - continue; - }else{ - #ifdef MC_VERBOSE - if(region_type == 2) - XBT_VERB("Different global variable in binary : %s at addresses %p - %p (size = %zu)", current_var->name, (char *)d1+offset, (char *)d2+offset, current_var->size); - else - XBT_VERB("Different global variable in libsimgrid : %s at addresses %p - %p (size = %zu)", current_var->name, (char *)d1+offset, (char *)d2+offset, current_var->size); - #endif - #ifdef MC_DEBUG - if(region_type == 2) - XBT_DEBUG("Different global variable in binary : %s at addresses %p - %p (size = %zu)", current_var->name, (char *)d1+offset, (char *)d2+offset, current_var->size); - else - XBT_DEBUG("Different global variable in libsimgrid : %s at addresses %p - %p (size = %zu)", current_var->name, (char *)d1+offset, (char *)d2+offset, current_var->size); - #endif - return 1; - } + break; + case e_dw_pointer_type: + if(type->dw_type_id && ((dw_type_t)xbt_dict_get_or_null(types, type->dw_type_id))->type == e_dw_subroutine_type){ + addr_pointed1 = *((void **)(area1)); + addr_pointed2 = *((void **)(area2)); + return (addr_pointed1 != addr_pointed2); + }else{ + addr_pointed1 = *((void **)(area1)); + addr_pointed2 = *((void **)(area2)); + + if((addr_pointed1 == addr_pointed2) && ((pointed_area_size1 = get_pointed_area_size(addr_pointed1, 1)) != (pointed_area_size2 = get_pointed_area_size(addr_pointed2, 2)))) + return -1; + if(addr_pointed1 == NULL && addr_pointed2 == NULL) + return 0; + if(already_compared_pointers(addr_pointed1, addr_pointed2) != -1) + return 0; + add_compared_pointers(addr_pointed1, addr_pointed2); + + pointer_level++; + + if(addr_pointed1 > std_heap && (char *)addr_pointed1 < (char*) std_heap + STD_HEAP_SIZE && addr_pointed2 > std_heap && (char *)addr_pointed2 < (char*) std_heap + STD_HEAP_SIZE){ + return compare_heap_area(addr_pointed1, addr_pointed2, NULL, types, other_types, type->dw_type_id, pointer_level); + }else if(addr_pointed1 > start_data && (char*)addr_pointed1 <= (char *)start_data + region_size && addr_pointed2 > start_data && (char*)addr_pointed2 <= (char *)start_data + region_size){ + if(type->dw_type_id == NULL) + return (addr_pointed1 != addr_pointed2); + else + return compare_areas_with_type(addr_pointed1, addr_pointed2, types, other_types, type->dw_type_id, region_size, region_type, start_data, pointer_level); + }else{ + return (addr_pointed1 != addr_pointed2); } - i++; } + break; + case e_dw_structure_type: + xbt_dynar_foreach(type->members, cursor, member){ + res = compare_areas_with_type((char *)area1 + member->offset, (char *)area2 + member->offset, types, other_types, member->dw_type_id, region_size, region_type, start_data, pointer_level); + if(res == 1) + return res; + } + break; + case e_dw_subroutine_type: + return -1; + break; + default: + XBT_VERB("Unknown case : %d", type->type); + break; + } + + return 0; +} + +static int compare_global_variables(int region_type, mc_mem_region_t r1, mc_mem_region_t r2){ + + if(!compared_pointers){ + compared_pointers = xbt_dynar_new(sizeof(pointers_pair_t), NULL); + MC_ignore_global_variable("compared_pointers"); + }else{ + xbt_dynar_reset(compared_pointers); + } + + xbt_dynar_t variables; + xbt_dict_t types, other_types; + int res; + unsigned int cursor = 0; + dw_variable_t current_var; + size_t offset; + void *start_data; + + if(region_type == 2){ + variables = mc_global_variables_binary; + types = mc_variables_type_binary; + other_types = mc_variables_type_libsimgrid; + start_data = start_data_binary; + }else{ + variables = mc_global_variables_libsimgrid; + types = mc_variables_type_libsimgrid; + other_types = mc_variables_type_binary; + start_data = start_data_libsimgrid; } + xbt_dynar_foreach(variables, cursor, current_var){ + + if(region_type == 2) + offset = (char *)current_var->address.address - (char *)start_data_binary; + else + offset = (char *)current_var->address.address - (char *)start_data_libsimgrid; + + res = compare_areas_with_type((char *)r1->data + offset, (char *)r2->data + offset, types, other_types, current_var->type_origin, r1->size, region_type, start_data, 0); + if(res == -1){ + xbt_dynar_cursor_rm(variables, &cursor); + }else if(res == 1){ + XBT_VERB("Global variable %s is different between snapshots", current_var->name); + return 1; + } + + } return 0; + } +static int compare_local_variables(mc_snapshot_stack_t stack1, mc_snapshot_stack_t stack2, void *heap1, void *heap2){ + + if(!compared_pointers){ + compared_pointers = xbt_dynar_new(sizeof(pointers_pair_t), NULL); + MC_ignore_global_variable("compared_pointers"); + }else{ + xbt_dynar_reset(compared_pointers); + } + + if(xbt_dynar_length(stack1->local_variables) != xbt_dynar_length(stack2->local_variables)){ + XBT_VERB("Different number of local variables"); + return 1; + }else{ + unsigned int cursor = 0; + local_variable_t current_var1, current_var2; + int offset1, offset2, res; + while(cursor < xbt_dynar_length(stack1->local_variables)){ + current_var1 = (local_variable_t)xbt_dynar_get_as(stack1->local_variables, cursor, local_variable_t); + current_var2 = (local_variable_t)xbt_dynar_get_as(stack2->local_variables, cursor, local_variable_t); + if(strcmp(current_var1->name, current_var2->name) != 0 || strcmp(current_var1->frame, current_var2->frame) != 0 || current_var1->ip != current_var2->ip) + return 1; + offset1 = (char *)current_var1->address - (char *)std_heap; + offset2 = (char *)current_var2->address - (char *)std_heap; + if(current_var1->region == 1) + res = compare_areas_with_type( (char *)heap1 + offset1, (char *)heap2 + offset2, mc_variables_type_libsimgrid, mc_variables_type_binary, current_var1->type, 0, 1, start_data_libsimgrid, 0l); + else + res = compare_areas_with_type( (char *)heap1 + offset1, (char *)heap2 + offset2, mc_variables_type_binary, mc_variables_type_libsimgrid, current_var1->type, 0, 2, start_data_binary, 0l); + if(res == 1){ + XBT_VERB("Local variable %s (%p - %p) in frame %s is different between snapshots", current_var1->name, (char *)heap1 + offset1, (char *)heap2 + offset2, current_var1->frame); + return res; + } + cursor++; + } + return 0; + } +} + + static int heap_region_compare(void *d1, void *d2, size_t size){ size_t i = 0; @@ -149,14 +331,6 @@ void stack_region_free_voidp(void *s){ stack_region_free((stack_region_t) * (void **) s); } -static void heap_equality_free(heap_equality_t e){ - xbt_free(e); -} - -void heap_equality_free_voidp(void *e){ - heap_equality_free((heap_equality_t) * (void **) e); -} - int SIMIX_pre_mc_compare_snapshots(smx_simcall_t simcall, mc_snapshot_t s1, mc_snapshot_t s2){ return snapshot_compare(s1, s2); @@ -179,66 +353,6 @@ int snapshot_compare(mc_snapshot_t s1, mc_snapshot_t s2){ xbt_os_walltimer_start(timer); #endif - /* Compare number of processes */ - if(s1->nb_processes != s2->nb_processes){ - #ifdef MC_DEBUG - xbt_os_walltimer_stop(timer); - mc_comp_times->nb_processes_comparison_time = xbt_os_timer_elapsed(timer); - XBT_DEBUG("Different number of processes : %d - %d", s1->nb_processes, s2->nb_processes); - errors++; - #else - #ifdef MC_VERBOSE - XBT_VERB("Different number of processes : %d - %d", s1->nb_processes, s2->nb_processes); - #endif - - xbt_os_timer_free(timer); - xbt_os_walltimer_stop(global_timer); - mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer); - xbt_os_timer_free(global_timer); - - if(!raw_mem) - MC_UNSET_RAW_MEM; - - return 1; - #endif - } - - #ifdef MC_DEBUG - xbt_os_walltimer_start(timer); - #endif - - /* Compare number of bytes used in each heap */ - if(s1->heap_bytes_used != s2->heap_bytes_used){ - #ifdef MC_DEBUG - xbt_os_walltimer_stop(timer); - mc_comp_times->bytes_used_comparison_time = xbt_os_timer_elapsed(timer); - XBT_DEBUG("Different number of bytes used in each heap : %zu - %zu", s1->heap_bytes_used, s2->heap_bytes_used); - errors++; - #else - #ifdef MC_VERBOSE - XBT_VERB("Different number of bytes used in each heap : %zu - %zu", s1->heap_bytes_used, s2->heap_bytes_used); - #endif - - xbt_os_timer_free(timer); - xbt_os_walltimer_stop(global_timer); - mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer); - xbt_os_timer_free(global_timer); - - if(!raw_mem) - MC_UNSET_RAW_MEM; - - return 1; - #endif - }else{ - #ifdef MC_DEBUG - xbt_os_walltimer_stop(timer); - #endif - } - - #ifdef MC_DEBUG - xbt_os_walltimer_start(timer); - #endif - /* Compare size of stacks */ int i = 0; size_t size_used1, size_used2; @@ -343,17 +457,63 @@ int snapshot_compare(mc_snapshot_t s1, mc_snapshot_t s2){ /* Init heap information used in heap comparison algorithm */ init_heap_information((xbt_mheap_t)s1->regions[0]->data, (xbt_mheap_t)s2->regions[0]->data, s1->to_ignore, s2->to_ignore); + /* Stacks comparison */ + unsigned int cursor = 0; + int diff_local = 0; + is_diff = 0; + mc_snapshot_stack_t stack1, stack2; + + while(cursor < xbt_dynar_length(s1->stacks)){ + stack1 = (mc_snapshot_stack_t)xbt_dynar_get_as(s1->stacks, cursor, mc_snapshot_stack_t); + stack2 = (mc_snapshot_stack_t)xbt_dynar_get_as(s2->stacks, cursor, mc_snapshot_stack_t); + diff_local = compare_local_variables(stack1, stack2, s1->regions[0]->data, s2->regions[0]->data); + if(diff_local > 0){ + #ifdef MC_DEBUG + if(is_diff == 0){ + xbt_os_walltimer_stop(timer); + mc_comp_times->stacks_comparison_time = xbt_os_timer_elapsed(timer); + } + XBT_DEBUG("Different local variables between stacks %d", cursor + 1); + errors++; + is_diff = 1; + #else + + #ifdef MC_VERBOSE + XBT_VERB("Different local variables between stacks %d", cursor + 1); + #endif + + reset_heap_information(); + xbt_os_timer_free(timer); + xbt_os_walltimer_stop(global_timer); + mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer); + xbt_os_timer_free(global_timer); + + if(!raw_mem) + MC_UNSET_RAW_MEM; + + return 1; + #endif + } + cursor++; + } + + #ifdef MC_DEBUG + if(is_diff == 0) + xbt_os_walltimer_stop(timer); + xbt_os_walltimer_start(timer); + #endif + /* Compare binary global variables */ - is_diff = compare_global_variables(2, s1->regions[2]->data, s2->regions[2]->data); + is_diff = compare_global_variables(2, s1->regions[2], s2->regions[2]); if(is_diff != 0){ #ifdef MC_DEBUG xbt_os_walltimer_stop(timer); mc_comp_times->binary_global_variables_comparison_time = xbt_os_timer_elapsed(timer); - XBT_DEBUG("Different global variables in binary"); - errors++; + XBT_DEBUG("Different global variables in binary"); + errors++; #else #ifdef MC_VERBOSE - XBT_VERB("Different global variables in binary"); + XBT_VERB("Different global variables in binary"); #endif reset_heap_information(); @@ -376,16 +536,16 @@ int snapshot_compare(mc_snapshot_t s1, mc_snapshot_t s2){ #endif /* Compare libsimgrid global variables */ - is_diff = compare_global_variables(1, s1->regions[1]->data, s2->regions[1]->data); + is_diff = compare_global_variables(1, s1->regions[1], s2->regions[1]); if(is_diff != 0){ #ifdef MC_DEBUG xbt_os_walltimer_stop(timer); - mc_comp_times->libsimgrid_global_variables_comparison_time = xbt_os_timer_elapsed(timer); - XBT_DEBUG("Different global variables in libsimgrid"); - errors++; + mc_comp_times->libsimgrid_global_variables_comparison_time = xbt_os_timer_elapsed(timer); + XBT_DEBUG("Different global variables in libsimgrid"); + errors++; #else #ifdef MC_VERBOSE - XBT_VERB("Different global variables in libsimgrid"); + XBT_VERB("Different global variables in libsimgrid"); #endif reset_heap_information(); @@ -399,49 +559,6 @@ int snapshot_compare(mc_snapshot_t s1, mc_snapshot_t s2){ return 1; #endif - } - - #ifdef MC_DEBUG - if(is_diff == 0) - xbt_os_walltimer_stop(timer); - xbt_os_walltimer_start(timer); - #endif - - /* Stacks comparison */ - unsigned int cursor = 0; - int diff_local = 0; - is_diff = 0; - - while(cursor < xbt_dynar_length(s1->stacks)){ - diff_local = compare_local_variables(((mc_snapshot_stack_t)xbt_dynar_get_as(s1->stacks, cursor, mc_snapshot_stack_t))->local_variables->data, ((mc_snapshot_stack_t)xbt_dynar_get_as(s2->stacks, cursor, mc_snapshot_stack_t))->local_variables->data); - if(diff_local > 0){ - #ifdef MC_DEBUG - if(is_diff == 0){ - xbt_os_walltimer_stop(timer); - mc_comp_times->stacks_comparison_time = xbt_os_timer_elapsed(timer); - } - XBT_DEBUG("Different local variables between stacks %d", cursor + 1); - errors++; - is_diff = 1; - #else - - #ifdef MC_VERBOSE - XBT_VERB("Different local variables between stacks %d", cursor + 1); - #endif - - reset_heap_information(); - xbt_os_timer_free(timer); - xbt_os_walltimer_stop(global_timer); - mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer); - xbt_os_timer_free(global_timer); - - if(!raw_mem) - MC_UNSET_RAW_MEM; - - return 1; - #endif - } - cursor++; } #ifdef MC_DEBUG @@ -449,7 +566,7 @@ int snapshot_compare(mc_snapshot_t s1, mc_snapshot_t s2){ #endif /* Compare heap */ - if(mmalloc_compare_heap((xbt_mheap_t)s1->regions[0]->data, (xbt_mheap_t)s2->regions[0]->data)){ + if(mmalloc_compare_heap((xbt_mheap_t)s1->regions[0]->data, (xbt_mheap_t)s2->regions[0]->data) > 0){ #ifdef MC_DEBUG xbt_os_walltimer_stop(timer); @@ -502,158 +619,9 @@ int snapshot_compare(mc_snapshot_t s1, mc_snapshot_t s2){ } -int is_stack_ignore_variable(char *frame, char *var_name){ - - unsigned int cursor = 0; - int start = 0; - int end = xbt_dynar_length(mc_stack_comparison_ignore) - 1; - mc_stack_ignore_variable_t current_var; - - while(start <= end){ - cursor = (start + end) / 2; - current_var = (mc_stack_ignore_variable_t)xbt_dynar_get_as(mc_stack_comparison_ignore, cursor, mc_stack_ignore_variable_t); - if(strcmp(current_var->frame, frame) == 0 || strcmp(current_var->frame, "*") == 0){ - if(strcmp(current_var->var_name, var_name) == 0) - return 1; - if(strcmp(current_var->var_name, var_name) < 0) - start = cursor + 1; - if(strcmp(current_var->var_name, var_name) > 0) - end = cursor - 1; - }else if(strcmp(current_var->frame, frame) < 0){ - start = cursor + 1; - }else if(strcmp(current_var->frame, frame) > 0){ - end = cursor - 1; - } - } - - return 0; -} - -static int compare_local_variables(char *s1, char *s2){ - - xbt_dynar_t tokens1 = xbt_str_split(s1, NULL); - xbt_dynar_t tokens2 = xbt_str_split(s2, NULL); - - xbt_dynar_t s_tokens1, s_tokens2; - unsigned int cursor = 0; - void *addr1, *addr2; - char *frame_name1 = NULL, *frame_name2 = NULL; - int res_compare = 0; - - #if defined MC_VERBOSE || defined MC_DEBUG - char *var_name; - #endif - - while(cursor < xbt_dynar_length(tokens1)){ - s_tokens1 = xbt_str_split(xbt_dynar_get_as(tokens1, cursor, char *), "="); - s_tokens2 = xbt_str_split(xbt_dynar_get_as(tokens2, cursor, char *), "="); - if(xbt_dynar_length(s_tokens1) > 1 && xbt_dynar_length(s_tokens2) > 1){ - #if defined MC_VERBOSE || defined MC_DEBUG - var_name = xbt_dynar_get_as(s_tokens1, 0, char *); - #endif - if((strcmp(xbt_dynar_get_as(s_tokens1, 0, char *), "frame_name") == 0) && (strcmp(xbt_dynar_get_as(s_tokens2, 0, char *), "frame_name") == 0)){ - xbt_free(frame_name1); - xbt_free(frame_name2); - frame_name1 = strdup(xbt_dynar_get_as(s_tokens1, 1, char *)); - frame_name2 = strdup(xbt_dynar_get_as(s_tokens2, 1, char *)); - } - addr1 = (void *) strtoul(xbt_dynar_get_as(s_tokens1, 1, char *), NULL, 16); - addr2 = (void *) strtoul(xbt_dynar_get_as(s_tokens2, 1, char *), NULL, 16); - if(addr1 > std_heap && (char *)addr1 <= (char *)std_heap + STD_HEAP_SIZE && addr2 > std_heap && (char *)addr2 <= (char *)std_heap + STD_HEAP_SIZE){ - res_compare = compare_area(addr1, addr2, NULL); - if(res_compare == 1){ - if(is_stack_ignore_variable(frame_name1, xbt_dynar_get_as(s_tokens1, 0, char *)) && is_stack_ignore_variable(frame_name2, xbt_dynar_get_as(s_tokens2, 0, char *))){ - xbt_dynar_free(&s_tokens1); - xbt_dynar_free(&s_tokens2); - cursor++; - continue; - }else { - #ifdef MC_VERBOSE - XBT_VERB("Different local variable : %s at addresses %p - %p in frame %s", var_name, addr1, addr2, frame_name1); - #endif - #ifdef MC_DEBUG - XBT_DEBUG("Different local variable : %s at addresses %p - %p", var_name, addr1, addr2); - #endif - xbt_dynar_free(&s_tokens1); - xbt_dynar_free(&s_tokens2); - xbt_dynar_free(&tokens1); - xbt_dynar_free(&tokens2); - xbt_free(frame_name1); - xbt_free(frame_name2); - return 1; - } - } - }else{ - if(strcmp(xbt_dynar_get_as(s_tokens1, 1, char *), xbt_dynar_get_as(s_tokens2, 1, char *)) != 0){ - if(is_stack_ignore_variable(frame_name1, xbt_dynar_get_as(s_tokens1, 0, char *)) && is_stack_ignore_variable(frame_name2, xbt_dynar_get_as(s_tokens2, 0, char *))){ - xbt_dynar_free(&s_tokens1); - xbt_dynar_free(&s_tokens2); - cursor++; - continue; - }else { - #ifdef MC_VERBOSE - XBT_VERB("Different local variable : %s (%s - %s) in frame %s", var_name, xbt_dynar_get_as(s_tokens1, 1, char *), xbt_dynar_get_as(s_tokens2, 1, char *), frame_name1); - #endif - #ifdef MC_DEBUG - XBT_DEBUG("Different local variable : %s (%s - %s)", var_name, xbt_dynar_get_as(s_tokens1, 1, char *), xbt_dynar_get_as(s_tokens2, 1, char *)); - #endif - - xbt_dynar_free(&s_tokens1); - xbt_dynar_free(&s_tokens2); - xbt_dynar_free(&tokens1); - xbt_dynar_free(&tokens2); - xbt_free(frame_name1); - xbt_free(frame_name2); - return 1; - } - } - } - } - xbt_dynar_free(&s_tokens1); - xbt_dynar_free(&s_tokens2); - - cursor++; - } - - xbt_free(frame_name1); - xbt_free(frame_name2); - xbt_dynar_free(&tokens1); - xbt_dynar_free(&tokens2); - return 0; - -} - -static int is_heap_equality(xbt_dynar_t equals, void *a1, void *a2){ - - unsigned int cursor = 0; - int start = 0; - int end = xbt_dynar_length(equals) - 1; - heap_equality_t current_equality; - - while(start <= end){ - cursor = (start + end) / 2; - current_equality = (heap_equality_t)xbt_dynar_get_as(equals, cursor, heap_equality_t); - if(current_equality->address1 == a1){ - if(current_equality->address2 == a2) - return 1; - if(current_equality->address2 < a2) - start = cursor + 1; - if(current_equality->address2 > a2) - end = cursor - 1; - } - if(current_equality->address1 < a1) - start = cursor + 1; - if(current_equality->address1 > a1) - end = cursor - 1; - } - - return 0; - -} - int MC_compare_snapshots(void *s1, void *s2){ - MC_ignore_stack("self", "simcall_BODY_mc_snapshot"); + MC_ignore_local_variable("self", "simcall_BODY_mc_snapshot"); return simcall_mc_compare_snapshots(s1, s2); diff --git a/src/mc/mc_dpor.c b/src/mc/mc_dpor.c index 08990a5586..14538c5a50 100644 --- a/src/mc/mc_dpor.c +++ b/src/mc/mc_dpor.c @@ -30,6 +30,7 @@ static mc_visited_state_t visited_state_new(){ new_state->nb_processes = xbt_swag_size(simix_global->process_list); new_state->system_state = MC_take_snapshot(); new_state->num = mc_stats->expanded_states; + new_state->other_num = -1; return new_state; @@ -94,12 +95,21 @@ static int is_visited_state(){ if(bytes_used_test == current_bytes_used){ same_processes_and_bytes_not_found = 0; if(snapshot_compare(new_state->system_state, state_test->system_state) == 0){ - XBT_DEBUG("State %d already visited ! (equal to state %d)", new_state->num, state_test->num); + if(state_test->other_num == -1) + new_state->other_num = state_test->num; + else + new_state->other_num = state_test->other_num; + if(dot_output == NULL) + XBT_DEBUG("Next state %d already visited ! (equal to state %d)", new_state->num, state_test->num); + else + XBT_DEBUG("Next state %d already visited ! (equal to state %d (state %d in dot_output))", new_state->num, state_test->num, new_state->other_num); + xbt_dynar_remove_at(visited_states, cursor, NULL); + xbt_dynar_insert_at(visited_states, cursor, &new_state); if(raw_mem_set) MC_SET_RAW_MEM; else MC_UNSET_RAW_MEM; - return state_test->num; + return new_state->other_num; }else{ /* Search another state with same number of bytes used in std_heap */ previous_cursor = cursor - 1; @@ -109,12 +119,21 @@ static int is_visited_state(){ if(bytes_used_test != current_bytes_used) break; if(snapshot_compare(new_state->system_state, state_test->system_state) == 0){ - XBT_DEBUG("State %d already visited ! (equal to state %d)", new_state->num, state_test->num); + if(state_test->other_num == -1) + new_state->other_num = state_test->num; + else + new_state->other_num = state_test->other_num; + if(dot_output == NULL) + XBT_DEBUG("Next state %d already visited ! (equal to state %d)", new_state->num, state_test->num); + else + XBT_DEBUG("Next state %d already visited ! (equal to state %d (state %d in dot_output))", new_state->num, state_test->num, new_state->other_num); + xbt_dynar_remove_at(visited_states, previous_cursor, NULL); + xbt_dynar_insert_at(visited_states, cursor, &new_state); if(raw_mem_set) MC_SET_RAW_MEM; else MC_UNSET_RAW_MEM; - return state_test->num; + return new_state->other_num; } previous_cursor--; } @@ -125,12 +144,21 @@ static int is_visited_state(){ if(bytes_used_test != current_bytes_used) break; if(snapshot_compare(new_state->system_state, state_test->system_state) == 0){ - XBT_DEBUG("State %d already visited ! (equal to state %d)", new_state->num, state_test->num); + if(state_test->other_num == -1) + new_state->other_num = state_test->num; + else + new_state->other_num = state_test->other_num; + if(dot_output == NULL) + XBT_DEBUG("Next state %d already visited ! (equal to state %d)", new_state->num, state_test->num); + else + XBT_DEBUG("Next state %d already visited ! (equal to state %d (state %d in dot_output))", new_state->num, state_test->num, new_state->other_num); + xbt_dynar_remove_at(visited_states, next_cursor, NULL); + xbt_dynar_insert_at(visited_states, next_cursor, &new_state); if(raw_mem_set) MC_SET_RAW_MEM; else MC_UNSET_RAW_MEM; - return state_test->num; + return new_state->other_num; } next_cursor++; } @@ -247,8 +275,8 @@ void MC_dpor(void) smx_process_t process = NULL; xbt_fifo_item_t item = NULL; int pos; - int visited_state; - int enabled = 0, max_depth_reached = 0; + int visited_state = -1; + int enabled = 0; while (xbt_fifo_size(mc_stack_safety) > 0) { @@ -257,17 +285,17 @@ void MC_dpor(void) xbt_fifo_get_item_content(xbt_fifo_get_first_item(mc_stack_safety)); XBT_DEBUG("**************************************************"); - XBT_DEBUG("Exploration depth=%d (state=%p, num %d)(%u interleave)", + XBT_DEBUG("Exploration depth=%d (state=%p, num %d)(%u interleave, user_max_depth %d)", xbt_fifo_size(mc_stack_safety), state, state->num, - MC_state_interleave_size(state)); - + MC_state_interleave_size(state), user_max_depth_reached); + /* Update statistics */ mc_stats->visited_states++; /* If there are processes to interleave and the maximum depth has not been reached then perform one step of the exploration algorithm */ - if (xbt_fifo_size(mc_stack_safety) <= _sg_mc_max_depth && - (req = MC_state_get_request(state, &value))) { + if (xbt_fifo_size(mc_stack_safety) <= _sg_mc_max_depth && !user_max_depth_reached && + (req = MC_state_get_request(state, &value)) && visited_state == -1) { /* Debug information */ if(XBT_LOG_ISENABLED(mc_dpor, xbt_log_priority_debug)){ @@ -275,7 +303,7 @@ void MC_dpor(void) XBT_DEBUG("Execute: %s", req_str); xbt_free(req_str); } - + MC_SET_RAW_MEM; if(dot_output != NULL) req_str = MC_request_get_dot_output(req, value); @@ -350,9 +378,14 @@ void MC_dpor(void) /* The interleave set is empty or the maximum depth is reached, let's back-track */ } else { - if(xbt_fifo_size(mc_stack_safety) > _sg_mc_max_depth){ + if((xbt_fifo_size(mc_stack_safety) > _sg_mc_max_depth) || user_max_depth_reached || visited_state != -1){ - XBT_WARN("/!\\ Max depth reached ! /!\\ "); + if(user_max_depth_reached && visited_state == -1) + XBT_DEBUG("User max depth reached !"); + else if(visited_state == -1) + XBT_WARN("/!\\ Max depth reached ! /!\\ "); + + visited_state = -1; /* Interleave enabled processes in the state in which they have been enabled for the first time */ xbt_swag_foreach(process, simix_global->process_list){ @@ -365,7 +398,8 @@ void MC_dpor(void) int cursor = xbt_fifo_size(mc_stack_safety); xbt_fifo_foreach(mc_stack_safety, item, state_test, mc_state_t){ if(cursor-- == enabled){ - if(!MC_state_process_is_done(state_test, process)){ + if(!MC_state_process_is_done(state_test, process) && state_test->num != state->num){ + XBT_DEBUG("Interleave process %lu in state %d", process->pid, state_test->num); MC_state_interleave_process(state_test, process); break; } @@ -374,32 +408,18 @@ void MC_dpor(void) } } - if(MC_state_interleave_size(state) > 0){ - max_depth_reached = 1; - }else{ - /* Trash the current state, no longer needed */ - MC_SET_RAW_MEM; - xbt_fifo_shift(mc_stack_safety); - MC_state_delete(state); - MC_UNSET_RAW_MEM; - - max_depth_reached = 0; - } - - }else{ - XBT_DEBUG("There are no more processes to interleave."); + XBT_DEBUG("There are no more processes to interleave. (depth %d)", xbt_fifo_size(mc_stack_safety) + 1); - /* Trash the current state, no longer needed */ - MC_SET_RAW_MEM; - xbt_fifo_shift(mc_stack_safety); - MC_state_delete(state); - XBT_DEBUG("Delete state %d at depth %d", state->num, xbt_fifo_size(mc_stack_safety) + 1); - MC_UNSET_RAW_MEM; - - max_depth_reached = 0; } + + /* Trash the current state, no longer needed */ + MC_SET_RAW_MEM; + xbt_fifo_shift(mc_stack_safety); + MC_state_delete(state); + XBT_DEBUG("Delete state %d at depth %d", state->num, xbt_fifo_size(mc_stack_safety) + 1); + MC_UNSET_RAW_MEM; /* Check for deadlocks */ if(MC_deadlock_check()){ @@ -417,10 +437,6 @@ void MC_dpor(void) while ((state = xbt_fifo_shift(mc_stack_safety)) != NULL) { if(mc_reduce_kind != e_mc_reduce_none){ - if((xbt_fifo_size(mc_stack_safety) == _sg_mc_max_depth) && max_depth_reached){ - req = MC_state_get_request(state, &value); - MC_state_set_executed_request(state, req, value); - } req = MC_state_get_internal_request(state); xbt_fifo_foreach(mc_stack_safety, item, prev_state, mc_state_t) { if(MC_request_depend(req, MC_state_get_internal_request(prev_state))){ diff --git a/src/mc/mc_global.c b/src/mc/mc_global.c index 7469068073..cbd6cc8b87 100644 --- a/src/mc/mc_global.c +++ b/src/mc/mc_global.c @@ -32,6 +32,8 @@ int _sg_mc_max_depth=1000; int _sg_mc_visited=0; char *_sg_mc_dot_output_file = NULL; +int user_max_depth_reached = 0; + extern int _sg_init_status; void _mc_cfg_cb_reduce(const char *name, int pos) { if (_sg_init_status && !_sg_do_model_check) { @@ -89,7 +91,6 @@ void _mc_cfg_cb_dot_output(const char *name, int pos) { } /* MC global data structures */ - mc_state_t mc_current_state = NULL; char mc_replay_mode = FALSE; double *mc_time = NULL; @@ -98,20 +99,23 @@ double mc_snapshot_comparison_time; mc_stats_t mc_stats = NULL; /* Safety */ - xbt_fifo_t mc_stack_safety = NULL; mc_global_t initial_state_safety = NULL; /* Liveness */ - xbt_fifo_t mc_stack_liveness = NULL; mc_global_t initial_state_liveness = NULL; int compare; -/* Local */ -xbt_dict_t mc_local_variables = NULL; -/* Global */ -xbt_dynar_t mc_global_variables = NULL; +xbt_automaton_t _mc_property_automaton = NULL; + +/* Variables */ +xbt_dict_t mc_local_variables_libsimgrid = NULL; +xbt_dict_t mc_local_variables_binary = NULL; +xbt_dynar_t mc_global_variables_libsimgrid = NULL; +xbt_dynar_t mc_global_variables_binary = NULL; +xbt_dict_t mc_variables_type_libsimgrid = NULL; +xbt_dict_t mc_variables_type_binary = NULL; /* Ignore mechanism */ xbt_dynar_t mc_stack_comparison_ignore; @@ -119,768 +123,1187 @@ xbt_dynar_t mc_data_bss_comparison_ignore; extern xbt_dynar_t mc_heap_comparison_ignore; extern xbt_dynar_t stacks_areas; +/* Dot output */ FILE *dot_output = NULL; const char* colors[13]; -xbt_automaton_t _mc_property_automaton = NULL; - -/* Static functions */ -static void MC_assert_pair(int prop); -static dw_location_t get_location(xbt_dict_t location_list, char *expr); -static dw_frame_t get_frame_by_offset(xbt_dict_t all_variables, unsigned long int offset); -static size_t data_bss_ignore_size(void *address); -static void MC_get_global_variables(char *elf_file); +/******************************* DWARF Information *******************************/ +/**********************************************************************************/ -void MC_do_the_modelcheck_for_real() { +/************************** Free functions *************************/ - MC_SET_RAW_MEM; - mc_comp_times = xbt_new0(s_mc_comparison_times_t, 1); - MC_UNSET_RAW_MEM; +static void dw_location_free(dw_location_t l){ + if(l){ + if(l->type == e_dw_loclist) + xbt_dynar_free(&(l->location.loclist)); + else if(l->type == e_dw_compose) + xbt_dynar_free(&(l->location.compose)); + else if(l->type == e_dw_arithmetic) + xbt_free(l->location.arithmetic); - if (!_sg_mc_property_file || _sg_mc_property_file[0]=='\0') { - if (mc_reduce_kind==e_mc_reduce_unset) - mc_reduce_kind=e_mc_reduce_dpor; + xbt_free(l); + } +} - XBT_INFO("Check a safety property"); - MC_modelcheck_safety(); +static void dw_location_entry_free(dw_location_entry_t e){ + dw_location_free(e->location); + xbt_free(e); +} - } else { +static void dw_type_free(dw_type_t t){ + xbt_free(t->name); + xbt_free(t->dw_type_id); + xbt_dynar_free(&(t->members)); + xbt_free(t); +} - if (mc_reduce_kind==e_mc_reduce_unset) - mc_reduce_kind=e_mc_reduce_none; +static void dw_type_free_voidp(void *t){ + dw_type_free((dw_type_t) * (void **) t); +} - XBT_INFO("Check the liveness property %s",_sg_mc_property_file); - MC_automaton_load(_sg_mc_property_file); - MC_modelcheck_liveness(); +static void dw_variable_free(dw_variable_t v){ + if(v){ + xbt_free(v->name); + xbt_free(v->type_origin); + if(!v->global) + dw_location_free(v->address.location); + xbt_free(v); } } - -void MC_compare(void){ - compare = 1; +static void dw_variable_free_voidp(void *t){ + dw_variable_free((dw_variable_t) * (void **) t); } -void MC_init(){ - - int raw_mem_set = (mmalloc_get_current_heap() == raw_heap); - - compare = 0; - - /* Initialize the data structures that must be persistent across every - iteration of the model-checker (in RAW memory) */ +/*************************************************************************/ - MC_SET_RAW_MEM; +static dw_location_t MC_dwarf_get_location(xbt_dict_t location_list, char *expr){ - MC_init_memory_map_info(); - - mc_local_variables = xbt_dict_new_homogeneous(NULL); + dw_location_t loc = xbt_new0(s_dw_location_t, 1); - /* Get local variables in binary for state equality detection */ - xbt_dict_t binary_location_list = MC_get_location_list(xbt_binary_name); - MC_get_local_variables(xbt_binary_name, binary_location_list, &mc_local_variables); + if(location_list != NULL){ + + char *key = bprintf("%d", (int)strtoul(expr, NULL, 16)); + loc->type = e_dw_loclist; + loc->location.loclist = (xbt_dynar_t)xbt_dict_get_or_null(location_list, key); + if(loc->location.loclist == NULL) + XBT_INFO("Key not found in loclist"); + xbt_free(key); + return loc; - /* Get local variables in libsimgrid for state equality detection */ - xbt_dict_t libsimgrid_location_list = MC_get_location_list(libsimgrid_path); - MC_get_local_variables(libsimgrid_path, libsimgrid_location_list, &mc_local_variables); + }else{ - xbt_dict_free(&libsimgrid_location_list); - xbt_dict_free(&binary_location_list); - - /* Get .plt section (start and end addresses) for data libsimgrid and data program comparison */ - get_libsimgrid_plt_section(); - get_binary_plt_section(); + int cursor = 0; + char *tok = NULL, *tok2 = NULL; + + xbt_dynar_t tokens1 = xbt_str_split(expr, ";"); + xbt_dynar_t tokens2; - /* Get global variables */ - MC_get_global_variables(xbt_binary_name); - MC_get_global_variables(libsimgrid_path); + loc->type = e_dw_compose; + loc->location.compose = xbt_dynar_new(sizeof(dw_location_t), NULL); - MC_UNSET_RAW_MEM; + while(cursor < xbt_dynar_length(tokens1)){ - /* Ignore some variables from xbt/ex.h used by exception e for stacks comparison */ - MC_ignore_stack("e", "*"); - MC_ignore_stack("__ex_cleanup", "*"); - MC_ignore_stack("__ex_mctx_en", "*"); - MC_ignore_stack("__ex_mctx_me", "*"); - MC_ignore_stack("__xbt_ex_ctx_ptr", "*"); - MC_ignore_stack("_log_ev", "*"); - MC_ignore_stack("_throw_ctx", "*"); - MC_ignore_stack("ctx", "*"); - - MC_ignore_stack("next_context", "smx_ctx_sysv_suspend_serial"); - MC_ignore_stack("i", "smx_ctx_sysv_suspend_serial"); + tok = xbt_dynar_get_as(tokens1, cursor, char*); + tokens2 = xbt_str_split(tok, " "); + tok2 = xbt_dynar_get_as(tokens2, 0, char*); + + if(strncmp(tok2, "DW_OP_reg", 9) == 0){ + dw_location_t new_element = xbt_new0(s_dw_location_t, 1); + new_element->type = e_dw_register; + new_element->location.reg = atoi(strtok(tok2, "DW_OP_reg")); + xbt_dynar_push(loc->location.compose, &new_element); + }else if(strcmp(tok2, "DW_OP_fbreg:") == 0){ + dw_location_t new_element = xbt_new0(s_dw_location_t, 1); + new_element->type = e_dw_fbregister_op; + new_element->location.fbreg_op = atoi(xbt_dynar_get_as(tokens2, xbt_dynar_length(tokens2) - 1, char*)); + xbt_dynar_push(loc->location.compose, &new_element); + }else if(strncmp(tok2, "DW_OP_breg", 10) == 0){ + dw_location_t new_element = xbt_new0(s_dw_location_t, 1); + new_element->type = e_dw_bregister_op; + new_element->location.breg_op.reg = atoi(strtok(tok2, "DW_OP_breg")); + new_element->location.breg_op.offset = atoi(xbt_dynar_get_as(tokens2, xbt_dynar_length(tokens2) - 1, char*)); + xbt_dynar_push(loc->location.compose, &new_element); + }else if(strncmp(tok2, "DW_OP_lit", 9) == 0){ + dw_location_t new_element = xbt_new0(s_dw_location_t, 1); + new_element->type = e_dw_lit; + new_element->location.lit = atoi(strtok(tok2, "DW_OP_lit")); + xbt_dynar_push(loc->location.compose, &new_element); + }else if(strcmp(tok2, "DW_OP_piece:") == 0){ + dw_location_t new_element = xbt_new0(s_dw_location_t, 1); + new_element->type = e_dw_piece; + new_element->location.piece = atoi(xbt_dynar_get_as(tokens2, xbt_dynar_length(tokens2) - 1, char*)); + xbt_dynar_push(loc->location.compose, &new_element); + }else if(strcmp(tok2, "DW_OP_plus_uconst:") == 0){ + dw_location_t new_element = xbt_new0(s_dw_location_t, 1); + new_element->type = e_dw_plus_uconst; + new_element->location.plus_uconst = atoi(xbt_dynar_get_as(tokens2, xbt_dynar_length(tokens2) - 1, char *)); + xbt_dynar_push(loc->location.compose, &new_element); + }else if(strcmp(tok, "DW_OP_abs") == 0 || + strcmp(tok, "DW_OP_and") == 0 || + strcmp(tok, "DW_OP_div") == 0 || + strcmp(tok, "DW_OP_minus") == 0 || + strcmp(tok, "DW_OP_mod") == 0 || + strcmp(tok, "DW_OP_mul") == 0 || + strcmp(tok, "DW_OP_neg") == 0 || + strcmp(tok, "DW_OP_not") == 0 || + strcmp(tok, "DW_OP_or") == 0 || + strcmp(tok, "DW_OP_plus") == 0){ + dw_location_t new_element = xbt_new0(s_dw_location_t, 1); + new_element->type = e_dw_arithmetic; + new_element->location.arithmetic = strdup(strtok(tok2, "DW_OP_")); + xbt_dynar_push(loc->location.compose, &new_element); + }else if(strcmp(tok, "DW_OP_stack_value") == 0){ + }else if(strcmp(tok2, "DW_OP_deref_size:") == 0){ + dw_location_t new_element = xbt_new0(s_dw_location_t, 1); + new_element->type = e_dw_deref; + new_element->location.deref_size = (unsigned int short) atoi(xbt_dynar_get_as(tokens2, xbt_dynar_length(tokens2) - 1, char*)); + xbt_dynar_push(loc->location.compose, &new_element); + }else if(strcmp(tok, "DW_OP_deref") == 0){ + dw_location_t new_element = xbt_new0(s_dw_location_t, 1); + new_element->type = e_dw_deref; + new_element->location.deref_size = sizeof(void *); + xbt_dynar_push(loc->location.compose, &new_element); + }else if(strcmp(tok2, "DW_OP_constu:") == 0){ + dw_location_t new_element = xbt_new0(s_dw_location_t, 1); + new_element->type = e_dw_uconstant; + new_element->location.uconstant.bytes = 1; + new_element->location.uconstant.value = (unsigned long int)(atoi(xbt_dynar_get_as(tokens2, xbt_dynar_length(tokens2) - 1, char*))); + xbt_dynar_push(loc->location.compose, &new_element); + }else if(strcmp(tok2, "DW_OP_consts:") == 0){ + dw_location_t new_element = xbt_new0(s_dw_location_t, 1); + new_element->type = e_dw_sconstant; + new_element->location.sconstant.bytes = 1; + new_element->location.sconstant.value = (long int)(atoi(xbt_dynar_get_as(tokens2, xbt_dynar_length(tokens2) - 1, char*))); + xbt_dynar_push(loc->location.compose, &new_element); + }else if(strcmp(tok2, "DW_OP_const1u:") == 0 || + strcmp(tok2, "DW_OP_const2u:") == 0 || + strcmp(tok2, "DW_OP_const4u:") == 0 || + strcmp(tok2, "DW_OP_const8u:") == 0){ + dw_location_t new_element = xbt_new0(s_dw_location_t, 1); + new_element->type = e_dw_uconstant; + new_element->location.uconstant.bytes = tok2[11] - '0'; + new_element->location.uconstant.value = (unsigned long int)(atoi(xbt_dynar_get_as(tokens2, xbt_dynar_length(tokens2) - 1, char*))); + xbt_dynar_push(loc->location.compose, &new_element); + }else if(strcmp(tok, "DW_OP_const1s") == 0 || + strcmp(tok, "DW_OP_const2s") == 0 || + strcmp(tok, "DW_OP_const4s") == 0 || + strcmp(tok, "DW_OP_const8s") == 0){ + dw_location_t new_element = xbt_new0(s_dw_location_t, 1); + new_element->type = e_dw_sconstant; + new_element->location.sconstant.bytes = tok2[11] - '0'; + new_element->location.sconstant.value = (long int)(atoi(xbt_dynar_get_as(tokens2, xbt_dynar_length(tokens2) - 1, char*))); + xbt_dynar_push(loc->location.compose, &new_element); + }else{ + dw_location_t new_element = xbt_new0(s_dw_location_t, 1); + new_element->type = e_dw_unsupported; + xbt_dynar_push(loc->location.compose, &new_element); + } - /* Ignore local variable about time used for tracing */ - MC_ignore_stack("start_time", "*"); + cursor++; + xbt_dynar_free(&tokens2); - MC_ignore_data_bss(&mc_comp_times, sizeof(mc_comp_times)); - MC_ignore_data_bss(&mc_snapshot_comparison_time, sizeof(mc_snapshot_comparison_time)); - MC_ignore_data_bss(&mc_time, sizeof(mc_time)); + } + + xbt_dynar_free(&tokens1); - if(raw_mem_set) - MC_SET_RAW_MEM; + return loc; + + } } -void MC_init_dot_output(){ /* FIXME : more colors */ +static xbt_dict_t MC_dwarf_get_location_list(const char *elf_file){ - colors[0] = "blue"; - colors[1] = "red"; - colors[2] = "green3"; - colors[3] = "goldenrod"; - colors[4] = "brown"; - colors[5] = "purple"; - colors[6] = "magenta"; - colors[7] = "turquoise4"; - colors[8] = "gray25"; - colors[9] = "forestgreen"; - colors[10] = "hotpink"; - colors[11] = "lightblue"; - colors[12] = "tan"; + char *command = bprintf("objdump -Wo %s", elf_file); - dot_output = fopen(_sg_mc_dot_output_file, "w"); - - if(dot_output == NULL){ - perror("Error open dot output file"); + FILE *fp = popen(command, "r"); + + if(fp == NULL){ + perror("popen for objdump failed"); xbt_abort(); } - fprintf(dot_output, "digraph graphname{\n fixedsize=true; rankdir=TB; ranksep=.25; edge [fontsize=12]; node [fontsize=10, shape=circle,width=.5 ]; graph [resolution=20, fontsize=10];\n"); + int debug = 0; /*Detect if the program has been compiled with -g */ -} + xbt_dict_t location_list = xbt_dict_new_homogeneous(NULL); + char *line = NULL, *loc_expr = NULL; + ssize_t read; + size_t n = 0; + int cursor_remove; + xbt_dynar_t split = NULL; -void MC_modelcheck_safety(void) -{ - int raw_mem_set = (mmalloc_get_current_heap() == raw_heap); + while ((read = xbt_getline(&line, &n, fp)) != -1) { - /* Check if MC is already initialized */ - if (initial_state_safety) - return; + /* Wipeout the new line character */ + line[read - 1] = '\0'; - mc_time = xbt_new0(double, simix_process_maxpid); + xbt_str_trim(line, NULL); + + if(n == 0) + continue; - /* mc_time refers to clock for each process -> ignore it for heap comparison */ - MC_ignore_heap(mc_time, simix_process_maxpid * sizeof(double)); + if(strlen(line) == 0) + continue; - /* Initialize the data structures that must be persistent across every - iteration of the model-checker (in RAW memory) */ - - MC_SET_RAW_MEM; + if(debug == 0){ - /* Initialize statistics */ - mc_stats = xbt_new0(s_mc_stats_t, 1); - mc_stats->state_size = 1; + if(strncmp(line, elf_file, strlen(elf_file)) == 0) + continue; + + if(strncmp(line, "Contents", 8) == 0) + continue; - /* Create exploration stack */ - mc_stack_safety = xbt_fifo_new(); + if(strncmp(line, "Offset", 6) == 0){ + debug = 1; + continue; + } + } - if((_sg_mc_dot_output_file != NULL) && (_sg_mc_dot_output_file[0]!='\0')) - MC_init_dot_output(); + if(debug == 0){ + XBT_INFO("Your program must be compiled with -g"); + xbt_abort(); + } - MC_UNSET_RAW_MEM; + xbt_dynar_t loclist = xbt_dynar_new(sizeof(dw_location_entry_t), NULL); - if(_sg_mc_visited > 0){ - MC_init(); - }else{ - MC_SET_RAW_MEM; - MC_init_memory_map_info(); - get_libsimgrid_plt_section(); - get_binary_plt_section(); - MC_UNSET_RAW_MEM; - } - - MC_dpor_init(); - - MC_SET_RAW_MEM; - /* Save the initial state */ - initial_state_safety = xbt_new0(s_mc_global_t, 1); - initial_state_safety->snapshot = MC_take_snapshot(); - MC_UNSET_RAW_MEM; + xbt_str_strip_spaces(line); + split = xbt_str_split(line, " "); - MC_dpor(); + while(read != -1 && strcmp("lowpc = strtoul((char *)xbt_dynar_get_as(split, 1, char *), NULL, 16); + new_entry->highpc = strtoul((char *)xbt_dynar_get_as(split, 2, char *), NULL, 16); + + cursor_remove =0; + while(cursor_remove < 3){ + xbt_dynar_remove_at(split, 0, NULL); + cursor_remove++; + } - if(raw_mem_set) - MC_SET_RAW_MEM; + loc_expr = xbt_str_join(split, " "); + xbt_str_ltrim(loc_expr, "("); + xbt_str_rtrim(loc_expr, ")"); + new_entry->location = MC_dwarf_get_location(NULL, loc_expr); - MC_exit(); -} + xbt_dynar_push(loclist, &new_entry); -void MC_modelcheck_liveness(){ + xbt_dynar_free(&split); + free(loc_expr); - int raw_mem_set = (mmalloc_get_current_heap() == raw_heap); + read = xbt_getline(&line, &n, fp); + if(read != -1){ + line[read - 1] = '\0'; + xbt_str_strip_spaces(line); + split = xbt_str_split(line, " "); + } - MC_init(); + } - mc_time = xbt_new0(double, simix_process_maxpid); - /* mc_time refers to clock for each process -> ignore it for heap comparison */ - MC_ignore_heap(mc_time, simix_process_maxpid * sizeof(double)); - - MC_SET_RAW_MEM; - - /* Initialize statistics */ - mc_stats = xbt_new0(s_mc_stats_t, 1); - mc_stats->state_size = 1; + char *key = bprintf("%d", (int)strtoul((char *)xbt_dynar_get_as(split, 0, char *), NULL, 16)); + xbt_dict_set(location_list, key, loclist, NULL); + xbt_free(key); + + xbt_dynar_free(&split); - /* Create exploration stack */ - mc_stack_liveness = xbt_fifo_new(); + } - /* Create the initial state */ - initial_state_liveness = xbt_new0(s_mc_global_t, 1); + xbt_free(line); + xbt_free(command); + pclose(fp); - if((_sg_mc_dot_output_file != NULL) && (_sg_mc_dot_output_file[0]!='\0')) - MC_init_dot_output(); - - MC_UNSET_RAW_MEM; + return location_list; +} - MC_ddfs_init(); +static dw_frame_t MC_dwarf_get_frame_by_offset(xbt_dict_t all_variables, unsigned long int offset){ - /* We're done */ - MC_print_statistics(mc_stats); - xbt_free(mc_time); + xbt_dict_cursor_t cursor = NULL; + char *name; + dw_frame_t res; - if(raw_mem_set) - MC_SET_RAW_MEM; + xbt_dict_foreach(all_variables, cursor, name, res) { + if(offset >= res->start && offset < res->end){ + xbt_dict_cursor_free(&cursor); + return res; + } + } + xbt_dict_cursor_free(&cursor); + return NULL; + } +static dw_variable_t MC_dwarf_get_variable_by_name(dw_frame_t frame, char *var){ -void MC_exit(void) -{ - xbt_free(mc_time); - MC_memory_exit(); - xbt_abort(); -} + unsigned int cursor = 0; + dw_variable_t current_var; -int SIMIX_pre_mc_random(smx_simcall_t simcall){ + xbt_dynar_foreach(frame->variables, cursor, current_var){ + if(strcmp(var, current_var->name) == 0) + return current_var; + } - return simcall->mc_value; + return NULL; } +static int MC_dwarf_get_variable_index(xbt_dynar_t variables, char* var, void *address){ -int MC_random(void) -{ - /*FIXME: return mc_current_state->executed_transition->random.value;*/ - return simcall_mc_random(); -} - -/** - * \brief Schedules all the process that are ready to run - */ -void MC_wait_for_requests(void) -{ - smx_process_t process; - smx_simcall_t req; - unsigned int iter; + if(xbt_dynar_is_empty(variables)) + return 0; - while (!xbt_dynar_is_empty(simix_global->process_to_run)) { - SIMIX_process_runall(); - xbt_dynar_foreach(simix_global->process_that_ran, iter, process) { - req = &process->simcall; - if (req->call != SIMCALL_NONE && !MC_request_is_visible(req)) - SIMIX_simcall_pre(req, 0); - } - } -} + unsigned int cursor = 0; + int start = 0; + int end = xbt_dynar_length(variables) - 1; + dw_variable_t var_test = NULL; -int MC_deadlock_check() -{ - int deadlock = FALSE; - smx_process_t process; - if(xbt_swag_size(simix_global->process_list)){ - deadlock = TRUE; - xbt_swag_foreach(process, simix_global->process_list){ - if(process->simcall.call != SIMCALL_NONE - && MC_request_is_enabled(&process->simcall)){ - deadlock = FALSE; - break; + while(start <= end){ + cursor = (start + end) / 2; + var_test = (dw_variable_t)xbt_dynar_get_as(variables, cursor, dw_variable_t); + if(strcmp(var_test->name, var) < 0){ + start = cursor + 1; + }else if(strcmp(var_test->name, var) > 0){ + end = cursor - 1; + }else{ + if(address){ /* global variable */ + if(var_test->address.address == address) + return -1; + if(var_test->address.address > address) + end = cursor - 1; + else + start = cursor + 1; + }else{ /* local variable */ + return -1; } } } - return deadlock; -} - -/** - * \brief Re-executes from the state at position start all the transitions indicated by - * a given model-checker stack. - * \param stack The stack with the transitions to execute. - * \param start Start index to begin the re-execution. - */ -void MC_replay(xbt_fifo_t stack, int start) -{ - int raw_mem = (mmalloc_get_current_heap() == raw_heap); - int value, i = 1, count = 1; - char *req_str; - smx_simcall_t req = NULL, saved_req = NULL; - xbt_fifo_item_t item, start_item; - mc_state_t state; - smx_process_t process = NULL; + if(strcmp(var_test->name, var) == 0){ + if(address && var_test->address.address < address) + return cursor+1; + else + return cursor; + }else if(strcmp(var_test->name, var) < 0) + return cursor+1; + else + return cursor; - XBT_DEBUG("**** Begin Replay ****"); +} - if(start == -1){ - /* Restore the initial state */ - MC_restore_snapshot(initial_state_safety->snapshot); - /* At the moment of taking the snapshot the raw heap was set, so restoring - * it will set it back again, we have to unset it to continue */ - MC_UNSET_RAW_MEM; - } - start_item = xbt_fifo_get_last_item(stack); - if(start != -1){ - while (i != start){ - start_item = xbt_fifo_get_prev_item(start_item); - i++; - } - } +static void MC_dwarf_get_variables(const char *elf_file, xbt_dict_t location_list, xbt_dict_t *local_variables, xbt_dynar_t *global_variables, xbt_dict_t *types){ - MC_SET_RAW_MEM; - xbt_dict_reset(first_enabled_state); - xbt_swag_foreach(process, simix_global->process_list){ - if(MC_process_is_enabled(process)){ - char *key = bprintf("%lu", process->pid); - char *data = bprintf("%d", count); - xbt_dict_set(first_enabled_state, key, data, NULL); - xbt_free(key); - } - } - MC_UNSET_RAW_MEM; + char *command = bprintf("objdump -Wi %s", elf_file); + FILE *fp = popen(command, "r"); - /* Traverse the stack from the state at position start and re-execute the transitions */ - for (item = start_item; - item != xbt_fifo_get_first_item(stack); - item = xbt_fifo_get_prev_item(item)) { + if(fp == NULL) + perror("popen for objdump failed"); - state = (mc_state_t) xbt_fifo_get_item_content(item); - saved_req = MC_state_get_executed_request(state, &value); - - MC_SET_RAW_MEM; - char *key = bprintf("%lu", saved_req->issuer->pid); - xbt_dict_remove(first_enabled_state, key); - xbt_free(key); - MC_UNSET_RAW_MEM; - - if(saved_req){ - /* because we got a copy of the executed request, we have to fetch the - real one, pointed by the request field of the issuer process */ - req = &saved_req->issuer->simcall; + char *line = NULL, *origin, *abstract_origin, *current_frame = NULL, + *subprogram_name = NULL, *subprogram_start = NULL, *subprogram_end = NULL, + *node_type = NULL, *location_type = NULL, *variable_name = NULL, + *loc_expr = NULL, *name = NULL, *end =NULL, *type_origin = NULL, *global_address = NULL, + *parent_value = NULL; - /* Debug information */ - if(XBT_LOG_ISENABLED(mc_global, xbt_log_priority_debug)){ - req_str = MC_request_to_string(req, value); - XBT_DEBUG("Replay: %s (%p)", req_str, state); - xbt_free(req_str); - } - } - - SIMIX_simcall_pre(req, value); - MC_wait_for_requests(); + ssize_t read =0; + size_t n = 0; + int global_variable = 0, parent = 0, new_frame = 0, new_variable = 1, size = 0, + is_pointer = 0, struct_decl = 0, member_end = 0, + enumeration_size = 0, subrange = 0, union_decl = 0, offset = 0, index = 0; + + xbt_dynar_t split = NULL, split2 = NULL; - count++; + xbt_dict_t variables_origin = xbt_dict_new_homogeneous(xbt_free); + xbt_dict_t subprograms_origin = xbt_dict_new_homogeneous(xbt_free); - MC_SET_RAW_MEM; - /* Insert in dict all enabled processes */ - xbt_swag_foreach(process, simix_global->process_list){ - if(MC_process_is_enabled(process) /*&& !MC_state_process_is_done(state, process)*/){ - char *key = bprintf("%lu", process->pid); - if(xbt_dict_get_or_null(first_enabled_state, key) == NULL){ - char *data = bprintf("%d", count); - xbt_dict_set(first_enabled_state, key, data, NULL); - } - xbt_free(key); - } - } - MC_UNSET_RAW_MEM; - - /* Update statistics */ - mc_stats->visited_states++; - mc_stats->executed_transitions++; + dw_frame_t variable_frame, subroutine_frame = NULL; - } + e_dw_type_type type_type = -1; - XBT_DEBUG("**** End Replay ****"); + read = xbt_getline(&line, &n, fp); - if(raw_mem) - MC_SET_RAW_MEM; - else - MC_UNSET_RAW_MEM; + while (read != -1) { + + /* Wipeout the new line character */ + line[read - 1] = '\0'; + if(n == 0 || strlen(line) == 0){ + read = xbt_getline(&line, &n, fp); + continue; + } -} + xbt_str_ltrim(line, NULL); + xbt_str_strip_spaces(line); + + if(line[0] != '<'){ + read = xbt_getline(&line, &n, fp); + continue; + } + + xbt_dynar_free(&split); + split = xbt_str_split(line, " "); -void MC_replay_liveness(xbt_fifo_t stack, int all_stack) -{ + /* Get node type */ + node_type = xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *); - initial_state_liveness->raw_mem_set = (mmalloc_get_current_heap() == raw_heap); + if(strcmp(node_type, "(DW_TAG_subprogram)") == 0){ /* New frame */ - int value; - char *req_str; - smx_simcall_t req = NULL, saved_req = NULL; - xbt_fifo_item_t item; - mc_state_t state; - mc_pair_t pair; - int depth = 1; + dw_frame_t frame = NULL; - XBT_DEBUG("**** Begin Replay ****"); + strtok(xbt_dynar_get_as(split, 0, char *), "<"); + subprogram_start = xbt_strdup(strtok(NULL, "<")); + xbt_str_rtrim(subprogram_start, ">:"); - /* Restore the initial state */ - MC_restore_snapshot(initial_state_liveness->snapshot); + read = xbt_getline(&line, &n, fp); + + while(read != -1){ - /* At the moment of taking the snapshot the raw heap was set, so restoring - * it will set it back again, we have to unset it to continue */ - if(!initial_state_liveness->raw_mem_set) - MC_UNSET_RAW_MEM; + /* Wipeout the new line character */ + line[read - 1] = '\0'; - if(all_stack){ + if(n == 0 || strlen(line) == 0){ + read = xbt_getline(&line, &n, fp); + continue; + } + + xbt_dynar_free(&split); + xbt_str_rtrim(line, NULL); + xbt_str_strip_spaces(line); + split = xbt_str_split(line, " "); + + node_type = xbt_dynar_get_as(split, 1, char *); - item = xbt_fifo_get_last_item(stack); + if(strncmp(node_type, "DW_AT_", 6) != 0) + break; - while(depth <= xbt_fifo_size(stack)){ + if(strcmp(node_type, "DW_AT_sibling") == 0){ - pair = (mc_pair_t) xbt_fifo_get_item_content(item); - state = (mc_state_t) pair->graph_state; + subprogram_end = xbt_strdup(xbt_dynar_get_as(split, 3, char*)); + xbt_str_ltrim(subprogram_end, "<0x"); + xbt_str_rtrim(subprogram_end, ">"); + + }else if(strcmp(node_type, "DW_AT_abstract_origin:") == 0){ /* Frame already in dict */ + + new_frame = 0; + abstract_origin = xbt_strdup(xbt_dynar_get_as(split, 2, char*)); + xbt_str_ltrim(abstract_origin, "<0x"); + xbt_str_rtrim(abstract_origin, ">"); + subprogram_name = (char *)xbt_dict_get_or_null(subprograms_origin, abstract_origin); + frame = xbt_dict_get_or_null(*local_variables, subprogram_name); + xbt_free(abstract_origin); - if(pair->requests > 0){ - - saved_req = MC_state_get_executed_request(state, &value); - //XBT_DEBUG("SavedReq->call %u", saved_req->call); - - if(saved_req != NULL){ - /* because we got a copy of the executed request, we have to fetch the - real one, pointed by the request field of the issuer process */ - req = &saved_req->issuer->simcall; - //XBT_DEBUG("Req->call %u", req->call); - - /* Debug information */ - if(XBT_LOG_ISENABLED(mc_global, xbt_log_priority_debug)){ - req_str = MC_request_to_string(req, value); - XBT_DEBUG("Replay (depth = %d) : %s (%p)", depth, req_str, state); - xbt_free(req_str); - } - - } - - SIMIX_simcall_pre(req, value); - MC_wait_for_requests(); - } + }else if(strcmp(node_type, "DW_AT_name") == 0){ - depth++; - - /* Update statistics */ - mc_stats->visited_pairs++; - mc_stats->executed_transitions++; + new_frame = 1; + xbt_free(current_frame); + frame = xbt_new0(s_dw_frame_t, 1); + frame->name = strdup(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *)); + frame->variables = xbt_dynar_new(sizeof(dw_variable_t), dw_variable_free_voidp); + frame->frame_base = xbt_new0(s_dw_location_t, 1); + current_frame = strdup(frame->name); - item = xbt_fifo_get_prev_item(item); - } + xbt_dict_set(subprograms_origin, subprogram_start, xbt_strdup(frame->name), NULL); + + }else if(strcmp(node_type, "DW_AT_frame_base") == 0){ - }else{ + location_type = xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *); - /* Traverse the stack from the initial state and re-execute the transitions */ - for (item = xbt_fifo_get_last_item(stack); - item != xbt_fifo_get_first_item(stack); - item = xbt_fifo_get_prev_item(item)) { + if(strcmp(location_type, "list)") == 0){ /* Search location in location list */ - pair = (mc_pair_t) xbt_fifo_get_item_content(item); - state = (mc_state_t) pair->graph_state; + frame->frame_base = MC_dwarf_get_location(location_list, xbt_dynar_get_as(split, 3, char *)); + + }else{ + + xbt_str_strip_spaces(line); + split2 = xbt_str_split(line, "("); + xbt_dynar_remove_at(split2, 0, NULL); + loc_expr = xbt_str_join(split2, " "); + xbt_str_rtrim(loc_expr, ")"); + frame->frame_base = MC_dwarf_get_location(NULL, loc_expr); + xbt_dynar_free(&split2); + xbt_free(loc_expr); - if(pair->requests > 0){ - - saved_req = MC_state_get_executed_request(state, &value); - //XBT_DEBUG("SavedReq->call %u", saved_req->call); - - if(saved_req != NULL){ - /* because we got a copy of the executed request, we have to fetch the - real one, pointed by the request field of the issuer process */ - req = &saved_req->issuer->simcall; - //XBT_DEBUG("Req->call %u", req->call); - - /* Debug information */ - if(XBT_LOG_ISENABLED(mc_global, xbt_log_priority_debug)){ - req_str = MC_request_to_string(req, value); - XBT_DEBUG("Replay (depth = %d) : %s (%p)", depth, req_str, state); - xbt_free(req_str); } - - } - SIMIX_simcall_pre(req, value); - MC_wait_for_requests(); - } + }else if(strcmp(node_type, "DW_AT_low_pc") == 0){ + + if(frame != NULL) + frame->low_pc = (void *)strtoul(xbt_dynar_get_as(split, 3, char *), NULL, 16); - depth++; - - /* Update statistics */ - mc_stats->visited_pairs++; - mc_stats->executed_transitions++; - } - } + }else if(strcmp(node_type, "DW_AT_high_pc") == 0){ - XBT_DEBUG("**** End Replay ****"); + if(frame != NULL) + frame->high_pc = (void *)strtoul(xbt_dynar_get_as(split, 3, char *), NULL, 16); - if(initial_state_liveness->raw_mem_set) - MC_SET_RAW_MEM; - else - MC_UNSET_RAW_MEM; - -} + }else if(strcmp(node_type, "DW_AT_MIPS_linkage_name:") == 0){ -/** - * \brief Dumps the contents of a model-checker's stack and shows the actual - * execution trace - * \param stack The stack to dump - */ -void MC_dump_stack_safety(xbt_fifo_t stack) -{ - - int raw_mem_set = (mmalloc_get_current_heap() == raw_heap); + xbt_free(frame->name); + xbt_free(current_frame); + frame->name = strdup(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *)); + current_frame = strdup(frame->name); + xbt_dict_set(subprograms_origin, subprogram_start, xbt_strdup(frame->name), NULL); - MC_show_stack_safety(stack); + } - if(!_sg_mc_checkpoint){ + read = xbt_getline(&line, &n, fp); - mc_state_t state; + } + + if(new_frame == 1){ + frame->start = strtoul(subprogram_start, NULL, 16); + if(subprogram_end != NULL) + frame->end = strtoul(subprogram_end, NULL, 16); + xbt_dict_set(*local_variables, frame->name, frame, NULL); + } - MC_SET_RAW_MEM; - while ((state = (mc_state_t) xbt_fifo_pop(stack)) != NULL) - MC_state_delete(state); - MC_UNSET_RAW_MEM; + xbt_free(subprogram_start); + xbt_free(subprogram_end); + subprogram_end = NULL; + - } + }else if(strcmp(node_type, "(DW_TAG_variable)") == 0){ /* New variable */ - if(raw_mem_set) - MC_SET_RAW_MEM; - else - MC_UNSET_RAW_MEM; - -} + dw_variable_t var = NULL; + + parent_value = strdup(xbt_dynar_get_as(split, 0, char *)); + parent_value = strtok(parent_value,"<"); + xbt_str_rtrim(parent_value, ">"); + parent = atoi(parent_value); + xbt_free(parent_value); + + if(parent == 1) + global_variable = 1; + + strtok(xbt_dynar_get_as(split, 0, char *), "<"); + origin = xbt_strdup(strtok(NULL, "<")); + xbt_str_rtrim(origin, ">:"); + + read = xbt_getline(&line, &n, fp); + + while(read != -1){ + /* Wipeout the new line character */ + line[read - 1] = '\0'; -void MC_show_stack_safety(xbt_fifo_t stack) -{ + if(n == 0 || strlen(line) == 0){ + read = xbt_getline(&line, &n, fp); + continue; + } + + xbt_dynar_free(&split); + xbt_str_rtrim(line, NULL); + xbt_str_strip_spaces(line); + split = xbt_str_split(line, " "); + + node_type = xbt_dynar_get_as(split, 1, char *); - int raw_mem_set = (mmalloc_get_current_heap() == raw_heap); + if(strncmp(node_type, "DW_AT_", 6) != 0) + break; - MC_SET_RAW_MEM; + if(strcmp(node_type, "DW_AT_name") == 0){ - int value; - mc_state_t state; - xbt_fifo_item_t item; - smx_simcall_t req; - char *req_str = NULL; - - for (item = xbt_fifo_get_last_item(stack); - (item ? (state = (mc_state_t) (xbt_fifo_get_item_content(item))) - : (NULL)); item = xbt_fifo_get_prev_item(item)) { - req = MC_state_get_executed_request(state, &value); - if(req){ - req_str = MC_request_to_string(req, value); - XBT_INFO("%s", req_str); - xbt_free(req_str); - } - } + var = xbt_new0(s_dw_variable_t, 1); + var->name = xbt_strdup(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *)); + xbt_dict_set(variables_origin, origin, xbt_strdup(var->name), NULL); + + }else if(strcmp(node_type, "DW_AT_abstract_origin:") == 0){ - if(!raw_mem_set) - MC_UNSET_RAW_MEM; -} + new_variable = 0; -void MC_show_deadlock(smx_simcall_t req) -{ - /*char *req_str = NULL;*/ - XBT_INFO("**************************"); - XBT_INFO("*** DEAD-LOCK DETECTED ***"); - XBT_INFO("**************************"); - XBT_INFO("Locked request:"); - /*req_str = MC_request_to_string(req); - XBT_INFO("%s", req_str); - xbt_free(req_str);*/ - XBT_INFO("Counter-example execution trace:"); - MC_dump_stack_safety(mc_stack_safety); - MC_print_statistics(mc_stats); -} + abstract_origin = xbt_dynar_get_as(split, 2, char *); + xbt_str_ltrim(abstract_origin, "<0x"); + xbt_str_rtrim(abstract_origin, ">"); + + variable_name = (char *)xbt_dict_get_or_null(variables_origin, abstract_origin); + variable_frame = MC_dwarf_get_frame_by_offset(*local_variables, strtoul(abstract_origin, NULL, 16)); + var = MC_dwarf_get_variable_by_name(variable_frame, variable_name); + }else if(strcmp(node_type, "DW_AT_location") == 0){ -void MC_show_stack_liveness(xbt_fifo_t stack){ - int value; - mc_pair_t pair; - xbt_fifo_item_t item; - smx_simcall_t req; - char *req_str = NULL; - - for (item = xbt_fifo_get_last_item(stack); - (item ? (pair = (mc_pair_t) (xbt_fifo_get_item_content(item))) - : (NULL)); item = xbt_fifo_get_prev_item(item)) { - req = MC_state_get_executed_request(pair->graph_state, &value); - if(req){ - if(pair->requests>0){ - req_str = MC_request_to_string(req, value); - XBT_INFO("%s", req_str); - xbt_free(req_str); - }else{ - XBT_INFO("End of system requests but evolution in Büchi automaton"); + if(var != NULL){ + + if(!global_variable){ + + location_type = xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *); + + if(strcmp(location_type, "list)") == 0){ /* Search location in location list */ + var->address.location = MC_dwarf_get_location(location_list, xbt_dynar_get_as(split, 3, char *)); + }else{ + xbt_str_strip_spaces(line); + split2 = xbt_str_split(line, "("); + xbt_dynar_remove_at(split2, 0, NULL); + loc_expr = xbt_str_join(split2, " "); + xbt_str_rtrim(loc_expr, ")"); + if(strncmp("DW_OP_addr", loc_expr, 10) == 0){ + global_variable = 1; + xbt_dynar_free(&split2); + split2 = xbt_str_split(loc_expr, " "); + if(strcmp(elf_file, xbt_binary_name) != 0) + var->address.address = (char *)start_text_libsimgrid + (long)((void *)strtoul(xbt_dynar_get_as(split2, xbt_dynar_length(split2) - 1, char*), NULL, 16)); + else + var->address.address = (void *)strtoul(xbt_dynar_get_as(split2, xbt_dynar_length(split2) - 1, char*), NULL, 16); + }else{ + var->address.location = MC_dwarf_get_location(NULL, loc_expr); + } + xbt_dynar_free(&split2); + xbt_free(loc_expr); + } + }else{ + global_address = xbt_strdup(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *)); + xbt_str_rtrim(global_address, ")"); + if(strcmp(elf_file, xbt_binary_name) != 0) + var->address.address = (char *)start_text_libsimgrid + (long)((void *)strtoul(global_address, NULL, 16)); + else + var->address.address = (void *)strtoul(global_address, NULL, 16); + xbt_free(global_address); + global_address = NULL; + } + + } + + }else if(strcmp(node_type, "DW_AT_type") == 0){ + + type_origin = xbt_strdup(xbt_dynar_get_as(split, 3, char *)); + xbt_str_ltrim(type_origin, "<0x"); + xbt_str_rtrim(type_origin, ">"); + + }else if(strcmp(node_type, "DW_AT_declaration") == 0){ + + new_variable = 0; + if(new_variable){ + dw_variable_free(var); + var = NULL; + } + + }else if(strcmp(node_type, "DW_AT_artificial") == 0){ + + new_variable = 0; + if(new_variable){ + dw_variable_free(var); + var = NULL; + } + + } + + read = xbt_getline(&line, &n, fp); + } - } - } -} -void MC_dump_stack_liveness(xbt_fifo_t stack){ + if(new_variable == 1){ + + if(!global_variable){ + variable_frame = xbt_dict_get_or_null(*local_variables, current_frame); + var->type_origin = strdup(type_origin); + var->global = 0; + index = MC_dwarf_get_variable_index(variable_frame->variables, var->name, NULL); + if(index != -1) + xbt_dynar_insert_at(variable_frame->variables, index, &var); + }else{ + var->type_origin = strdup(type_origin); + var->global = 1; + index = MC_dwarf_get_variable_index(*global_variables, var->name, var->address.address); + if(index != -1) + xbt_dynar_insert_at(*global_variables, index, &var); + } - int raw_mem_set = (mmalloc_get_current_heap() == raw_heap); + xbt_free(type_origin); + type_origin = NULL; + } - mc_pair_t pair; + global_variable = 0; + new_variable = 1; - MC_SET_RAW_MEM; - while ((pair = (mc_pair_t) xbt_fifo_pop(stack)) != NULL) - MC_pair_delete(pair); - MC_UNSET_RAW_MEM; + }else if(strcmp(node_type, "(DW_TAG_inlined_subroutine)") == 0){ - if(raw_mem_set) - MC_SET_RAW_MEM; + read = xbt_getline(&line, &n, fp); -} + while(read != -1){ + /* Wipeout the new line character */ + line[read - 1] = '\0'; -void MC_print_statistics(mc_stats_t stats) -{ - if(stats->expanded_pairs == 0){ - XBT_INFO("Expanded states = %lu", stats->expanded_states); - XBT_INFO("Visited states = %lu", stats->visited_states); - }else{ - XBT_INFO("Expanded pairs = %lu", stats->expanded_pairs); - XBT_INFO("Visited pairs = %lu", stats->visited_pairs); - } - XBT_INFO("Executed transitions = %lu", stats->executed_transitions); - MC_SET_RAW_MEM; - if((_sg_mc_dot_output_file != NULL) && (_sg_mc_dot_output_file[0]!='\0')){ - fprintf(dot_output, "}\n"); - fclose(dot_output); - } - MC_UNSET_RAW_MEM; -} + if(n == 0 || strlen(line) == 0){ + read = xbt_getline(&line, &n, fp); + continue; + } -void MC_assert(int prop) -{ - if (MC_is_active() && !prop){ - XBT_INFO("**************************"); - XBT_INFO("*** PROPERTY NOT VALID ***"); - XBT_INFO("**************************"); - XBT_INFO("Counter-example execution trace:"); - MC_dump_stack_safety(mc_stack_safety); - MC_print_statistics(mc_stats); - xbt_abort(); - } -} + xbt_dynar_free(&split); + xbt_str_rtrim(line, NULL); + xbt_str_strip_spaces(line); + split = xbt_str_split(line, " "); + + if(strncmp(xbt_dynar_get_as(split, 1, char *), "DW_AT_", 6) != 0) + break; + + node_type = xbt_dynar_get_as(split, 1, char *); -static void MC_assert_pair(int prop){ - if (MC_is_active() && !prop) { - XBT_INFO("**************************"); - XBT_INFO("*** PROPERTY NOT VALID ***"); - XBT_INFO("**************************"); - //XBT_INFO("Counter-example execution trace:"); - MC_show_stack_liveness(mc_stack_liveness); - //MC_dump_snapshot_stack(mc_snapshot_stack); - MC_print_statistics(mc_stats); - xbt_abort(); - } -} + if(strcmp(node_type, "DW_AT_abstract_origin:") == 0){ -void MC_process_clock_add(smx_process_t process, double amount) -{ - mc_time[process->pid] += amount; -} + origin = xbt_dynar_get_as(split, 2, char *); + xbt_str_ltrim(origin, "<0x"); + xbt_str_rtrim(origin, ">"); + + subprogram_name = (char *)xbt_dict_get_or_null(subprograms_origin, origin); + subroutine_frame = xbt_dict_get_or_null(*local_variables, subprogram_name); + + }else if(strcmp(node_type, "DW_AT_low_pc") == 0){ -double MC_process_clock_get(smx_process_t process) -{ - if(mc_time){ - if(process != NULL) - return mc_time[process->pid]; - else - return -1; - }else{ - return 0; - } -} + subroutine_frame->low_pc = (void *)strtoul(xbt_dynar_get_as(split, 3, char *), NULL, 16); -void MC_automaton_load(const char *file){ + }else if(strcmp(node_type, "DW_AT_high_pc") == 0){ - int raw_mem_set = (mmalloc_get_current_heap() == raw_heap); + subroutine_frame->high_pc = (void *)strtoul(xbt_dynar_get_as(split, 3, char *), NULL, 16); + } - MC_SET_RAW_MEM; + read = xbt_getline(&line, &n, fp); + + } - if (_mc_property_automaton == NULL) - _mc_property_automaton = xbt_automaton_new(); - - xbt_automaton_load(_mc_property_automaton,file); + }else if(strcmp(node_type, "(DW_TAG_base_type)") == 0 + || strcmp(node_type, "(DW_TAG_enumeration_type)") == 0 + || strcmp(node_type, "(DW_TAG_enumerator)") == 0 + || strcmp(node_type, "(DW_TAG_typedef)") == 0 + || strcmp(node_type, "(DW_TAG_const_type)") == 0 + || strcmp(node_type, "(DW_TAG_subroutine_type)") == 0 + || strcmp(node_type, "(DW_TAG_volatile_type)") == 0 + || (is_pointer = !strcmp(node_type, "(DW_TAG_pointer_type)"))){ + + if(strcmp(node_type, "(DW_TAG_base_type)") == 0) + type_type = e_dw_base_type; + else if(strcmp(node_type, "(DW_TAG_enumeration_type)") == 0) + type_type = e_dw_enumeration_type; + else if(strcmp(node_type, "(DW_TAG_enumerator)") == 0) + type_type = e_dw_enumerator; + else if(strcmp(node_type, "(DW_TAG_typedef)") == 0) + type_type = e_dw_typedef; + else if(strcmp(node_type, "(DW_TAG_const_type)") == 0) + type_type = e_dw_const_type; + else if(strcmp(node_type, "(DW_TAG_pointer_type)") == 0) + type_type = e_dw_pointer_type; + else if(strcmp(node_type, "(DW_TAG_subroutine_type)") == 0) + type_type = e_dw_subroutine_type; + else if(strcmp(node_type, "(DW_TAG_volatile_type)") == 0) + type_type = e_dw_volatile_type; - MC_UNSET_RAW_MEM; + strtok(xbt_dynar_get_as(split, 0, char *), "<"); + origin = strdup(strtok(NULL, "<")); + xbt_str_rtrim(origin, ">:"); + + read = xbt_getline(&line, &n, fp); + + while(read != -1){ + + /* Wipeout the new line character */ + line[read - 1] = '\0'; - if(raw_mem_set) - MC_SET_RAW_MEM; + if(n == 0 || strlen(line) == 0){ + read = xbt_getline(&line, &n, fp); + continue; + } -} + xbt_dynar_free(&split); + xbt_str_rtrim(line, NULL); + xbt_str_strip_spaces(line); + split = xbt_str_split(line, " "); + + if(strncmp(xbt_dynar_get_as(split, 1, char *), "DW_AT_", 6) != 0) + break; -void MC_automaton_new_propositional_symbol(const char* id, void* fct) { + node_type = xbt_dynar_get_as(split, 1, char *); - int raw_mem_set = (mmalloc_get_current_heap() == raw_heap); + if(strcmp(node_type, "DW_AT_byte_size") == 0){ + size = strtol(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char*), NULL, 10); + if(type_type == e_dw_enumeration_type) + enumeration_size = size; + }else if(strcmp(node_type, "DW_AT_name") == 0){ + end = xbt_str_join(split, " "); + xbt_dynar_free(&split); + split = xbt_str_split(end, "):"); + xbt_str_ltrim(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char*), NULL); + name = xbt_strdup(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char*)); + }else if(strcmp(node_type, "DW_AT_type") == 0){ + type_origin = xbt_strdup(xbt_dynar_get_as(split, 3, char *)); + xbt_str_ltrim(type_origin, "<0x"); + xbt_str_rtrim(type_origin, ">"); + } + + read = xbt_getline(&line, &n, fp); + } - MC_SET_RAW_MEM; + dw_type_t type = xbt_new0(s_dw_type_t, 1); + type->type = type_type; + if(name) + type->name = xbt_strdup(name); + else + type->name = xbt_strdup("undefined"); + type->is_pointer_type = is_pointer; + type->id = (void *)strtoul(origin, NULL, 16); + if(type_origin) + type->dw_type_id = xbt_strdup(type_origin); + if(type_type == e_dw_enumerator) + type->size = enumeration_size; + else + type->size = size; + type->members = NULL; - if (_mc_property_automaton == NULL) - _mc_property_automaton = xbt_automaton_new(); + xbt_dict_set(*types, origin, type, NULL); - xbt_automaton_propositional_symbol_new(_mc_property_automaton,id,fct); + xbt_free(name); + name = NULL; + xbt_free(type_origin); + type_origin = NULL; + xbt_free(end); + end = NULL; - MC_UNSET_RAW_MEM; + is_pointer = 0; + size = 0; + xbt_free(origin); - if(raw_mem_set) - MC_SET_RAW_MEM; - -} + }else if(strcmp(node_type, "(DW_TAG_structure_type)") == 0 || strcmp(node_type, "(DW_TAG_union_type)") == 0){ + + if(strcmp(node_type, "(DW_TAG_structure_type)") == 0) + struct_decl = 1; + else + union_decl = 1; -/************ MC_ignore ***********/ + strtok(xbt_dynar_get_as(split, 0, char *), "<"); + origin = strdup(strtok(NULL, "<")); + xbt_str_rtrim(origin, ">:"); + + read = xbt_getline(&line, &n, fp); -void heap_ignore_region_free(mc_heap_ignore_region_t r){ - xbt_free(r); -} + dw_type_t type = NULL; -void heap_ignore_region_free_voidp(void *r){ - heap_ignore_region_free((mc_heap_ignore_region_t) * (void **) r); -} + while(read != -1){ + + while(read != -1){ + + /* Wipeout the new line character */ + line[read - 1] = '\0'; -void MC_ignore_heap(void *address, size_t size){ + if(n == 0 || strlen(line) == 0){ + read = xbt_getline(&line, &n, fp); + continue; + } - int raw_mem_set = (mmalloc_get_current_heap() == raw_heap); + xbt_dynar_free(&split); + xbt_str_rtrim(line, NULL); + xbt_str_strip_spaces(line); + split = xbt_str_split(line, " "); + + node_type = xbt_dynar_get_as(split, 1, char *); - MC_SET_RAW_MEM; + if(strncmp(node_type, "DW_AT_", 6) != 0){ + member_end = 1; + break; + } - mc_heap_ignore_region_t region = NULL; - region = xbt_new0(s_mc_heap_ignore_region_t, 1); - region->address = address; - region->size = size; - - region->block = ((char*)address - (char*)((xbt_mheap_t)std_heap)->heapbase) / BLOCKSIZE + 1; - - if(((xbt_mheap_t)std_heap)->heapinfo[region->block].type == 0){ - region->fragment = -1; - ((xbt_mheap_t)std_heap)->heapinfo[region->block].busy_block.ignore++; - }else{ - region->fragment = ((uintptr_t) (ADDR2UINT (address) % (BLOCKSIZE))) >> ((xbt_mheap_t)std_heap)->heapinfo[region->block].type; - ((xbt_mheap_t)std_heap)->heapinfo[region->block].busy_frag.ignore[region->fragment]++; - } - - if(mc_heap_comparison_ignore == NULL){ - mc_heap_comparison_ignore = xbt_dynar_new(sizeof(mc_heap_ignore_region_t), heap_ignore_region_free_voidp); - xbt_dynar_push(mc_heap_comparison_ignore, ®ion); - if(!raw_mem_set) - MC_UNSET_RAW_MEM; - return; - } + if(strcmp(node_type, "DW_AT_byte_size") == 0){ + size = strtol(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char*), NULL, 10); + }else if(strcmp(node_type, "DW_AT_name") == 0){ + xbt_free(end); + end = xbt_str_join(split, " "); + xbt_dynar_free(&split); + split = xbt_str_split(end, "):"); + xbt_str_ltrim(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char*), NULL); + name = xbt_strdup(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char*)); + }else if(strcmp(node_type, "DW_AT_type") == 0){ + type_origin = xbt_strdup(xbt_dynar_get_as(split, 3, char *)); + xbt_str_ltrim(type_origin, "<0x"); + xbt_str_rtrim(type_origin, ">"); + }else if(strcmp(node_type, "DW_AT_data_member_location:") == 0){ + xbt_free(end); + end = xbt_str_join(split, " "); + xbt_dynar_free(&split); + split = xbt_str_split(end, "DW_OP_plus_uconst:"); + xbt_str_ltrim(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *), NULL); + xbt_str_rtrim(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *), ")"); + offset = strtol(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char*), NULL, 10); + } - unsigned int cursor = 0; - mc_heap_ignore_region_t current_region = NULL; - int start = 0; - int end = xbt_dynar_length(mc_heap_comparison_ignore) - 1; + read = xbt_getline(&line, &n, fp); + + } + + if(member_end && type){ + member_end = 0; + + dw_type_t member_type = xbt_new0(s_dw_type_t, 1); + member_type->name = xbt_strdup(name); + member_type->size = size; + member_type->is_pointer_type = is_pointer; + member_type->id = (void *)strtoul(origin, NULL, 16); + member_type->offset = offset; + if(type_origin) + member_type->dw_type_id = xbt_strdup(type_origin); + + xbt_dynar_push(type->members, &member_type); + + xbt_free(name); + name = NULL; + xbt_free(end); + end = NULL; + xbt_free(type_origin); + type_origin = NULL; + size = 0; + offset = 0; + + xbt_free(origin); + origin = NULL; + strtok(xbt_dynar_get_as(split, 0, char *), "<"); + origin = strdup(strtok(NULL, "<")); + xbt_str_rtrim(origin, ">:"); + + } + + if(struct_decl || union_decl){ + type = xbt_new0(s_dw_type_t, 1); + if(struct_decl) + type->type = e_dw_structure_type; + else + type->type = e_dw_union_type; + type->name = xbt_strdup(name); + type->size = size; + type->is_pointer_type = is_pointer; + type->id = (void *)strtoul(origin, NULL, 16); + if(type_origin) + type->dw_type_id = xbt_strdup(type_origin); + type->members = xbt_dynar_new(sizeof(dw_type_t), dw_type_free_voidp); + + xbt_dict_set(*types, origin, type, NULL); + + xbt_free(name); + name = NULL; + xbt_free(end); + end = NULL; + xbt_free(type_origin); + type_origin = NULL; + size = 0; + struct_decl = 0; + union_decl = 0; + + } + + if(strcmp(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *), "(DW_TAG_member)") != 0) + break; + + read = xbt_getline(&line, &n, fp); + + } + + xbt_free(origin); + origin = NULL; + + }else if(strcmp(node_type, "(DW_TAG_array_type)") == 0){ + + strtok(xbt_dynar_get_as(split, 0, char *), "<"); + origin = strdup(strtok(NULL, "<")); + xbt_str_rtrim(origin, ">:"); + + read = xbt_getline(&line, &n, fp); + + dw_type_t type = NULL; + + while(read != -1){ + + while(read != -1){ + + /* Wipeout the new line character */ + line[read - 1] = '\0'; + + if(n == 0 || strlen(line) == 0){ + read = xbt_getline(&line, &n, fp); + continue; + } + + xbt_dynar_free(&split); + xbt_str_rtrim(line, NULL); + xbt_str_strip_spaces(line); + split = xbt_str_split(line, " "); + + node_type = xbt_dynar_get_as(split, 1, char *); + + if(strncmp(node_type, "DW_AT_", 6) != 0) + break; + + if(strcmp(node_type, "DW_AT_upper_bound") == 0){ + size = strtol(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char*), NULL, 10); + }else if(strcmp(node_type, "DW_AT_name") == 0){ + end = xbt_str_join(split, " "); + xbt_dynar_free(&split); + split = xbt_str_split(end, "):"); + xbt_str_ltrim(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char*), NULL); + name = xbt_strdup(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char*)); + }else if(strcmp(node_type, "DW_AT_type") == 0){ + type_origin = xbt_strdup(xbt_dynar_get_as(split, 3, char *)); + xbt_str_ltrim(type_origin, "<0x"); + xbt_str_rtrim(type_origin, ">"); + } + + read = xbt_getline(&line, &n, fp); + + } + + if(strcmp(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *), "(DW_TAG_subrange_type)") == 0){ + subrange = 1; + } + + if(subrange && type){ + type->size = size; + + xbt_free(name); + name = NULL; + xbt_free(end); + end = NULL; + xbt_free(type_origin); + type_origin = NULL; + size = 0; + + xbt_free(origin); + origin = NULL; + strtok(xbt_dynar_get_as(split, 0, char *), "<"); + origin = strdup(strtok(NULL, "<")); + xbt_str_rtrim(origin, ">:"); + + }else { + + type = xbt_new0(s_dw_type_t, 1); + type->type = e_dw_array_type; + type->name = xbt_strdup(name); + type->is_pointer_type = is_pointer; + type->id = (void *)strtoul(origin, NULL, 16); + if(type_origin) + type->dw_type_id = xbt_strdup(type_origin); + type->members = NULL; + + xbt_dict_set(*types, origin, type, NULL); + + xbt_free(name); + name = NULL; + xbt_free(end); + end = NULL; + xbt_free(type_origin); + type_origin = NULL; + size = 0; + } + + if(strcmp(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *), "(DW_TAG_subrange_type)") != 0) + break; + + read = xbt_getline(&line, &n, fp); + + } + + xbt_free(origin); + origin = NULL; + + }else{ + + read = xbt_getline(&line, &n, fp); + + } + + } + + xbt_dynar_free(&split); + xbt_dict_free(&variables_origin); + xbt_dict_free(&subprograms_origin); + xbt_free(line); + xbt_free(command); + pclose(fp); + +} + + +/******************************* Ignore mechanism *******************************/ +/*********************************************************************************/ + +xbt_dynar_t mc_checkpoint_ignore; + +typedef struct s_mc_stack_ignore_variable{ + char *var_name; + char *frame; +}s_mc_stack_ignore_variable_t, *mc_stack_ignore_variable_t; + +typedef struct s_mc_data_bss_ignore_variable{ + char *name; +}s_mc_data_bss_ignore_variable_t, *mc_data_bss_ignore_variable_t; + +/**************************** Free functions ******************************/ + +static void stack_ignore_variable_free(mc_stack_ignore_variable_t v){ + xbt_free(v->var_name); + xbt_free(v->frame); + xbt_free(v); +} + +static void stack_ignore_variable_free_voidp(void *v){ + stack_ignore_variable_free((mc_stack_ignore_variable_t) * (void **) v); +} + +void heap_ignore_region_free(mc_heap_ignore_region_t r){ + xbt_free(r); +} + +void heap_ignore_region_free_voidp(void *r){ + heap_ignore_region_free((mc_heap_ignore_region_t) * (void **) r); +} + +static void data_bss_ignore_variable_free(mc_data_bss_ignore_variable_t v){ + xbt_free(v->name); + xbt_free(v); +} + +static void data_bss_ignore_variable_free_voidp(void *v){ + data_bss_ignore_variable_free((mc_data_bss_ignore_variable_t) * (void **) v); +} + +static void checkpoint_ignore_region_free(mc_checkpoint_ignore_region_t r){ + xbt_free(r); +} + +static void checkpoint_ignore_region_free_voidp(void *r){ + checkpoint_ignore_region_free((mc_checkpoint_ignore_region_t) * (void **) r); +} + +/***********************************************************************/ + +void MC_ignore_heap(void *address, size_t size){ + + int raw_mem_set = (mmalloc_get_current_heap() == raw_heap); + + MC_SET_RAW_MEM; + + mc_heap_ignore_region_t region = NULL; + region = xbt_new0(s_mc_heap_ignore_region_t, 1); + region->address = address; + region->size = size; + + region->block = ((char*)address - (char*)((xbt_mheap_t)std_heap)->heapbase) / BLOCKSIZE + 1; + + if(((xbt_mheap_t)std_heap)->heapinfo[region->block].type == 0){ + region->fragment = -1; + ((xbt_mheap_t)std_heap)->heapinfo[region->block].busy_block.ignore++; + }else{ + region->fragment = ((uintptr_t) (ADDR2UINT (address) % (BLOCKSIZE))) >> ((xbt_mheap_t)std_heap)->heapinfo[region->block].type; + ((xbt_mheap_t)std_heap)->heapinfo[region->block].busy_frag.ignore[region->fragment]++; + } + + if(mc_heap_comparison_ignore == NULL){ + mc_heap_comparison_ignore = xbt_dynar_new(sizeof(mc_heap_ignore_region_t), heap_ignore_region_free_voidp); + xbt_dynar_push(mc_heap_comparison_ignore, ®ion); + if(!raw_mem_set) + MC_UNSET_RAW_MEM; + return; + } + + unsigned int cursor = 0; + mc_heap_ignore_region_t current_region = NULL; + int start = 0; + int end = xbt_dynar_length(mc_heap_comparison_ignore) - 1; while(start <= end){ cursor = (start + end) / 2; @@ -890,11 +1313,11 @@ void MC_ignore_heap(void *address, size_t size){ if(!raw_mem_set) MC_UNSET_RAW_MEM; return; - } - if(current_region->address < address) + }else if(current_region->address < address){ start = cursor + 1; - if(current_region->address > address) - end = cursor - 1; + }else{ + end = cursor - 1; + } } if(current_region->address < address) @@ -926,15 +1349,15 @@ void MC_remove_ignore_heap(void *address, size_t size){ if(region->address == address){ ignore_found = 1; break; - } - if(region->address < address) + }else if(region->address < address){ start = cursor + 1; - if(region->address > address){ + }else{ if((char * )region->address <= ((char *)address + size)){ ignore_found = 1; break; - }else + }else{ end = cursor - 1; + } } } @@ -950,88 +1373,74 @@ void MC_remove_ignore_heap(void *address, size_t size){ } -void data_bss_ignore_variable_free(mc_data_bss_ignore_variable_t v){ - xbt_free(v); -} - -void data_bss_ignore_variable_free_voidp(void *v){ - data_bss_ignore_variable_free((mc_data_bss_ignore_variable_t) * (void **) v); -} - -void MC_ignore_data_bss(void *address, size_t size){ +void MC_ignore_global_variable(const char *name){ int raw_mem_set = (mmalloc_get_current_heap() == raw_heap); MC_SET_RAW_MEM; - - if(mc_data_bss_comparison_ignore == NULL) - mc_data_bss_comparison_ignore = xbt_dynar_new(sizeof(mc_data_bss_ignore_variable_t), data_bss_ignore_variable_free_voidp); - - mc_data_bss_ignore_variable_t var = NULL; - var = xbt_new0(s_mc_data_bss_ignore_variable_t, 1); - var->address = address; - var->size = size; - - if(xbt_dynar_is_empty(mc_data_bss_comparison_ignore)){ - xbt_dynar_insert_at(mc_data_bss_comparison_ignore, 0, &var); + if(mc_global_variables_libsimgrid){ - }else{ - unsigned int cursor = 0; + dw_variable_t current_var; int start = 0; - int end = xbt_dynar_length(mc_data_bss_comparison_ignore) - 1; - mc_data_bss_ignore_variable_t current_var = NULL; + int end = xbt_dynar_length(mc_global_variables_libsimgrid) - 1; while(start <= end){ - cursor = (start + end) / 2; - current_var = (mc_data_bss_ignore_variable_t)xbt_dynar_get_as(mc_data_bss_comparison_ignore, cursor, mc_data_bss_ignore_variable_t); - if(current_var->address == address){ - data_bss_ignore_variable_free(var); - MC_UNSET_RAW_MEM; - if(raw_mem_set) - MC_SET_RAW_MEM; - return; - } - if(current_var->address < address) + cursor = (start + end) /2; + current_var = (dw_variable_t)xbt_dynar_get_as(mc_global_variables_libsimgrid, cursor, dw_variable_t); + if(strcmp(current_var->name, name) == 0){ + xbt_dynar_remove_at(mc_global_variables_libsimgrid, cursor, NULL); + start = 0; + end = xbt_dynar_length(mc_global_variables_libsimgrid) - 1; + }else if(strcmp(current_var->name, name) < 0){ start = cursor + 1; - if(current_var->address > address) + }else{ end = cursor - 1; + } } + + }else{ - if(current_var->address < address) - xbt_dynar_insert_at(mc_data_bss_comparison_ignore, cursor + 1, &var); - else - xbt_dynar_insert_at(mc_data_bss_comparison_ignore, cursor, &var); - - } + if(mc_data_bss_comparison_ignore == NULL) + mc_data_bss_comparison_ignore = xbt_dynar_new(sizeof(mc_data_bss_ignore_variable_t), data_bss_ignore_variable_free_voidp); - /* Remove variable from mc_global_variables */ + mc_data_bss_ignore_variable_t var = NULL; + var = xbt_new0(s_mc_data_bss_ignore_variable_t, 1); + var->name = strdup(name); - if(mc_global_variables != NULL){ + if(xbt_dynar_is_empty(mc_data_bss_comparison_ignore)){ - unsigned int cursor = 0; - int start = 0; - int end = xbt_dynar_length(mc_global_variables) - 1; - global_variable_t current_var; - int var_found; + xbt_dynar_insert_at(mc_data_bss_comparison_ignore, 0, &var); - while(start <= end){ - cursor = (start + end) / 2; - current_var = (global_variable_t)xbt_dynar_get_as(mc_global_variables, cursor, global_variable_t); - if(current_var->address == var->address){ - var_found = 1; - break; + }else{ + + unsigned int cursor = 0; + int start = 0; + int end = xbt_dynar_length(mc_data_bss_comparison_ignore) - 1; + mc_data_bss_ignore_variable_t current_var = NULL; + + while(start <= end){ + cursor = (start + end) / 2; + current_var = (mc_data_bss_ignore_variable_t)xbt_dynar_get_as(mc_data_bss_comparison_ignore, cursor, mc_data_bss_ignore_variable_t); + if(strcmp(current_var->name, name) == 0){ + data_bss_ignore_variable_free(var); + if(!raw_mem_set) + MC_UNSET_RAW_MEM; + return; + }else if(strcmp(current_var->name, name) < 0){ + start = cursor + 1; + }else{ + end = cursor - 1; + } } - if(current_var->address < address) - start = cursor + 1; - if(current_var->address > address) - end = cursor - 1; - } - if(var_found) - xbt_dynar_remove_at(mc_global_variables, cursor, NULL); - + if(strcmp(current_var->name, name) < 0) + xbt_dynar_insert_at(mc_data_bss_comparison_ignore, cursor + 1, &var); + else + xbt_dynar_insert_at(mc_data_bss_comparison_ignore, cursor, &var); + + } } MC_UNSET_RAW_MEM; @@ -1040,104 +1449,109 @@ void MC_ignore_data_bss(void *address, size_t size){ MC_SET_RAW_MEM; } -static size_t data_bss_ignore_size(void *address){ - unsigned int cursor = 0; - int start = 0; - int end = xbt_dynar_length(mc_data_bss_comparison_ignore) - 1; - mc_data_bss_ignore_variable_t var; - - while(start <= end){ - cursor = (start + end) / 2; - var = (mc_data_bss_ignore_variable_t)xbt_dynar_get_as(mc_data_bss_comparison_ignore, cursor, mc_data_bss_ignore_variable_t); - if(var->address == address) - return var->size; - if(var->address < address){ - if((void *)((char *)var->address + var->size) > address) - return (char *)var->address + var->size - (char*)address; - else - start = cursor + 1; - } - if(var->address > address) - end = cursor - 1; - } - - return 0; -} - -void stack_ignore_variable_free(mc_stack_ignore_variable_t v){ - xbt_free(v->var_name); - xbt_free(v->frame); - xbt_free(v); -} - -void stack_ignore_variable_free_voidp(void *v){ - stack_ignore_variable_free((mc_stack_ignore_variable_t) * (void **) v); -} - -void MC_ignore_stack(const char *var_name, const char *frame_name){ +void MC_ignore_local_variable(const char *var_name, const char *frame_name){ int raw_mem_set = (mmalloc_get_current_heap() == raw_heap); MC_SET_RAW_MEM; - if(mc_stack_comparison_ignore == NULL) - mc_stack_comparison_ignore = xbt_dynar_new(sizeof(mc_stack_ignore_variable_t), stack_ignore_variable_free_voidp); - - mc_stack_ignore_variable_t var = NULL; - var = xbt_new0(s_mc_stack_ignore_variable_t, 1); - var->var_name = strdup(var_name); - var->frame = strdup(frame_name); - - if(xbt_dynar_is_empty(mc_stack_comparison_ignore)){ - - xbt_dynar_insert_at(mc_stack_comparison_ignore, 0, &var); - - }else{ - + if(mc_local_variables_libsimgrid){ unsigned int cursor = 0; - int start = 0; - int end = xbt_dynar_length(mc_stack_comparison_ignore) - 1; - mc_stack_ignore_variable_t current_var = NULL; - - while(start <= end){ - cursor = (start + end) / 2; - current_var = (mc_stack_ignore_variable_t)xbt_dynar_get_as(mc_stack_comparison_ignore, cursor, mc_stack_ignore_variable_t); - if(strcmp(current_var->frame, frame_name) == 0){ - if(strcmp(current_var->var_name, var_name) == 0){ - stack_ignore_variable_free(var); - MC_UNSET_RAW_MEM; - if(raw_mem_set) - MC_SET_RAW_MEM; - return; + dw_variable_t current_var; + int start, end; + if(strcmp(frame_name, "*") == 0){ /* Remove variable in all frames */ + xbt_dict_cursor_t dict_cursor; + char *current_frame_name; + dw_frame_t frame; + xbt_dict_foreach(mc_local_variables_libsimgrid, dict_cursor, current_frame_name, frame){ + start = 0; + end = xbt_dynar_length(frame->variables) - 1; + while(start <= end){ + cursor = (start + end) / 2; + current_var = (dw_variable_t)xbt_dynar_get_as(frame->variables, cursor, dw_variable_t); + if(strcmp(current_var->name, var_name) == 0){ + xbt_dynar_remove_at(frame->variables, cursor, NULL); + start = 0; + end = xbt_dynar_length(frame->variables) - 1; + }else if(strcmp(current_var->name, var_name) < 0){ + start = cursor + 1; + }else{ + end = cursor - 1; + } } - if(strcmp(current_var->var_name, var_name) < 0) + } + }else{ + xbt_dynar_t variables_list = ((dw_frame_t)xbt_dict_get_or_null(mc_local_variables_libsimgrid, frame_name))->variables; + start = 0; + end = xbt_dynar_length(variables_list) - 1; + while(start <= end){ + cursor = (start + end) / 2; + current_var = (dw_variable_t)xbt_dynar_get_as(variables_list, cursor, dw_variable_t); + if(strcmp(current_var->name, var_name) == 0){ + xbt_dynar_remove_at(variables_list, cursor, NULL); + start = 0; + end = xbt_dynar_length(variables_list) - 1; + }else if(strcmp(current_var->name, var_name) < 0){ start = cursor + 1; - if(strcmp(current_var->var_name, var_name) > 0) + }else{ end = cursor - 1; + } } - if(strcmp(current_var->frame, frame_name) < 0) - start = cursor + 1; - if(strcmp(current_var->frame, frame_name) > 0) - end = cursor - 1; - } - - if(strcmp(current_var->frame, frame_name) < 0) - xbt_dynar_insert_at(mc_stack_comparison_ignore, cursor + 1, &var); - else - xbt_dynar_insert_at(mc_stack_comparison_ignore, cursor, &var); + } + }else{ - } + if(mc_stack_comparison_ignore == NULL) + mc_stack_comparison_ignore = xbt_dynar_new(sizeof(mc_stack_ignore_variable_t), stack_ignore_variable_free_voidp); + + mc_stack_ignore_variable_t var = NULL; + var = xbt_new0(s_mc_stack_ignore_variable_t, 1); + var->var_name = strdup(var_name); + var->frame = strdup(frame_name); + + if(xbt_dynar_is_empty(mc_stack_comparison_ignore)){ - /* Remove variable from mc_local_variables */ + xbt_dynar_insert_at(mc_stack_comparison_ignore, 0, &var); - if(mc_local_variables != NULL){ + }else{ + + unsigned int cursor = 0; + int start = 0; + int end = xbt_dynar_length(mc_stack_comparison_ignore) - 1; + mc_stack_ignore_variable_t current_var = NULL; + + while(start <= end){ + cursor = (start + end) / 2; + current_var = (mc_stack_ignore_variable_t)xbt_dynar_get_as(mc_stack_comparison_ignore, cursor, mc_stack_ignore_variable_t); + if(strcmp(current_var->frame, frame_name) == 0){ + if(strcmp(current_var->var_name, var_name) == 0){ + stack_ignore_variable_free(var); + if(!raw_mem_set) + MC_UNSET_RAW_MEM; + return; + }else if(strcmp(current_var->var_name, var_name) < 0){ + start = cursor + 1; + }else{ + end = cursor - 1; + } + }else if(strcmp(current_var->frame, frame_name) < 0){ + start = cursor + 1; + }else{ + end = cursor - 1; + } + } - if(strcmp(frame_name, "*") != 0){ - dw_frame_t frame = xbt_dict_get_or_null(mc_local_variables, frame_name); - if(frame != NULL) - xbt_dict_remove(frame->variables, var_name); + if(strcmp(current_var->frame, frame_name) == 0){ + if(strcmp(current_var->var_name, var_name) < 0){ + xbt_dynar_insert_at(mc_stack_comparison_ignore, cursor + 1, &var); + }else{ + xbt_dynar_insert_at(mc_stack_comparison_ignore, cursor, &var); + } + }else if(strcmp(current_var->frame, frame_name) < 0){ + xbt_dynar_insert_at(mc_stack_comparison_ignore, cursor + 1, &var); + }else{ + xbt_dynar_insert_at(mc_stack_comparison_ignore, cursor, &var); + } } - } MC_UNSET_RAW_MEM; @@ -1170,857 +1584,812 @@ void MC_new_stack_area(void *stack, char *name, void* context, size_t size){ MC_SET_RAW_MEM; } -/************ DWARF ***********/ +void MC_ignore(void *addr, size_t size){ -xbt_dict_t MC_get_location_list(const char *elf_file){ + int raw_mem_set= (mmalloc_get_current_heap() == raw_heap); - char *command = bprintf("objdump -Wo %s", elf_file); + MC_SET_RAW_MEM; - FILE *fp = popen(command, "r"); + if(mc_checkpoint_ignore == NULL) + mc_checkpoint_ignore = xbt_dynar_new(sizeof(mc_checkpoint_ignore_region_t), checkpoint_ignore_region_free_voidp); - if(fp == NULL){ - perror("popen for objdump failed"); - xbt_abort(); - } + mc_checkpoint_ignore_region_t region = xbt_new0(s_mc_checkpoint_ignore_region_t, 1); + region->addr = addr; + region->size = size; - int debug = 0; /*Detect if the program has been compiled with -g */ - - xbt_dict_t location_list = xbt_dict_new_homogeneous(NULL); - char *line = NULL, *loc_expr = NULL; - ssize_t read; - size_t n = 0; - int cursor_remove; - xbt_dynar_t split = NULL; - - while ((read = xbt_getline(&line, &n, fp)) != -1) { - - /* Wipeout the new line character */ - line[read - 1] = '\0'; - - xbt_str_trim(line, NULL); - - if(n == 0) - continue; - - if(strlen(line) == 0) - continue; - - if(debug == 0){ - - if(strncmp(line, elf_file, strlen(elf_file)) == 0) - continue; - - if(strncmp(line, "Contents", 8) == 0) - continue; + if(xbt_dynar_is_empty(mc_checkpoint_ignore)){ + xbt_dynar_push(mc_checkpoint_ignore, ®ion); + }else{ + + unsigned int cursor = 0; + int start = 0; + int end = xbt_dynar_length(mc_checkpoint_ignore) -1; + mc_checkpoint_ignore_region_t current_region; - if(strncmp(line, "Offset", 6) == 0){ - debug = 1; - continue; + while(start <= end){ + cursor = (start + end) / 2; + current_region = (mc_checkpoint_ignore_region_t)xbt_dynar_get_as(mc_checkpoint_ignore, cursor, mc_checkpoint_ignore_region_t); + if(current_region->addr == addr){ + if(current_region->size == size){ + checkpoint_ignore_region_free(region); + if(!raw_mem_set) + MC_UNSET_RAW_MEM; + return; + }else if(current_region->size < size){ + start = cursor + 1; + }else{ + end = cursor - 1; + } + }else if(current_region->addr < addr){ + start = cursor + 1; + }else{ + end = cursor - 1; } } - if(debug == 0){ - XBT_INFO("Your program must be compiled with -g"); - xbt_abort(); + if(current_region->addr == addr){ + if(current_region->size < size){ + xbt_dynar_insert_at(mc_checkpoint_ignore, cursor + 1, ®ion); + }else{ + xbt_dynar_insert_at(mc_checkpoint_ignore, cursor, ®ion); + } + }else if(current_region->addr < addr){ + xbt_dynar_insert_at(mc_checkpoint_ignore, cursor + 1, ®ion); + }else{ + xbt_dynar_insert_at(mc_checkpoint_ignore, cursor, ®ion); } + } - xbt_dynar_t loclist = xbt_dynar_new(sizeof(dw_location_entry_t), NULL); + if(!raw_mem_set) + MC_UNSET_RAW_MEM; +} - xbt_str_strip_spaces(line); - split = xbt_str_split(line, " "); +/******************************* Initialisation of MC *******************************/ +/*********************************************************************************/ - while(read != -1 && strcmp("lowpc = strtoul((char *)xbt_dynar_get_as(split, 1, char *), NULL, 16); - new_entry->highpc = strtoul((char *)xbt_dynar_get_as(split, 2, char *), NULL, 16); - - cursor_remove =0; - while(cursor_remove < 3){ - xbt_dynar_remove_at(split, 0, NULL); - cursor_remove++; - } +static void MC_dump_ignored_local_variables(void){ - loc_expr = xbt_str_join(split, " "); - xbt_str_ltrim(loc_expr, "("); - xbt_str_rtrim(loc_expr, ")"); - new_entry->location = get_location(NULL, loc_expr); + if(mc_stack_comparison_ignore == NULL || xbt_dynar_is_empty(mc_stack_comparison_ignore)) + return; - xbt_dynar_push(loclist, &new_entry); + unsigned int cursor = 0; + mc_stack_ignore_variable_t current_var; - xbt_dynar_free(&split); - free(loc_expr); + xbt_dynar_foreach(mc_stack_comparison_ignore, cursor, current_var){ + MC_ignore_local_variable(current_var->var_name, current_var->frame); + } - read = xbt_getline(&line, &n, fp); - if(read != -1){ - line[read - 1] = '\0'; - xbt_str_strip_spaces(line); - split = xbt_str_split(line, " "); - } + xbt_dynar_free(&mc_stack_comparison_ignore); + mc_stack_comparison_ignore = NULL; + +} - } +static void MC_dump_ignored_global_variables(void){ + if(mc_data_bss_comparison_ignore == NULL || xbt_dynar_is_empty(mc_data_bss_comparison_ignore)) + return; - char *key = bprintf("%d", (int)strtoul((char *)xbt_dynar_get_as(split, 0, char *), NULL, 16)); - xbt_dict_set(location_list, key, loclist, NULL); - xbt_free(key); - - xbt_dynar_free(&split); + unsigned int cursor = 0; + mc_data_bss_ignore_variable_t current_var; - } + xbt_dynar_foreach(mc_data_bss_comparison_ignore, cursor, current_var){ + MC_ignore_global_variable(current_var->name); + } - xbt_free(line); - xbt_free(command); - pclose(fp); + xbt_dynar_free(&mc_data_bss_comparison_ignore); + mc_data_bss_comparison_ignore = NULL; - return location_list; } -static dw_frame_t get_frame_by_offset(xbt_dict_t all_variables, unsigned long int offset){ - - xbt_dict_cursor_t cursor = NULL; - char *name; - dw_frame_t res; - - xbt_dict_foreach(all_variables, cursor, name, res) { - if(offset >= res->start && offset < res->end){ - xbt_dict_cursor_free(&cursor); - return res; - } - } +void MC_init(){ - xbt_dict_cursor_free(&cursor); - return NULL; + int raw_mem_set = (mmalloc_get_current_heap() == raw_heap); -} + compare = 0; + + /* Initialize the data structures that must be persistent across every + iteration of the model-checker (in RAW memory) */ -void MC_get_local_variables(const char *elf_file, xbt_dict_t location_list, xbt_dict_t *all_variables){ + MC_SET_RAW_MEM; - char *command = bprintf("objdump -Wi %s", elf_file); + MC_init_memory_map_info(); - FILE *fp = popen(command, "r"); + mc_local_variables_libsimgrid = xbt_dict_new_homogeneous(NULL); + mc_local_variables_binary = xbt_dict_new_homogeneous(NULL); + mc_global_variables_libsimgrid = xbt_dynar_new(sizeof(dw_variable_t), dw_variable_free_voidp); + mc_global_variables_binary = xbt_dynar_new(sizeof(dw_variable_t), dw_variable_free_voidp); + mc_variables_type_libsimgrid = xbt_dict_new_homogeneous(NULL); + mc_variables_type_binary = xbt_dict_new_homogeneous(NULL); - if(fp == NULL) - perror("popen for objdump failed"); + XBT_INFO("Get debug information ..."); - char *line = NULL, *origin, *abstract_origin, *current_frame = NULL; - ssize_t read =0; - size_t n = 0; - int valid_variable = 1; - char *node_type = NULL, *location_type = NULL, *variable_name = NULL, *loc_expr = NULL; - xbt_dynar_t split = NULL, split2 = NULL; + /* Get local variables in binary for state equality detection */ + xbt_dict_t binary_location_list = MC_dwarf_get_location_list(xbt_binary_name); + MC_dwarf_get_variables(xbt_binary_name, binary_location_list, &mc_local_variables_binary, &mc_global_variables_binary, &mc_variables_type_binary); - xbt_dict_t variables_origin = xbt_dict_new_homogeneous(NULL); - xbt_dict_t subprograms_origin = xbt_dict_new_homogeneous(NULL); - char *subprogram_name = NULL, *subprogram_start = NULL, *subprogram_end = NULL; - int new_frame = 0, new_variable = 0; - dw_frame_t variable_frame, subroutine_frame = NULL; + /* Get local variables in libsimgrid for state equality detection */ + xbt_dict_t libsimgrid_location_list = MC_dwarf_get_location_list(libsimgrid_path); + MC_dwarf_get_variables(libsimgrid_path, libsimgrid_location_list, &mc_local_variables_libsimgrid, &mc_global_variables_libsimgrid, &mc_variables_type_libsimgrid); - read = xbt_getline(&line, &n, fp); + xbt_dict_free(&libsimgrid_location_list); + xbt_dict_free(&binary_location_list); - while (read != -1) { + XBT_INFO("Get debug information done !"); - if(n == 0){ - read = xbt_getline(&line, &n, fp); - continue; - } - - /* Wipeout the new line character */ - line[read - 1] = '\0'; - - if(strlen(line) == 0){ - read = xbt_getline(&line, &n, fp); - continue; - } + /* Remove variables ignored before getting list of variables */ + MC_dump_ignored_local_variables(); + MC_dump_ignored_global_variables(); + + /* Get .plt section (start and end addresses) for data libsimgrid and data program comparison */ + MC_get_libsimgrid_plt_section(); + MC_get_binary_plt_section(); - xbt_str_ltrim(line, NULL); - xbt_str_strip_spaces(line); - - if(line[0] != '<'){ - read = xbt_getline(&line, &n, fp); - continue; - } - - xbt_dynar_free(&split); - split = xbt_str_split(line, " "); + MC_UNSET_RAW_MEM; - /* Get node type */ - node_type = xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *); + /* Ignore some variables from xbt/ex.h used by exception e for stacks comparison */ + MC_ignore_local_variable("e", "*"); + MC_ignore_local_variable("__ex_cleanup", "*"); + MC_ignore_local_variable("__ex_mctx_en", "*"); + MC_ignore_local_variable("__ex_mctx_me", "*"); + MC_ignore_local_variable("__xbt_ex_ctx_ptr", "*"); + MC_ignore_local_variable("_log_ev", "*"); + MC_ignore_local_variable("_throw_ctx", "*"); + MC_ignore_local_variable("ctx", "*"); + + MC_ignore_local_variable("next_context", "smx_ctx_sysv_suspend_serial"); + MC_ignore_local_variable("i", "smx_ctx_sysv_suspend_serial"); - if(strcmp(node_type, "(DW_TAG_subprogram)") == 0){ /* New frame */ + /* Ignore local variable about time used for tracing */ + MC_ignore_local_variable("start_time", "*"); - dw_frame_t frame = NULL; + MC_ignore_global_variable("mc_comp_times"); + MC_ignore_global_variable("mc_snapshot_comparison_time"); + MC_ignore_global_variable("mc_time"); + MC_ignore_global_variable("smpi_current_rank"); + MC_ignore_global_variable("smx_current_context_serial"); + MC_ignore_global_variable("smx_current_context_key"); + MC_ignore_global_variable("sysv_maestro_context"); + MC_ignore_global_variable("counter"); /* Static variable used for tracing */ - strtok(xbt_dynar_get_as(split, 0, char *), "<"); - subprogram_start = strdup(strtok(NULL, "<")); - xbt_str_rtrim(subprogram_start, ">:"); + if(raw_mem_set) + MC_SET_RAW_MEM; - read = xbt_getline(&line, &n, fp); - - while(read != -1){ +} - if(n == 0){ - read = xbt_getline(&line, &n, fp); - continue; - } +static void MC_init_dot_output(){ /* FIXME : more colors */ - /* Wipeout the new line character */ - line[read - 1] = '\0'; - - if(strlen(line) == 0){ - read = xbt_getline(&line, &n, fp); - continue; - } - - xbt_dynar_free(&split); - xbt_str_rtrim(line, NULL); - xbt_str_strip_spaces(line); - split = xbt_str_split(line, " "); - - node_type = xbt_dynar_get_as(split, 1, char *); + colors[0] = "blue"; + colors[1] = "red"; + colors[2] = "green3"; + colors[3] = "goldenrod"; + colors[4] = "brown"; + colors[5] = "purple"; + colors[6] = "magenta"; + colors[7] = "turquoise4"; + colors[8] = "gray25"; + colors[9] = "forestgreen"; + colors[10] = "hotpink"; + colors[11] = "lightblue"; + colors[12] = "tan"; - if(strncmp(node_type, "DW_AT_", 6) != 0) - break; + dot_output = fopen(_sg_mc_dot_output_file, "w"); + + if(dot_output == NULL){ + perror("Error open dot output file"); + xbt_abort(); + } - if(strcmp(node_type, "DW_AT_sibling") == 0){ + fprintf(dot_output, "digraph graphname{\n fixedsize=true; rankdir=TB; ranksep=.25; edge [fontsize=12]; node [fontsize=10, shape=circle,width=.5 ]; graph [resolution=20, fontsize=10];\n"); - subprogram_end = strdup(xbt_dynar_get_as(split, 3, char*)); - xbt_str_ltrim(subprogram_end, "<0x"); - xbt_str_rtrim(subprogram_end, ">"); - - }else if(strcmp(node_type, "DW_AT_abstract_origin:") == 0){ /* Frame already in dict */ - - new_frame = 0; - abstract_origin = strdup(xbt_dynar_get_as(split, 2, char*)); - xbt_str_ltrim(abstract_origin, "<0x"); - xbt_str_rtrim(abstract_origin, ">"); - subprogram_name = (char *)xbt_dict_get_or_null(subprograms_origin, abstract_origin); - frame = xbt_dict_get_or_null(*all_variables, subprogram_name); - xbt_free(abstract_origin); +} - }else if(strcmp(node_type, "DW_AT_name") == 0){ +/******************************* Core of MC *******************************/ +/**************************************************************************/ - new_frame = 1; - xbt_free(current_frame); - frame = xbt_new0(s_dw_frame_t, 1); - frame->name = strdup(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *)); - frame->variables = xbt_dict_new_homogeneous(NULL); - frame->frame_base = xbt_new0(s_dw_location_t, 1); - current_frame = strdup(frame->name); +void MC_do_the_modelcheck_for_real() { - xbt_dict_set(subprograms_origin, subprogram_start, frame->name, NULL); - - }else if(strcmp(node_type, "DW_AT_frame_base") == 0){ + MC_SET_RAW_MEM; + mc_comp_times = xbt_new0(s_mc_comparison_times_t, 1); + MC_UNSET_RAW_MEM; + + if (!_sg_mc_property_file || _sg_mc_property_file[0]=='\0') { + if (mc_reduce_kind==e_mc_reduce_unset) + mc_reduce_kind=e_mc_reduce_dpor; - location_type = xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *); + XBT_INFO("Check a safety property"); + MC_modelcheck_safety(); - if(strcmp(location_type, "list)") == 0){ /* Search location in location list */ + } else { - frame->frame_base = get_location(location_list, xbt_dynar_get_as(split, 3, char *)); - - }else{ - - xbt_str_strip_spaces(line); - split2 = xbt_str_split(line, "("); - xbt_dynar_remove_at(split2, 0, NULL); - loc_expr = xbt_str_join(split2, " "); - xbt_str_rtrim(loc_expr, ")"); - frame->frame_base = get_location(NULL, loc_expr); - xbt_dynar_free(&split2); - xbt_free(loc_expr); + if (mc_reduce_kind==e_mc_reduce_unset) + mc_reduce_kind=e_mc_reduce_none; - } - - }else if(strcmp(node_type, "DW_AT_low_pc") == 0){ - - if(frame != NULL) - frame->low_pc = (void *)strtoul(xbt_dynar_get_as(split, 3, char *), NULL, 16); - - }else if(strcmp(node_type, "DW_AT_high_pc") == 0){ - - if(frame != NULL) - frame->high_pc = (void *)strtoul(xbt_dynar_get_as(split, 3, char *), NULL, 16); - - }else if(strcmp(node_type, "DW_AT_MIPS_linkage_name:") == 0){ - - xbt_free(frame->name); - xbt_free(current_frame); - frame->name = strdup(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *)); - current_frame = strdup(frame->name); - xbt_dict_set(subprograms_origin, subprogram_start, frame->name, NULL); - - } - - read = xbt_getline(&line, &n, fp); - - } - - if(new_frame == 1){ - frame->start = strtoul(subprogram_start, NULL, 16); - if(subprogram_end != NULL) - frame->end = strtoul(subprogram_end, NULL, 16); - xbt_dict_set(*all_variables, frame->name, frame, NULL); - } - - xbt_free(subprogram_start); - xbt_free(subprogram_end); - subprogram_end = NULL; - + XBT_INFO("Check the liveness property %s",_sg_mc_property_file); + MC_automaton_load(_sg_mc_property_file); + MC_modelcheck_liveness(); + } +} - }else if(strcmp(node_type, "(DW_TAG_variable)") == 0){ /* New variable */ +void MC_modelcheck_safety(void) +{ + int raw_mem_set = (mmalloc_get_current_heap() == raw_heap); - dw_local_variable_t var = NULL; - - strtok(xbt_dynar_get_as(split, 0, char *), "<"); - origin = strdup(strtok(NULL, "<")); - xbt_str_rtrim(origin, ">:"); - - read = xbt_getline(&line, &n, fp); - - while(read != -1){ + /* Check if MC is already initialized */ + if (initial_state_safety) + return; - if(n == 0){ - read = xbt_getline(&line, &n, fp); - continue; - } + mc_time = xbt_new0(double, simix_process_maxpid); - /* Wipeout the new line character */ - line[read - 1] = '\0'; + /* mc_time refers to clock for each process -> ignore it for heap comparison */ + MC_ignore_heap(mc_time, simix_process_maxpid * sizeof(double)); - if(strlen(line) == 0){ - read = xbt_getline(&line, &n, fp); - continue; - } - - xbt_dynar_free(&split); - xbt_str_rtrim(line, NULL); - xbt_str_strip_spaces(line); - split = xbt_str_split(line, " "); + /* Initialize the data structures that must be persistent across every + iteration of the model-checker (in RAW memory) */ - node_type = xbt_dynar_get_as(split, 1, char *); + MC_SET_RAW_MEM; - if(strncmp(node_type, "DW_AT_", 6) != 0) - break; + /* Initialize statistics */ + mc_stats = xbt_new0(s_mc_stats_t, 1); + mc_stats->state_size = 1; - if(strcmp(node_type, "DW_AT_name") == 0){ + /* Create exploration stack */ + mc_stack_safety = xbt_fifo_new(); - new_variable = 1; - var = xbt_new0(s_dw_local_variable_t, 1); - var->name = strdup(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *)); + if((_sg_mc_dot_output_file != NULL) && (_sg_mc_dot_output_file[0]!='\0')) + MC_init_dot_output(); - xbt_dict_set(variables_origin, origin, var->name, NULL); - - }else if(strcmp(node_type, "DW_AT_abstract_origin:") == 0){ + MC_UNSET_RAW_MEM; - new_variable = 0; - abstract_origin = xbt_dynar_get_as(split, 2, char *); - xbt_str_ltrim(abstract_origin, "<0x"); - xbt_str_rtrim(abstract_origin, ">"); - - variable_name = (char *)xbt_dict_get_or_null(variables_origin, abstract_origin); - variable_frame = get_frame_by_offset(*all_variables, strtoul(abstract_origin, NULL, 16)); - var = xbt_dict_get_or_null(variable_frame->variables, variable_name); + if(_sg_mc_visited > 0){ + MC_init(); + }else{ + MC_SET_RAW_MEM; + MC_init_memory_map_info(); + MC_get_libsimgrid_plt_section(); + MC_get_binary_plt_section(); + MC_UNSET_RAW_MEM; + } - }else if(strcmp(node_type, "DW_AT_location") == 0){ + MC_dpor_init(); - if(valid_variable == 1 && var != NULL){ + MC_SET_RAW_MEM; + /* Save the initial state */ + initial_state_safety = xbt_new0(s_mc_global_t, 1); + initial_state_safety->snapshot = MC_take_snapshot(); + MC_UNSET_RAW_MEM; - var->location = xbt_new0(s_dw_location_t, 1); + MC_dpor(); - location_type = xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *); + if(raw_mem_set) + MC_SET_RAW_MEM; - if(strcmp(location_type, "list)") == 0){ /* Search location in location list */ + xbt_abort(); + //MC_exit(); +} - var->location = get_location(location_list, xbt_dynar_get_as(split, 3, char *)); - - }else{ - - xbt_str_strip_spaces(line); - split2 = xbt_str_split(line, "("); - xbt_dynar_remove_at(split2, 0, NULL); - loc_expr = xbt_str_join(split2, " "); - xbt_str_rtrim(loc_expr, ")"); - var->location = get_location(NULL, loc_expr); - xbt_dynar_free(&split2); - xbt_free(loc_expr); +void MC_modelcheck_liveness(){ - } + int raw_mem_set = (mmalloc_get_current_heap() == raw_heap); - } - - }else if(strcmp(node_type, "DW_AT_external") == 0){ + MC_init(); - valid_variable = 0; - - } + mc_time = xbt_new0(double, simix_process_maxpid); - read = xbt_getline(&line, &n, fp); + /* mc_time refers to clock for each process -> ignore it for heap comparison */ + MC_ignore_heap(mc_time, simix_process_maxpid * sizeof(double)); - } + MC_SET_RAW_MEM; + + /* Initialize statistics */ + mc_stats = xbt_new0(s_mc_stats_t, 1); + mc_stats->state_size = 1; - if(new_variable == 1 && valid_variable == 1){ - - variable_frame = xbt_dict_get_or_null(*all_variables, current_frame); - xbt_dict_set(variable_frame->variables, var->name, var, NULL); - } + /* Create exploration stack */ + mc_stack_liveness = xbt_fifo_new(); - valid_variable = 1; - new_variable = 0; + /* Create the initial state */ + initial_state_liveness = xbt_new0(s_mc_global_t, 1); - }else if(strcmp(node_type, "(DW_TAG_inlined_subroutine)") == 0){ + if((_sg_mc_dot_output_file != NULL) && (_sg_mc_dot_output_file[0]!='\0')) + MC_init_dot_output(); + + MC_UNSET_RAW_MEM; - strtok(xbt_dynar_get_as(split, 0, char *), "<"); - origin = strdup(strtok(NULL, "<")); - xbt_str_rtrim(origin, ">:"); + MC_ddfs_init(); - read = xbt_getline(&line, &n, fp); + /* We're done */ + MC_print_statistics(mc_stats); + xbt_free(mc_time); - while(read != -1){ + if(raw_mem_set) + MC_SET_RAW_MEM; - /* Wipeout the new line character */ - line[read - 1] = '\0'; +} - if(n == 0){ - read = xbt_getline(&line, &n, fp); - continue; - } - if(strlen(line) == 0){ - read = xbt_getline(&line, &n, fp); - continue; - } +void MC_exit(void) +{ + xbt_free(mc_time); + MC_memory_exit(); + //xbt_abort(); +} - xbt_dynar_free(&split); - xbt_str_rtrim(line, NULL); - xbt_str_strip_spaces(line); - split = xbt_str_split(line, " "); - - if(strncmp(xbt_dynar_get_as(split, 1, char *), "DW_AT_", 6) != 0) - break; - - node_type = xbt_dynar_get_as(split, 1, char *); +int SIMIX_pre_mc_random(smx_simcall_t simcall, int min, int max){ - if(strcmp(node_type, "DW_AT_abstract_origin:") == 0){ + return simcall->mc_value; +} - origin = xbt_dynar_get_as(split, 2, char *); - xbt_str_ltrim(origin, "<0x"); - xbt_str_rtrim(origin, ">"); - - subprogram_name = (char *)xbt_dict_get_or_null(subprograms_origin, origin); - subroutine_frame = xbt_dict_get_or_null(*all_variables, subprogram_name); - - }else if(strcmp(node_type, "DW_AT_low_pc") == 0){ - subroutine_frame->low_pc = (void *)strtoul(xbt_dynar_get_as(split, 3, char *), NULL, 16); +int MC_random(int min, int max) +{ + /*FIXME: return mc_current_state->executed_transition->random.value;*/ + return simcall_mc_random(min, max); +} - }else if(strcmp(node_type, "DW_AT_high_pc") == 0){ +/** + * \brief Schedules all the process that are ready to run + */ +void MC_wait_for_requests(void) +{ + smx_process_t process; + smx_simcall_t req; + unsigned int iter; - subroutine_frame->high_pc = (void *)strtoul(xbt_dynar_get_as(split, 3, char *), NULL, 16); - } + while (!xbt_dynar_is_empty(simix_global->process_to_run)) { + SIMIX_process_runall(); + xbt_dynar_foreach(simix_global->process_that_ran, iter, process) { + req = &process->simcall; + if (req->call != SIMCALL_NONE && !MC_request_is_visible(req)) + SIMIX_simcall_pre(req, 0); + } + } +} - read = xbt_getline(&line, &n, fp); - +int MC_deadlock_check() +{ + int deadlock = FALSE; + smx_process_t process; + if(xbt_swag_size(simix_global->process_list)){ + deadlock = TRUE; + xbt_swag_foreach(process, simix_global->process_list){ + if(process->simcall.call != SIMCALL_NONE + && MC_request_is_enabled(&process->simcall)){ + deadlock = FALSE; + break; } - - }else{ - - read = xbt_getline(&line, &n, fp); - } - } - - xbt_dynar_free(&split); - xbt_free(line); - xbt_free(command); - pclose(fp); - + return deadlock; } -static dw_location_t get_location(xbt_dict_t location_list, char *expr){ +/** + * \brief Re-executes from the state at position start all the transitions indicated by + * a given model-checker stack. + * \param stack The stack with the transitions to execute. + * \param start Start index to begin the re-execution. + */ +void MC_replay(xbt_fifo_t stack, int start) +{ + int raw_mem = (mmalloc_get_current_heap() == raw_heap); - dw_location_t loc = xbt_new0(s_dw_location_t, 1); + int value, i = 1, count = 1; + char *req_str; + smx_simcall_t req = NULL, saved_req = NULL; + xbt_fifo_item_t item, start_item; + mc_state_t state; + smx_process_t process = NULL; - if(location_list != NULL){ - - char *key = bprintf("%d", (int)strtoul(expr, NULL, 16)); - loc->type = e_dw_loclist; - loc->location.loclist = (xbt_dynar_t)xbt_dict_get_or_null(location_list, key); - if(loc->location.loclist == NULL) - XBT_INFO("Key not found in loclist"); + XBT_DEBUG("**** Begin Replay ****"); + + if(start == -1){ + /* Restore the initial state */ + MC_restore_snapshot(initial_state_safety->snapshot); + /* At the moment of taking the snapshot the raw heap was set, so restoring + * it will set it back again, we have to unset it to continue */ + MC_UNSET_RAW_MEM; + } + + start_item = xbt_fifo_get_last_item(stack); + if(start != -1){ + while (i != start){ + start_item = xbt_fifo_get_prev_item(start_item); + i++; + } + } + + MC_SET_RAW_MEM; + xbt_dict_reset(first_enabled_state); + xbt_swag_foreach(process, simix_global->process_list){ + if(MC_process_is_enabled(process)){ + char *key = bprintf("%lu", process->pid); + char *data = bprintf("%d", count); + xbt_dict_set(first_enabled_state, key, data, NULL); + xbt_free(key); + } + } + MC_UNSET_RAW_MEM; + + + /* Traverse the stack from the state at position start and re-execute the transitions */ + for (item = start_item; + item != xbt_fifo_get_first_item(stack); + item = xbt_fifo_get_prev_item(item)) { + + state = (mc_state_t) xbt_fifo_get_item_content(item); + saved_req = MC_state_get_executed_request(state, &value); + + MC_SET_RAW_MEM; + char *key = bprintf("%lu", saved_req->issuer->pid); + xbt_dict_remove(first_enabled_state, key); xbt_free(key); - return loc; + MC_UNSET_RAW_MEM; + + if(saved_req){ + /* because we got a copy of the executed request, we have to fetch the + real one, pointed by the request field of the issuer process */ + req = &saved_req->issuer->simcall; - }else{ + /* Debug information */ + if(XBT_LOG_ISENABLED(mc_global, xbt_log_priority_debug)){ + req_str = MC_request_to_string(req, value); + XBT_DEBUG("Replay: %s (%p)", req_str, state); + xbt_free(req_str); + } + } + + SIMIX_simcall_pre(req, value); + MC_wait_for_requests(); - int cursor = 0; - char *tok = NULL, *tok2 = NULL; + count++; + + MC_SET_RAW_MEM; + /* Insert in dict all enabled processes */ + xbt_swag_foreach(process, simix_global->process_list){ + if(MC_process_is_enabled(process) /*&& !MC_state_process_is_done(state, process)*/){ + char *key = bprintf("%lu", process->pid); + if(xbt_dict_get_or_null(first_enabled_state, key) == NULL){ + char *data = bprintf("%d", count); + xbt_dict_set(first_enabled_state, key, data, NULL); + } + xbt_free(key); + } + } + MC_UNSET_RAW_MEM; + + /* Update statistics */ + mc_stats->visited_states++; + mc_stats->executed_transitions++; + + } + + XBT_DEBUG("**** End Replay ****"); + + if(raw_mem) + MC_SET_RAW_MEM; + else + MC_UNSET_RAW_MEM; + + +} + +void MC_replay_liveness(xbt_fifo_t stack, int all_stack) +{ + + initial_state_liveness->raw_mem_set = (mmalloc_get_current_heap() == raw_heap); + + int value; + char *req_str; + smx_simcall_t req = NULL, saved_req = NULL; + xbt_fifo_item_t item; + mc_state_t state; + mc_pair_t pair; + int depth = 1; + + XBT_DEBUG("**** Begin Replay ****"); + + /* Restore the initial state */ + MC_restore_snapshot(initial_state_liveness->snapshot); + + /* At the moment of taking the snapshot the raw heap was set, so restoring + * it will set it back again, we have to unset it to continue */ + if(!initial_state_liveness->raw_mem_set) + MC_UNSET_RAW_MEM; + + if(all_stack){ + + item = xbt_fifo_get_last_item(stack); + + while(depth <= xbt_fifo_size(stack)){ + + pair = (mc_pair_t) xbt_fifo_get_item_content(item); + state = (mc_state_t) pair->graph_state; + + if(pair->requests > 0){ + + saved_req = MC_state_get_executed_request(state, &value); + //XBT_DEBUG("SavedReq->call %u", saved_req->call); + + if(saved_req != NULL){ + /* because we got a copy of the executed request, we have to fetch the + real one, pointed by the request field of the issuer process */ + req = &saved_req->issuer->simcall; + //XBT_DEBUG("Req->call %u", req->call); + + /* Debug information */ + if(XBT_LOG_ISENABLED(mc_global, xbt_log_priority_debug)){ + req_str = MC_request_to_string(req, value); + XBT_DEBUG("Replay (depth = %d) : %s (%p)", depth, req_str, state); + xbt_free(req_str); + } + + } + + SIMIX_simcall_pre(req, value); + MC_wait_for_requests(); + } + + depth++; - xbt_dynar_t tokens1 = xbt_str_split(expr, ";"); - xbt_dynar_t tokens2; + /* Update statistics */ + mc_stats->visited_pairs++; + mc_stats->executed_transitions++; - loc->type = e_dw_compose; - loc->location.compose = xbt_dynar_new(sizeof(dw_location_t), NULL); + item = xbt_fifo_get_prev_item(item); + } - while(cursor < xbt_dynar_length(tokens1)){ + }else{ - tok = xbt_dynar_get_as(tokens1, cursor, char*); - tokens2 = xbt_str_split(tok, " "); - tok2 = xbt_dynar_get_as(tokens2, 0, char*); + /* Traverse the stack from the initial state and re-execute the transitions */ + for (item = xbt_fifo_get_last_item(stack); + item != xbt_fifo_get_first_item(stack); + item = xbt_fifo_get_prev_item(item)) { + + pair = (mc_pair_t) xbt_fifo_get_item_content(item); + state = (mc_state_t) pair->graph_state; + + if(pair->requests > 0){ + + saved_req = MC_state_get_executed_request(state, &value); + //XBT_DEBUG("SavedReq->call %u", saved_req->call); - if(strncmp(tok2, "DW_OP_reg", 9) == 0){ - dw_location_t new_element = xbt_new0(s_dw_location_t, 1); - new_element->type = e_dw_register; - new_element->location.reg = atoi(strtok(tok2, "DW_OP_reg")); - xbt_dynar_push(loc->location.compose, &new_element); - }else if(strcmp(tok2, "DW_OP_fbreg:") == 0){ - dw_location_t new_element = xbt_new0(s_dw_location_t, 1); - new_element->type = e_dw_fbregister_op; - new_element->location.fbreg_op = atoi(xbt_dynar_get_as(tokens2, xbt_dynar_length(tokens2) - 1, char*)); - xbt_dynar_push(loc->location.compose, &new_element); - }else if(strncmp(tok2, "DW_OP_breg", 10) == 0){ - dw_location_t new_element = xbt_new0(s_dw_location_t, 1); - new_element->type = e_dw_bregister_op; - new_element->location.breg_op.reg = atoi(strtok(tok2, "DW_OP_breg")); - new_element->location.breg_op.offset = atoi(xbt_dynar_get_as(tokens2, xbt_dynar_length(tokens2) - 1, char*)); - xbt_dynar_push(loc->location.compose, &new_element); - }else if(strncmp(tok2, "DW_OP_lit", 9) == 0){ - dw_location_t new_element = xbt_new0(s_dw_location_t, 1); - new_element->type = e_dw_lit; - new_element->location.lit = atoi(strtok(tok2, "DW_OP_lit")); - xbt_dynar_push(loc->location.compose, &new_element); - }else if(strcmp(tok2, "DW_OP_piece:") == 0){ - dw_location_t new_element = xbt_new0(s_dw_location_t, 1); - new_element->type = e_dw_piece; - new_element->location.piece = atoi(xbt_dynar_get_as(tokens2, xbt_dynar_length(tokens2) - 1, char*)); - /*if(strlen(xbt_dynar_get_as(tokens2, 1, char*)) > 1) - new_element->location.piece = atoi(xbt_dynar_get_as(tokens2, 1, char*)); - else - new_element->location.piece = xbt_dynar_get_as(tokens2, 1, char*)[0] - '0';*/ - xbt_dynar_push(loc->location.compose, &new_element); - }else if(strcmp(tok2, "DW_OP_plus_uconst:") == 0){ - dw_location_t new_element = xbt_new0(s_dw_location_t, 1); - new_element->type = e_dw_plus_uconst; - new_element->location.plus_uconst = atoi(xbt_dynar_get_as(tokens2, xbt_dynar_length(tokens2) - 1, char *)); - xbt_dynar_push(loc->location.compose, &new_element); - }else if(strcmp(tok, "DW_OP_abs") == 0 || - strcmp(tok, "DW_OP_and") == 0 || - strcmp(tok, "DW_OP_div") == 0 || - strcmp(tok, "DW_OP_minus") == 0 || - strcmp(tok, "DW_OP_mod") == 0 || - strcmp(tok, "DW_OP_mul") == 0 || - strcmp(tok, "DW_OP_neg") == 0 || - strcmp(tok, "DW_OP_not") == 0 || - strcmp(tok, "DW_OP_or") == 0 || - strcmp(tok, "DW_OP_plus") == 0){ - dw_location_t new_element = xbt_new0(s_dw_location_t, 1); - new_element->type = e_dw_arithmetic; - new_element->location.arithmetic = strdup(strtok(tok2, "DW_OP_")); - xbt_dynar_push(loc->location.compose, &new_element); - }else if(strcmp(tok, "DW_OP_stack_value") == 0){ - }else if(strcmp(tok2, "DW_OP_deref_size:") == 0){ - dw_location_t new_element = xbt_new0(s_dw_location_t, 1); - new_element->type = e_dw_deref; - new_element->location.deref_size = (unsigned int short) atoi(xbt_dynar_get_as(tokens2, xbt_dynar_length(tokens2) - 1, char*)); - /*if(strlen(xbt_dynar_get_as(tokens, ++cursor, char*)) > 1) - new_element->location.deref_size = atoi(xbt_dynar_get_as(tokens, cursor, char*)); - else - new_element->location.deref_size = xbt_dynar_get_as(tokens, cursor, char*)[0] - '0';*/ - xbt_dynar_push(loc->location.compose, &new_element); - }else if(strcmp(tok, "DW_OP_deref") == 0){ - dw_location_t new_element = xbt_new0(s_dw_location_t, 1); - new_element->type = e_dw_deref; - new_element->location.deref_size = sizeof(void *); - xbt_dynar_push(loc->location.compose, &new_element); - }else if(strcmp(tok2, "DW_OP_constu:") == 0){ - dw_location_t new_element = xbt_new0(s_dw_location_t, 1); - new_element->type = e_dw_uconstant; - new_element->location.uconstant.bytes = 1; - new_element->location.uconstant.value = (unsigned long int)(atoi(xbt_dynar_get_as(tokens2, xbt_dynar_length(tokens2) - 1, char*))); - /*if(strlen(xbt_dynar_get_as(tokens, ++cursor, char*)) > 1) - new_element->location.uconstant.value = (unsigned long int)(atoi(xbt_dynar_get_as(tokens, cursor, char*))); - else - new_element->location.uconstant.value = (unsigned long int)(xbt_dynar_get_as(tokens, cursor, char*)[0] - '0');*/ - xbt_dynar_push(loc->location.compose, &new_element); - }else if(strcmp(tok2, "DW_OP_consts:") == 0){ - dw_location_t new_element = xbt_new0(s_dw_location_t, 1); - new_element->type = e_dw_sconstant; - new_element->location.sconstant.bytes = 1; - new_element->location.sconstant.value = (long int)(atoi(xbt_dynar_get_as(tokens2, xbt_dynar_length(tokens2) - 1, char*))); - xbt_dynar_push(loc->location.compose, &new_element); - }else if(strcmp(tok2, "DW_OP_const1u:") == 0 || - strcmp(tok2, "DW_OP_const2u:") == 0 || - strcmp(tok2, "DW_OP_const4u:") == 0 || - strcmp(tok2, "DW_OP_const8u:") == 0){ - dw_location_t new_element = xbt_new0(s_dw_location_t, 1); - new_element->type = e_dw_uconstant; - new_element->location.uconstant.bytes = tok2[11] - '0'; - new_element->location.uconstant.value = (unsigned long int)(atoi(xbt_dynar_get_as(tokens2, xbt_dynar_length(tokens2) - 1, char*))); - /*if(strlen(xbt_dynar_get_as(tokens, ++cursor, char*)) > 1) - new_element->location.constant.value = atoi(xbt_dynar_get_as(tokens, cursor, char*)); - else - new_element->location.constant.value = xbt_dynar_get_as(tokens, cursor, char*)[0] - '0';*/ - xbt_dynar_push(loc->location.compose, &new_element); - }else if(strcmp(tok, "DW_OP_const1s") == 0 || - strcmp(tok, "DW_OP_const2s") == 0 || - strcmp(tok, "DW_OP_const4s") == 0 || - strcmp(tok, "DW_OP_const8s") == 0){ - dw_location_t new_element = xbt_new0(s_dw_location_t, 1); - new_element->type = e_dw_sconstant; - new_element->location.sconstant.bytes = tok2[11] - '0'; - new_element->location.sconstant.value = (long int)(atoi(xbt_dynar_get_as(tokens2, xbt_dynar_length(tokens2) - 1, char*))); - xbt_dynar_push(loc->location.compose, &new_element); - }else{ - dw_location_t new_element = xbt_new0(s_dw_location_t, 1); - new_element->type = e_dw_unsupported; - xbt_dynar_push(loc->location.compose, &new_element); + if(saved_req != NULL){ + /* because we got a copy of the executed request, we have to fetch the + real one, pointed by the request field of the issuer process */ + req = &saved_req->issuer->simcall; + //XBT_DEBUG("Req->call %u", req->call); + + /* Debug information */ + if(XBT_LOG_ISENABLED(mc_global, xbt_log_priority_debug)){ + req_str = MC_request_to_string(req, value); + XBT_DEBUG("Replay (depth = %d) : %s (%p)", depth, req_str, state); + xbt_free(req_str); + } + + } + + SIMIX_simcall_pre(req, value); + MC_wait_for_requests(); } - cursor++; - xbt_dynar_free(&tokens2); - - } + depth++; - xbt_dynar_free(&tokens1); + /* Update statistics */ + mc_stats->visited_pairs++; + mc_stats->executed_transitions++; + } + } + + XBT_DEBUG("**** End Replay ****"); + + if(initial_state_liveness->raw_mem_set) + MC_SET_RAW_MEM; + else + MC_UNSET_RAW_MEM; + +} + +/** + * \brief Dumps the contents of a model-checker's stack and shows the actual + * execution trace + * \param stack The stack to dump + */ +void MC_dump_stack_safety(xbt_fifo_t stack) +{ + + int raw_mem_set = (mmalloc_get_current_heap() == raw_heap); + + MC_show_stack_safety(stack); + + if(!_sg_mc_checkpoint){ + + mc_state_t state; + + MC_SET_RAW_MEM; + while ((state = (mc_state_t) xbt_fifo_pop(stack)) != NULL) + MC_state_delete(state); + MC_UNSET_RAW_MEM; - return loc; - } + if(raw_mem_set) + MC_SET_RAW_MEM; + else + MC_UNSET_RAW_MEM; + } -void print_local_variables(xbt_dict_t list){ +void MC_show_stack_safety(xbt_fifo_t stack) +{ + + int raw_mem_set = (mmalloc_get_current_heap() == raw_heap); + + MC_SET_RAW_MEM; + + int value; + mc_state_t state; + xbt_fifo_item_t item; + smx_simcall_t req; + char *req_str = NULL; - dw_location_entry_t entry; - dw_location_t location_entry; - unsigned int cursor3 = 0, cursor4 = 0; - xbt_dict_cursor_t cursor = 0, cursor2 = 0; - - char *frame_name, *variable_name; - dw_frame_t current_frame; - dw_local_variable_t current_variable; - - xbt_dict_foreach(list, cursor, frame_name, current_frame){ - fprintf(stderr, "Frame name : %s\n", current_frame->name); - fprintf(stderr, "Location type : %d\n", current_frame->frame_base->type); - xbt_dict_foreach((xbt_dict_t)current_frame->variables, cursor2, variable_name, current_variable){ - fprintf(stderr, "Name : %s\n", current_variable->name); - if(current_variable->location == NULL) - continue; - fprintf(stderr, "Location type : %d\n", current_variable->location->type); - switch(current_variable->location->type){ - case e_dw_loclist : - xbt_dynar_foreach(current_variable->location->location.loclist, cursor3, entry){ - fprintf(stderr, "Lowpc : %lx, Highpc : %lx,", entry->lowpc, entry->highpc); - switch(entry->location->type){ - case e_dw_register : - fprintf(stderr, " Location : in register %d\n", entry->location->location.reg); - break; - case e_dw_bregister_op: - fprintf(stderr, " Location : Add %d to the value in register %d\n", entry->location->location.breg_op.offset, entry->location->location.breg_op.reg); - break; - case e_dw_lit: - fprintf(stderr, "Value already kwnown : %d\n", entry->location->location.lit); - break; - case e_dw_fbregister_op: - fprintf(stderr, " Location : %d bytes from logical frame pointer\n", entry->location->location.fbreg_op); - break; - case e_dw_compose: - fprintf(stderr, " Location :\n"); - xbt_dynar_foreach(entry->location->location.compose, cursor4, location_entry){ - switch(location_entry->type){ - case e_dw_register : - fprintf(stderr, " %d) in register %d\n", cursor4 + 1, location_entry->location.reg); - break; - case e_dw_bregister_op: - fprintf(stderr, " %d) add %d to the value in register %d\n", cursor4 + 1, location_entry->location.breg_op.offset, location_entry->location.breg_op.reg); - break; - case e_dw_lit: - fprintf(stderr, "%d) Value already kwnown : %d\n", cursor4 + 1, location_entry->location.lit); - break; - case e_dw_fbregister_op: - fprintf(stderr, " %d) %d bytes from logical frame pointer\n", cursor4 + 1, location_entry->location.fbreg_op); - break; - case e_dw_deref: - fprintf(stderr, " %d) Pop the stack entry and treats it as an address (size of data %d)\n", cursor4 + 1, location_entry->location.deref_size); - break; - case e_dw_arithmetic : - fprintf(stderr, "%d) arithmetic operation : %s\n", cursor4 + 1, location_entry->location.arithmetic); - break; - case e_dw_piece: - fprintf(stderr, "%d) The %d byte(s) previous value\n", cursor4 + 1, location_entry->location.piece); - break; - case e_dw_uconstant : - fprintf(stderr, "%d) Unsigned constant %lu\n", cursor4 + 1, location_entry->location.uconstant.value); - break; - case e_dw_sconstant : - fprintf(stderr, "%d) Signed constant %lu\n", cursor4 + 1, location_entry->location.sconstant.value); - break; - default : - fprintf(stderr, "%d) Location type not supported\n", cursor4 + 1); - break; - } - } - break; - default: - fprintf(stderr, "Location type not supported\n"); - break; - } - } - break; - case e_dw_compose: - cursor4 = 0; - fprintf(stderr, "Location :\n"); - xbt_dynar_foreach(current_variable->location->location.compose, cursor4, location_entry){ - switch(location_entry->type){ - case e_dw_register : - fprintf(stderr, " %d) in register %d\n", cursor4 + 1, location_entry->location.reg); - break; - case e_dw_bregister_op: - fprintf(stderr, " %d) add %d to the value in register %d\n", cursor4 + 1, location_entry->location.breg_op.offset, location_entry->location.breg_op.reg); - break; - case e_dw_lit: - fprintf(stderr, "%d) Value already kwnown : %d\n", cursor4 + 1, location_entry->location.lit); - break; - case e_dw_fbregister_op: - fprintf(stderr, " %d) %d bytes from logical frame pointer\n", cursor4 + 1, location_entry->location.fbreg_op); - break; - case e_dw_deref: - fprintf(stderr, " %d) Pop the stack entry and treats it as an address (size of data %d)\n", cursor4 + 1, location_entry->location.deref_size); - break; - case e_dw_arithmetic : - fprintf(stderr, "%d) arithmetic operation : %s\n", cursor4 + 1, location_entry->location.arithmetic); - break; - case e_dw_piece: - fprintf(stderr, "%d) The %d byte(s) previous value\n", cursor4 + 1, location_entry->location.piece); - break; - case e_dw_uconstant : - fprintf(stderr, "%d) Unsigned constant %lu\n", cursor4 + 1, location_entry->location.uconstant.value); - break; - case e_dw_sconstant : - fprintf(stderr, "%d) Signed constant %lu\n", cursor4 + 1, location_entry->location.sconstant.value); - break; - default : - fprintf(stderr, "%d) Location type not supported\n", cursor4 + 1); - break; - } - } - break; - default : - fprintf(stderr, "Location type not supported\n"); - break; - } + for (item = xbt_fifo_get_last_item(stack); + (item ? (state = (mc_state_t) (xbt_fifo_get_item_content(item))) + : (NULL)); item = xbt_fifo_get_prev_item(item)) { + req = MC_state_get_executed_request(state, &value); + if(req){ + req_str = MC_request_to_string(req, value); + XBT_INFO("%s", req_str); + xbt_free(req_str); } } + if(!raw_mem_set) + MC_UNSET_RAW_MEM; } -static void MC_get_global_variables(char *elf_file){ - - FILE *fp; - - char *command = bprintf("objdump -t -j .data -j .bss %s", elf_file); +void MC_show_deadlock(smx_simcall_t req) +{ + /*char *req_str = NULL;*/ + XBT_INFO("**************************"); + XBT_INFO("*** DEAD-LOCK DETECTED ***"); + XBT_INFO("**************************"); + XBT_INFO("Locked request:"); + /*req_str = MC_request_to_string(req); + XBT_INFO("%s", req_str); + xbt_free(req_str);*/ + XBT_INFO("Counter-example execution trace:"); + MC_dump_stack_safety(mc_stack_safety); + MC_print_statistics(mc_stats); +} - fp = popen(command, "r"); - if(fp == NULL){ - perror("popen failed"); - xbt_abort(); +void MC_show_stack_liveness(xbt_fifo_t stack){ + int value; + mc_pair_t pair; + xbt_fifo_item_t item; + smx_simcall_t req; + char *req_str = NULL; + + for (item = xbt_fifo_get_last_item(stack); + (item ? (pair = (mc_pair_t) (xbt_fifo_get_item_content(item))) + : (NULL)); item = xbt_fifo_get_prev_item(item)) { + req = MC_state_get_executed_request(pair->graph_state, &value); + if(req){ + if(pair->requests>0){ + req_str = MC_request_to_string(req, value); + XBT_INFO("%s", req_str); + xbt_free(req_str); + }else{ + XBT_INFO("End of system requests but evolution in Büchi automaton"); + } + } } +} - if(mc_global_variables == NULL) - mc_global_variables = xbt_dynar_new(sizeof(global_variable_t), global_variable_free_voidp); +void MC_dump_stack_liveness(xbt_fifo_t stack){ - char *line = NULL; - ssize_t read; - size_t n = 0; + int raw_mem_set = (mmalloc_get_current_heap() == raw_heap); - xbt_dynar_t line_tokens = NULL; - unsigned long offset; + mc_pair_t pair; - int type = strcmp(elf_file, xbt_binary_name); /* 0 = binary, other = libsimgrid */ + MC_SET_RAW_MEM; + while ((pair = (mc_pair_t) xbt_fifo_pop(stack)) != NULL) + MC_pair_delete(pair); + MC_UNSET_RAW_MEM; - while ((read = xbt_getline(&line, &n, fp)) != -1){ + if(raw_mem_set) + MC_SET_RAW_MEM; - if(n == 0) - continue; +} - /* Wipeout the new line character */ - line[read - 1] = '\0'; - xbt_str_strip_spaces(line); - xbt_str_ltrim(line, NULL); +void MC_print_statistics(mc_stats_t stats) +{ + if(stats->expanded_pairs == 0){ + XBT_INFO("Expanded states = %lu", stats->expanded_states); + XBT_INFO("Visited states = %lu", stats->visited_states); + }else{ + XBT_INFO("Expanded pairs = %lu", stats->expanded_pairs); + XBT_INFO("Visited pairs = %lu", stats->visited_pairs); + } + XBT_INFO("Executed transitions = %lu", stats->executed_transitions); + MC_SET_RAW_MEM; + if((_sg_mc_dot_output_file != NULL) && (_sg_mc_dot_output_file[0]!='\0')){ + fprintf(dot_output, "}\n"); + fclose(dot_output); + } + MC_UNSET_RAW_MEM; +} - line_tokens = xbt_str_split(line, NULL); +void MC_assert(int prop) +{ + if (MC_is_active() && !prop){ + XBT_INFO("**************************"); + XBT_INFO("*** PROPERTY NOT VALID ***"); + XBT_INFO("**************************"); + XBT_INFO("Counter-example execution trace:"); + MC_dump_stack_safety(mc_stack_safety); + MC_print_statistics(mc_stats); + xbt_abort(); + } +} - if(xbt_dynar_length(line_tokens) <= 4 || strcmp(xbt_dynar_get_as(line_tokens, 0, char *), "SYMBOL") == 0) - continue; +void MC_cut(void){ + user_max_depth_reached = 1; +} - if((strncmp(xbt_dynar_get_as(line_tokens, xbt_dynar_length(line_tokens) - 1, char*), "__gcov", 6) == 0) - || (strncmp(xbt_dynar_get_as(line_tokens, xbt_dynar_length(line_tokens) - 1, char*), "gcov", 4) == 0) - || (strcmp(xbt_dynar_get_as(line_tokens, xbt_dynar_length(line_tokens) - 1, char*), ".data") == 0) - || (strcmp(xbt_dynar_get_as(line_tokens, xbt_dynar_length(line_tokens) - 1, char*), ".bss") == 0) - || (strncmp(xbt_dynar_get_as(line_tokens, xbt_dynar_length(line_tokens) - 1, char*), "stderr", 6) == 0) - || ((size_t)strtoul(xbt_dynar_get_as(line_tokens, xbt_dynar_length(line_tokens) - 2, char*), NULL, 16) == 0)) - continue; +void MC_process_clock_add(smx_process_t process, double amount) +{ + mc_time[process->pid] += amount; +} - global_variable_t var = xbt_new0(s_global_variable_t, 1); +double MC_process_clock_get(smx_process_t process) +{ + if(mc_time){ + if(process != NULL) + return mc_time[process->pid]; + else + return -1; + }else{ + return 0; + } +} - if(type == 0){ - var->address = (void *)strtoul(xbt_dynar_get_as(line_tokens, 0, char*), NULL, 16); - }else{ - offset = strtoul(xbt_dynar_get_as(line_tokens, 0, char*), NULL, 16); - var->address = (char *)start_text_libsimgrid+offset; - } +void MC_automaton_load(const char *file){ - var->size = (size_t)strtoul(xbt_dynar_get_as(line_tokens, xbt_dynar_length(line_tokens) - 2, char*), NULL, 16); - var->name = strdup(xbt_dynar_get_as(line_tokens, xbt_dynar_length(line_tokens) - 1, char*)); + int raw_mem_set = (mmalloc_get_current_heap() == raw_heap); - if(data_bss_ignore_size(var->address) > 0){ - global_variable_free(var); - }else{ - if(xbt_dynar_is_empty(mc_global_variables)){ - xbt_dynar_push(mc_global_variables, &var); - }else{ - unsigned int cursor = 0; - int start = 0; - int end = xbt_dynar_length(mc_global_variables) - 1; - global_variable_t current_var = NULL; - - while(start <= end){ - cursor = (start + end) / 2; - current_var = (global_variable_t)xbt_dynar_get_as(mc_global_variables, cursor, global_variable_t); - if(current_var->address == var->address) - break; - if(current_var->address < var->address) - start = cursor + 1; - if(current_var->address > var->address) - end = cursor - 1; - } - - if(current_var->address < var->address) - xbt_dynar_insert_at(mc_global_variables, cursor + 1, &var); - else - xbt_dynar_insert_at(mc_global_variables, cursor, &var); - } - } + MC_SET_RAW_MEM; - xbt_dynar_free(&line_tokens); + if (_mc_property_automaton == NULL) + _mc_property_automaton = xbt_automaton_new(); + + xbt_automaton_load(_mc_property_automaton,file); - } + MC_UNSET_RAW_MEM; - xbt_free(command); - xbt_free(line); - pclose(fp); + if(raw_mem_set) + MC_SET_RAW_MEM; } -void global_variable_free(global_variable_t v){ - xbt_free(v->name); - xbt_free(v); -} +void MC_automaton_new_propositional_symbol(const char* id, void* fct) { + + int raw_mem_set = (mmalloc_get_current_heap() == raw_heap); + + MC_SET_RAW_MEM; + + if (_mc_property_automaton == NULL) + _mc_property_automaton = xbt_automaton_new(); + + xbt_automaton_propositional_symbol_new(_mc_property_automaton,id,fct); -void global_variable_free_voidp(void *v){ - global_variable_free((global_variable_t) * (void **) v); + MC_UNSET_RAW_MEM; + + if(raw_mem_set) + MC_SET_RAW_MEM; + } + + + diff --git a/src/mc/mc_liveness.c b/src/mc/mc_liveness.c index 561d3653b9..27889aca59 100644 --- a/src/mc/mc_liveness.c +++ b/src/mc/mc_liveness.c @@ -94,6 +94,7 @@ static int is_reached_acceptance_pair(mc_pair_t pair){ same_processes_and_bytes_not_found = 0; if(xbt_automaton_state_compare(pair_test->automaton_state, pair->automaton_state) == 0){ if(xbt_automaton_propositional_symbols_compare_value(pair_test->atomic_propositions, pair->atomic_propositions) == 0){ + XBT_DEBUG("Compare with state %d", pair_test->num); if(snapshot_compare(pair->graph_state->system_state, pair_test->graph_state->system_state) == 0){ if(raw_mem_set) MC_SET_RAW_MEM; @@ -112,6 +113,7 @@ static int is_reached_acceptance_pair(mc_pair_t pair){ break; if(xbt_automaton_state_compare(pair_test->automaton_state, pair->automaton_state) == 0){ if(xbt_automaton_propositional_symbols_compare_value(pair_test->atomic_propositions, pair->atomic_propositions) == 0){ + XBT_DEBUG("Compare with state %d", pair_test->num); if(snapshot_compare(pair->graph_state->system_state, pair_test->graph_state->system_state) == 0){ if(raw_mem_set) MC_SET_RAW_MEM; @@ -131,6 +133,7 @@ static int is_reached_acceptance_pair(mc_pair_t pair){ break; if(xbt_automaton_state_compare(pair_test->automaton_state, pair->automaton_state) == 0){ if(xbt_automaton_propositional_symbols_compare_value(pair_test->atomic_propositions, pair->atomic_propositions) == 0){ + XBT_DEBUG("Compare with state %d", pair_test->num); if(snapshot_compare(pair->graph_state->system_state, pair_test->graph_state->system_state) == 0){ if(raw_mem_set) MC_SET_RAW_MEM; @@ -301,7 +304,6 @@ static int is_visited_pair(mc_pair_t pair){ size_t bytes_used_test; int nb_processes_test; int same_processes_and_bytes_not_found = 1; - int result; while(start <= end && same_processes_and_bytes_not_found){ cursor = (start + end) / 2; @@ -322,10 +324,17 @@ static int is_visited_pair(mc_pair_t pair){ if(xbt_automaton_state_compare(pair_test->automaton_state, pair->automaton_state) == 0){ if(xbt_automaton_propositional_symbols_compare_value(pair_test->atomic_propositions, pair->atomic_propositions) == 0){ if(snapshot_compare(pair->graph_state->system_state, pair_test->graph_state->system_state) == 0){ + if(pair_test->other_num == -1) + pair->other_num = pair_test->num; + else + pair->other_num = pair_test->other_num; + if(dot_output == NULL) + XBT_DEBUG("Pair %d already visited ! (equal to pair %d)", pair->num, pair_test->num); + else + XBT_DEBUG("Pair %d already visited ! (equal to pair %d (pair %d in dot_output))", pair->num, pair_test->num, pair->other_num); xbt_dynar_remove_at(visited_pairs, cursor, NULL); xbt_dynar_insert_at(visited_pairs, cursor, &pair); pair_test->visited_removed = 1; - result = pair_test->num; if(pair_test->stack_removed && pair_test->visited_removed){ if((pair_test->automaton_state->type == 1) || (pair_test->automaton_state->type == 2)){ if(pair_test->acceptance_removed){ @@ -339,7 +348,7 @@ static int is_visited_pair(mc_pair_t pair){ MC_SET_RAW_MEM; else MC_UNSET_RAW_MEM; - return result; + return pair->other_num; } } } @@ -353,10 +362,17 @@ static int is_visited_pair(mc_pair_t pair){ if(xbt_automaton_state_compare(pair_test->automaton_state, pair->automaton_state) == 0){ if(xbt_automaton_propositional_symbols_compare_value(pair_test->atomic_propositions, pair->atomic_propositions) == 0){ if(snapshot_compare(pair->graph_state->system_state, pair_test->graph_state->system_state) == 0){ + if(pair_test->other_num == -1) + pair->other_num = pair_test->num; + else + pair->other_num = pair_test->other_num; + if(dot_output == NULL) + XBT_DEBUG("Pair %d already visited ! (equal to pair %d)", pair->num, pair_test->num); + else + XBT_DEBUG("Pair %d already visited ! (equal to pair %d (pair %d in dot_output))", pair->num, pair_test->num, pair->other_num); xbt_dynar_remove_at(visited_pairs, previous_cursor, NULL); xbt_dynar_insert_at(visited_pairs, previous_cursor, &pair); pair_test->visited_removed = 1; - result = pair_test->num; if(pair_test->stack_removed && pair_test->visited_removed){ if((pair_test->automaton_state->type == 1) || (pair_test->automaton_state->type == 2)){ if(pair_test->acceptance_removed){ @@ -370,7 +386,7 @@ static int is_visited_pair(mc_pair_t pair){ MC_SET_RAW_MEM; else MC_UNSET_RAW_MEM; - return result; + return pair->other_num; } } } @@ -385,10 +401,17 @@ static int is_visited_pair(mc_pair_t pair){ if(xbt_automaton_state_compare(pair_test->automaton_state, pair->automaton_state) == 0){ if(xbt_automaton_propositional_symbols_compare_value(pair_test->atomic_propositions, pair->atomic_propositions) == 0){ if(snapshot_compare(pair->graph_state->system_state, pair_test->graph_state->system_state) == 0){ + if(pair_test->other_num == -1) + pair->other_num = pair_test->num; + else + pair->other_num = pair_test->other_num; + if(dot_output == NULL) + XBT_DEBUG("Pair %d already visited ! (equal to pair %d)", pair->num, pair_test->num); + else + XBT_DEBUG("Pair %d already visited ! (equal to pair %d (pair %d in dot_output))", pair->num, pair_test->num, pair->other_num); xbt_dynar_remove_at(visited_pairs, next_cursor, NULL); xbt_dynar_insert_at(visited_pairs, next_cursor, &pair); pair_test->visited_removed = 1; - result = pair_test->num; if(pair_test->stack_removed && pair_test->visited_removed){ if((pair_test->automaton_state->type == 1) || (pair_test->automaton_state->type == 2)){ if(pair_test->acceptance_removed){ @@ -402,7 +425,7 @@ static int is_visited_pair(mc_pair_t pair){ MC_SET_RAW_MEM; else MC_UNSET_RAW_MEM; - return result; + return pair->other_num; } } } @@ -652,8 +675,6 @@ void MC_ddfs(){ if((visited_num = is_visited_pair(current_pair)) != -1){ - XBT_DEBUG("Pair %d already visited ! (equal to pair %d)", current_pair->num, visited_num); - MC_SET_RAW_MEM; if(dot_output != NULL) fprintf(dot_output, "\"%d\" -> \"%d\" [%s];\n", initial_state_liveness->prev_pair, visited_num, initial_state_liveness->prev_req); diff --git a/src/mc/mc_pair.c b/src/mc/mc_pair.c index 6f6506e4d2..f25394abbf 100644 --- a/src/mc/mc_pair.c +++ b/src/mc/mc_pair.c @@ -11,6 +11,7 @@ mc_pair_t MC_pair_new(){ p->nb_processes = xbt_swag_size(simix_global->process_list); p->num = ++mc_stats->expanded_pairs; p->search_cycle = 0; + p->other_num = -1; return p; } diff --git a/src/mc/mc_private.h b/src/mc/mc_private.h index a348722d46..52d70449fc 100644 --- a/src/mc/mc_private.h +++ b/src/mc/mc_private.h @@ -46,8 +46,9 @@ typedef struct s_mc_snapshot{ } s_mc_snapshot_t, *mc_snapshot_t; typedef struct s_mc_snapshot_stack{ - xbt_strbuff_t local_variables; + xbt_dynar_t local_variables; void *stack_pointer; + void *real_address; }s_mc_snapshot_stack_t, *mc_snapshot_stack_t; typedef struct s_mc_global_t{ @@ -57,12 +58,17 @@ typedef struct s_mc_global_t{ char *prev_req; }s_mc_global_t, *mc_global_t; +typedef struct s_mc_checkpoint_ignore_region{ + void *addr; + size_t size; +}s_mc_checkpoint_ignore_region_t, *mc_checkpoint_ignore_region_t; + mc_snapshot_t SIMIX_pre_mc_snapshot(smx_simcall_t simcall); mc_snapshot_t MC_take_snapshot(void); void MC_restore_snapshot(mc_snapshot_t); void MC_free_snapshot(mc_snapshot_t); -void snapshot_stack_free_voidp(void *s); -int is_stack_ignore_variable(char *frame, char *var_name); + +extern xbt_dynar_t mc_checkpoint_ignore; /********************************* MC Global **********************************/ @@ -70,6 +76,8 @@ extern double *mc_time; extern FILE *dot_output; extern const char* colors[13]; +extern int user_max_depth_reached; + int MC_deadlock_check(void); void MC_replay(xbt_fifo_t stack, int start); void MC_replay_liveness(xbt_fifo_t stack, int all_stack); @@ -78,8 +86,7 @@ void MC_show_deadlock(smx_simcall_t req); void MC_show_stack_safety(xbt_fifo_t stack); void MC_dump_stack_safety(xbt_fifo_t stack); void MC_init(void); -void MC_init_dot_output(void); -int SIMIX_pre_mc_random(smx_simcall_t simcall); +int SIMIX_pre_mc_random(smx_simcall_t simcall, int min, int max); /********************************* Requests ***********************************/ @@ -206,16 +213,17 @@ typedef struct s_memory_map { void MC_init_memory_map_info(void); -memory_map_t get_memory_map(void); -void free_memory_map(memory_map_t map); -void get_libsimgrid_plt_section(void); -void get_binary_plt_section(void); +memory_map_t MC_get_memory_map(void); +void MC_free_memory_map(memory_map_t map); +void MC_get_libsimgrid_plt_section(void); +void MC_get_binary_plt_section(void); extern void *start_data_libsimgrid; extern void *start_data_binary; extern void *start_bss_binary; extern char *libsimgrid_path; extern void *start_text_libsimgrid; +extern void *start_text_binary; extern void *start_bss_libsimgrid; extern void *start_plt_libsimgrid; extern void *end_plt_libsimgrid; @@ -273,6 +281,7 @@ typedef struct s_mc_visited_state{ size_t heap_bytes_used; int nb_processes; int num; + int other_num; // dot_output for }s_mc_visited_state_t, *mc_visited_state_t; @@ -287,6 +296,7 @@ extern xbt_dynar_t mc_data_bss_comparison_ignore; typedef struct s_mc_pair{ int num; + int other_num; /* Dot output for */ int search_cycle; mc_state_t graph_state; /* System state included */ xbt_automaton_state_t automaton_state; @@ -308,7 +318,14 @@ void MC_show_stack_liveness(xbt_fifo_t stack); void MC_dump_stack_liveness(xbt_fifo_t stack); -/********************************** Local variables with DWARF **********************************/ +/********************************** Variables with DWARF **********************************/ + +extern xbt_dict_t mc_local_variables_libsimgrid; +extern xbt_dict_t mc_local_variables_binary; +extern xbt_dynar_t mc_global_variables_libsimgrid; +extern xbt_dynar_t mc_global_variables_binary; +extern xbt_dict_t mc_variables_type_libsimgrid; +extern xbt_dict_t mc_variables_type_binary; typedef enum { e_dw_loclist, @@ -372,53 +389,36 @@ typedef struct s_dw_location_entry{ dw_location_t location; }s_dw_location_entry_t, *dw_location_entry_t; -typedef struct s_dw_local_variable{ +typedef struct s_dw_variable{ + int global; char *name; - dw_location_t location; -}s_dw_local_variable_t, *dw_local_variable_t; + char *type_origin; + union{ + dw_location_t location; + void *address; + }address; +}s_dw_variable_t, *dw_variable_t; typedef struct s_dw_frame{ char *name; void *low_pc; void *high_pc; dw_location_t frame_base; - xbt_dict_t variables; + xbt_dynar_t variables; /* Cannot use dict, there may be several variables with the same name (in different lexical blocks)*/ unsigned long int start; unsigned long int end; }s_dw_frame_t, *dw_frame_t; -/* FIXME : implement free functions for each structure */ - -extern xbt_dict_t mc_local_variables; - -typedef struct s_variable_value{ - char *type; - - union{ - void *address; - long int res; - }value; -}s_variable_value_t, *variable_value_t; - -void variable_value_free_voidp(void* v); -void variable_value_free(variable_value_t v); - -void MC_get_local_variables(const char *elf_file, xbt_dict_t location_list, xbt_dict_t *variables); -void print_local_variables(xbt_dict_t list); -xbt_dict_t MC_get_location_list(const char *elf_file); - - -/********************************** Global variables with objdump **********************************/ +/********************************** Miscellaneous **********************************/ -typedef struct s_global_variable{ +typedef struct s_local_variable{ + char *frame; + unsigned long ip; char *name; - size_t size; + char *type; void *address; -}s_global_variable_t, *global_variable_t; - -void global_variable_free(global_variable_t v); -void global_variable_free_voidp(void *v); - -extern xbt_dynar_t mc_global_variables; + int region; +}s_local_variable_t, *local_variable_t; #endif + diff --git a/src/mc/mc_request.c b/src/mc/mc_request.c index 9ce5f61b7a..2e8a8149bc 100644 --- a/src/mc/mc_request.c +++ b/src/mc/mc_request.c @@ -32,15 +32,15 @@ int MC_request_depend(smx_simcall_t r1, smx_simcall_t r2) { if(rdv != simcall_comm_wait__get__comm(r2)->comm.rdv_cpy && simcall_comm_wait__get__timeout(r2) <= 0) return FALSE; - if((r1->issuer != simcall_comm_wait__get__comm(r2)->comm.src_proc) && (r1->issuer != simcall_comm_wait__get__comm(r2)->comm.dst_proc)) + if((r1->issuer != simcall_comm_wait__get__comm(r2)->comm.src_proc) && (r1->issuer != simcall_comm_wait__get__comm(r2)->comm.dst_proc) && simcall_comm_wait__get__timeout(r2) <= 0) return FALSE; if((r1->call == SIMCALL_COMM_ISEND) && (simcall_comm_wait__get__comm(r2)->comm.type == SIMIX_COMM_SEND) - && (simcall_comm_wait__get__comm(r2)->comm.src_buff != simcall_comm_isend__get__src_buff(r1))) + && (simcall_comm_wait__get__comm(r2)->comm.src_buff != simcall_comm_isend__get__src_buff(r1)) && simcall_comm_wait__get__timeout(r2) <= 0) return FALSE; if((r1->call == SIMCALL_COMM_IRECV) && (simcall_comm_wait__get__comm(r2)->comm.type == SIMIX_COMM_RECEIVE) - && (simcall_comm_wait__get__comm(r2)->comm.dst_buff != simcall_comm_irecv__get__dst_buff(r1))) + && (simcall_comm_wait__get__comm(r2)->comm.dst_buff != simcall_comm_irecv__get__dst_buff(r1)) && simcall_comm_wait__get__timeout(r2) <= 0) return FALSE; } @@ -52,15 +52,15 @@ int MC_request_depend(smx_simcall_t r1, smx_simcall_t r2) { if(rdv != simcall_comm_wait__get__comm(r1)->comm.rdv_cpy && simcall_comm_wait__get__timeout(r1) <= 0) return FALSE; - if((r2->issuer != simcall_comm_wait__get__comm(r1)->comm.src_proc) && (r2->issuer != simcall_comm_wait__get__comm(r1)->comm.dst_proc)) + if((r2->issuer != simcall_comm_wait__get__comm(r1)->comm.src_proc) && (r2->issuer != simcall_comm_wait__get__comm(r1)->comm.dst_proc) && simcall_comm_wait__get__timeout(r1) <= 0) return FALSE; if((r2->call == SIMCALL_COMM_ISEND) && (simcall_comm_wait__get__comm(r1)->comm.type == SIMIX_COMM_SEND) - && (simcall_comm_wait__get__comm(r1)->comm.src_buff != simcall_comm_isend__get__src_buff(r2))) + && (simcall_comm_wait__get__comm(r1)->comm.src_buff != simcall_comm_isend__get__src_buff(r2)) && simcall_comm_wait__get__timeout(r1) <= 0) return FALSE; if((r2->call == SIMCALL_COMM_IRECV) && (simcall_comm_wait__get__comm(r1)->comm.type == SIMIX_COMM_RECEIVE) - && (simcall_comm_wait__get__comm(r1)->comm.dst_buff != simcall_comm_irecv__get__dst_buff(r2))) + && (simcall_comm_wait__get__comm(r1)->comm.dst_buff != simcall_comm_irecv__get__dst_buff(r2)) && simcall_comm_wait__get__timeout(r1) <= 0) return FALSE; } @@ -274,9 +274,9 @@ char *MC_request_to_string(smx_simcall_t req, int value) } if(args != NULL){ - str = bprintf("[(%lu)%s (%s)] %s (%s)", req->issuer->pid , MSG_host_get_name(req->issuer->smx_host), req->issuer->name, type, args); + str = bprintf("[(%lu)%s (%s)] %s(%s) (%d)", req->issuer->pid , MSG_host_get_name(req->issuer->smx_host), req->issuer->name, type, args, req->call); }else{ - str = bprintf("[(%lu)%s (%s)] %s ", req->issuer->pid , MSG_host_get_name(req->issuer->smx_host), req->issuer->name, type); + str = bprintf("[(%lu)%s (%s)] %s (%d) ", req->issuer->pid , MSG_host_get_name(req->issuer->smx_host), req->issuer->name, type, req->call); } xbt_free(args); @@ -461,17 +461,10 @@ char *MC_request_get_dot_output(smx_simcall_t req, int value){ break; case SIMCALL_MC_RANDOM: - if(value == 0){ - if(req->issuer->smx_host) - label = bprintf("[(%lu)%s] MC_RANDOM (0)", req->issuer->pid, MSG_host_get_name(req->issuer->smx_host)); - else - label = bprintf("[(%lu)] MC_RANDOM (0)", req->issuer->pid); - }else{ - if(req->issuer->smx_host) - label = bprintf("[(%lu)%s] MC_RANDOM (1)", req->issuer->pid, MSG_host_get_name(req->issuer->smx_host)); - else - label = bprintf("[(%lu)] MC_RANDOM (1)", req->issuer->pid); - } + if(req->issuer->smx_host) + label = bprintf("[(%lu)%s] MC_RANDOM (%d)", req->issuer->pid, MSG_host_get_name(req->issuer->smx_host), value); + else + label = bprintf("[(%lu)] MC_RANDOM (%d)", req->issuer->pid, value); break; case SIMCALL_MC_SNAPSHOT: diff --git a/src/mc/mc_state.c b/src/mc/mc_state.c index 59cca4e6cc..c7ff71ce1b 100644 --- a/src/mc/mc_state.c +++ b/src/mc/mc_state.c @@ -109,12 +109,11 @@ void MC_state_set_executed_request(mc_state_t state, smx_simcall_t req, int valu case SIMCALL_MC_RANDOM: state->internal_req = *req; - simcall_mc_random__set__result(&state->internal_req, value); - if(value == 0){ + if(value != simcall_mc_random__get__max(req)){ xbt_swag_foreach(process, simix_global->process_list){ procstate = &state->proc_status[process->pid]; if(process->pid == req->issuer->pid){ - procstate->state = MC_MORE_INTERLEAVE; + procstate->state = MC_MORE_INTERLEAVE; break; } } @@ -200,8 +199,10 @@ smx_simcall_t MC_state_get_request(mc_state_t state, int *value) case SIMCALL_MC_RANDOM: if(procstate->state == MC_INTERLEAVE) *value = 0; - else - *value = 1; + else{ + if(state->req_num < simcall_mc_random__get__max(&process->simcall)) + *value = state->req_num + 1; + } procstate->state = MC_DONE; return &process->simcall; break; diff --git a/src/mc/memory_map.c b/src/mc/memory_map.c index 04538dda26..b582b326bf 100644 --- a/src/mc/memory_map.c +++ b/src/mc/memory_map.c @@ -9,7 +9,7 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_memory_map, mc, "Logging specific to algorithms for memory_map"); -memory_map_t get_memory_map(void) +memory_map_t MC_get_memory_map(void) { FILE *fp; /* File pointer to process's proc maps file */ char *line = NULL; /* Temporal storage for each line that is readed */ @@ -155,7 +155,7 @@ memory_map_t get_memory_map(void) return ret; } -void free_memory_map(memory_map_t map){ +void MC_free_memory_map(memory_map_t map){ int i; for(i=0; i< map->mapsize; i++){ diff --git a/src/msg/instr_msg_process.c b/src/msg/instr_msg_process.c index 7c6239a41e..2b1a2a4327 100644 --- a/src/msg/instr_msg_process.c +++ b/src/msg/instr_msg_process.c @@ -5,7 +5,6 @@ * under the terms of the license (GNU LGPL) which comes with this package. */ #include "msg_private.h" -#include "mc/mc.h" #include "msg/datatypes.h" #include "simix/smx_process_private.h" @@ -33,9 +32,6 @@ void TRACE_msg_process_change_host(msg_process_t process, msg_host_t old_host, m if (TRACE_msg_process_is_enabled()){ static long long int counter = 0; - if(MC_is_active()) - MC_ignore_data_bss(&counter, sizeof(counter)); - char key[INSTR_DEFAULT_STR_SIZE]; snprintf (key, INSTR_DEFAULT_STR_SIZE, "%lld", counter++); diff --git a/src/msg/instr_msg_task.c b/src/msg/instr_msg_task.c index 52acde4d49..d87fa851db 100644 --- a/src/msg/instr_msg_task.c +++ b/src/msg/instr_msg_task.c @@ -39,10 +39,8 @@ void TRACE_msg_task_create(msg_task_t task) task->counter = counter++; task->category = NULL; - if(MC_is_active()){ - MC_ignore_data_bss(&counter, sizeof(counter)); + if(MC_is_active()) MC_ignore_heap(&(task->counter), sizeof(task->counter)); - } XBT_DEBUG("CREATE %p, %lld", task, task->counter); } diff --git a/src/msg/msg_global.c b/src/msg/msg_global.c index 3a3ad8ce9a..0a1f1d6bc1 100644 --- a/src/msg/msg_global.c +++ b/src/msg/msg_global.c @@ -134,7 +134,7 @@ msg_error_t MSG_main(void) * Do --help on any simgrid binary to see the list of currently existing configuration variables, and see Section @ref options. * * Example: - * MSG_config("workstation/model","KCCFLN05"); + * MSG_config("workstation/model","ptask_L07"); */ void MSG_config(const char *key, const char *value){ xbt_assert(msg_global,"ERROR: Please call MSG_init() before using MSG_config()"); diff --git a/src/msg/msg_io.c b/src/msg/msg_io.c index 7bdabdf0ee..34bf54fa6c 100644 --- a/src/msg/msg_io.c +++ b/src/msg/msg_io.c @@ -28,6 +28,33 @@ void __MSG_file_get_info(msg_file_t fd){ xbt_dynar_free_container(&info); } + +/** \ingroup msg_file_management + * + * \brief Set the user data of a #msg_file_t. + * + * This functions checks whether some data has already been associated to \a file + or not and attach \a data to \a file if it is possible. + */ +msg_error_t MSG_file_set_data(msg_file_t fd, void *data) +{ + SIMIX_file_set_data(fd->simdata->smx_file,data); + + return MSG_OK; +} + +/** \ingroup msg_file_management + * + * \brief Return the user data of a #msg_file_t. + * + * This functions checks whether \a file is a valid pointer or not and return + the user data associated to \a file if it is possible. + */ +void *MSG_file_get_data(msg_file_t fd) +{ + return SIMIX_file_get_data(fd->simdata->smx_file); +} + /** \ingroup msg_file_management * \brief Display information related to a file descriptor * @@ -74,16 +101,19 @@ size_t MSG_file_write(size_t size, msg_file_t fd) * * \param mount is the mount point where find the file is located * \param fullname is the file location on the storage + * \param data user data to attach to the file * * \return An #msg_file_t associated to the file */ -msg_file_t MSG_file_open(const char* mount, const char* fullname) +msg_file_t MSG_file_open(const char* mount, const char* fullname, void* data) { msg_file_t file = xbt_new(s_msg_file_t,1); file->fullname = xbt_strdup(fullname); file->simdata = xbt_new0(s_simdata_file_t,1); file->info = xbt_new0(s_file_info_t,1); file->simdata->smx_file = simcall_file_open(mount, fullname); + SIMIX_file_set_data(file->simdata->smx_file, data); + return file; } diff --git a/src/simdag/sd_global.c b/src/simdag/sd_global.c index 896e758c06..98de7a6a5c 100644 --- a/src/simdag/sd_global.c +++ b/src/simdag/sd_global.c @@ -97,6 +97,19 @@ void SD_init(int *argc, char **argv) SD_LINK_LEVEL = xbt_lib_add_level(link_lib,__SD_link_destroy); } +/** \brief set a configuration variable + * + * Do --help on any simgrid binary to see the list of currently existing configuration variables, and see Section @ref options. + * + * Example: + * SD_config("workstation/model","default"); + */ +void SD_config(const char *key, const char *value){ + xbt_assert(sd_global,"ERROR: Please call SD_init() before using SD_config()"); + xbt_cfg_set_as_string(_sg_cfg_set, key, value); +} + + /** * \brief Reinits the application part of the simulation (experimental feature) * diff --git a/src/simdag/sd_task.c b/src/simdag/sd_task.c index af052fb289..733febca5f 100644 --- a/src/simdag/sd_task.c +++ b/src/simdag/sd_task.c @@ -476,7 +476,27 @@ double SD_task_get_amount(SD_task_t task) } /** - * \brief Returns the alpha parameter of a SD_TASK_COMP_PAR_AMDAH task + * \brief Sets the total amount of work of a task + * For sequential typed tasks (COMP_SEQ and COMM_E2E), it also sets the + * appropriate values in the computation_amount and communication_amount arrays + * respectively. Nothing more than modifying task->amount is done for paralle + * typed tasks (COMP_PAR_AMDAHL and COMM_PAR_MXN_1D_BLOCK) as the distribution + * of the amount of work is done at scheduling time. + * + * \param task a task + * \param amount the new amount of work to execute + */ +void SD_task_set_amount(SD_task_t task, double amount) +{ + task->amount = amount; + if (task->kind == SD_TASK_COMP_SEQ) + task->computation_amount[0] = amount; + if (task->kind == SD_TASK_COMM_E2E) + task->communication_amount[2] = amount; +} + +/** + * \brief Returns the alpha parameter of a SD_TASK_COMP_PAR_AMDAHL task * * \param task a parallel task assuming Amdahl's law as speedup model * \return the alpha parameter (serial part of a task in percent) for this task diff --git a/src/simdag/sd_workstation.c b/src/simdag/sd_workstation.c index f961c7f12b..3dbc6c0713 100644 --- a/src/simdag/sd_workstation.c +++ b/src/simdag/sd_workstation.c @@ -450,6 +450,16 @@ void SD_workstation_set_access_mode(SD_workstation_t workstation, } } +/** + * \brief Return the list of mounted storages on a workstation. + * + * \param workstation a workstation + * \return a dynar containing all mounted storages on the workstation + */ +xbt_dynar_t SD_workstation_get_storage_list(SD_workstation_t workstation){ + return surf_workstation_model->extension.workstation.get_storage_list(workstation); +} + /* Returns whether a task can start now on a workstation*/ /* int __SD_workstation_can_start(SD_workstation_t workstation, SD_task_t task) { diff --git a/src/simix/smx_io.c b/src/simix/smx_io.c index dd52bf1d47..e572e3a5bb 100644 --- a/src/simix/smx_io.c +++ b/src/simix/smx_io.c @@ -15,6 +15,26 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_io, simix, "Logging specific to SIMIX (io)"); +void* SIMIX_pre_file_get_data(smx_simcall_t simcall,smx_file_t fd){ + return SIMIX_file_get_data(fd); +} + +void* SIMIX_file_get_data(smx_file_t fd){ + xbt_assert((fd != NULL), "Invalid parameters (simix file is NULL)"); + + return fd->data; +} + +void SIMIX_pre_file_set_data(smx_simcall_t simcall, smx_file_t fd, void *data) { + SIMIX_file_set_data(fd, data); +} + +void SIMIX_file_set_data(smx_file_t fd, void *data){ + xbt_assert((fd != NULL), "Invalid parameter"); + + fd->data = data; +} + //SIMIX FILE READ void SIMIX_pre_file_read(smx_simcall_t simcall, size_t size, smx_file_t fd) diff --git a/src/simix/smx_io_private.h b/src/simix/smx_io_private.h index 8b3be6af63..76396fa695 100644 --- a/src/simix/smx_io_private.h +++ b/src/simix/smx_io_private.h @@ -10,6 +10,8 @@ #include "simgrid/simix.h" #include "smx_smurf_private.h" +void* SIMIX_pre_file_get_data(smx_simcall_t simcall,smx_file_t fd); +void SIMIX_pre_file_set_data(smx_simcall_t simcall, smx_file_t fd, void *data); void SIMIX_pre_file_read(smx_simcall_t simcall, size_t size, smx_file_t fd); void SIMIX_pre_file_write(smx_simcall_t simcall, size_t size, smx_file_t fd); void SIMIX_pre_file_open(smx_simcall_t simcall, const char* mount, @@ -21,6 +23,8 @@ void SIMIX_pre_file_ls(smx_simcall_t simcall, size_t SIMIX_pre_file_get_size(smx_simcall_t simcall, smx_file_t fd); xbt_dynar_t SIMIX_pre_file_get_info(smx_simcall_t simcall, smx_file_t fd); +void* SIMIX_file_get_data(smx_file_t fd); +void SIMIX_file_set_data(smx_file_t fd, void *data); smx_action_t SIMIX_file_read(smx_process_t process, size_t size, smx_file_t fd); smx_action_t SIMIX_file_write(smx_process_t process, size_t size, diff --git a/src/simix/smx_network.c b/src/simix/smx_network.c index 3be4eb5bec..f8f4ffe649 100644 --- a/src/simix/smx_network.c +++ b/src/simix/smx_network.c @@ -31,7 +31,7 @@ void SIMIX_network_init(void) { rdv_points = xbt_dict_new_homogeneous(SIMIX_rdv_free); if(MC_is_active()) - MC_ignore_data_bss(&smx_total_comms, sizeof(smx_total_comms)); + MC_ignore_global_variable("smx_total_comms"); } void SIMIX_network_exit(void) diff --git a/src/simix/smx_private.h b/src/simix/smx_private.h index 1875079000..ef7416900b 100644 --- a/src/simix/smx_private.h +++ b/src/simix/smx_private.h @@ -73,6 +73,7 @@ extern xbt_dict_t watched_hosts_lib; /* ******************************** File ************************************ */ typedef struct s_smx_file { surf_file_t surf_file; + void* data; /**< @brief user data */ } s_smx_file_t; /* ******************************** Storage ************************************ */ diff --git a/src/simix/smx_smurf_private.h b/src/simix/smx_smurf_private.h index 9e6bc2f40e..9669242dba 100644 --- a/src/simix/smx_smurf_private.h +++ b/src/simix/smx_smurf_private.h @@ -347,6 +347,8 @@ ACTION(SIMCALL_SEM_WOULD_BLOCK, sem_would_block, WITH_ANSWER, TINT(result), TSPE ACTION(SIMCALL_SEM_ACQUIRE, sem_acquire, WITHOUT_ANSWER, TVOID(result), TSPEC(sem, smx_sem_t)) sep \ ACTION(SIMCALL_SEM_ACQUIRE_TIMEOUT, sem_acquire_timeout, WITHOUT_ANSWER, TVOID(result), TSPEC(sem, smx_sem_t), TDOUBLE(timeout)) sep \ ACTION(SIMCALL_SEM_GET_CAPACITY, sem_get_capacity, WITH_ANSWER, TINT(result), TSPEC(sem, smx_sem_t)) sep \ +ACTION(SIMCALL_FILE_GET_DATA, file_get_data, WITH_ANSWER, TPTR(result), TSPEC(fd, smx_file_t)) sep \ +ACTION(SIMCALL_FILE_SET_DATA, file_set_data, WITH_ANSWER, TVOID(result), TSPEC(fd, smx_file_t), TPTR(data)) sep \ ACTION(SIMCALL_FILE_READ, file_read, WITHOUT_ANSWER, TSIZE(result), TSIZE(size), TSPEC(fd, smx_file_t)) sep \ ACTION(SIMCALL_FILE_WRITE, file_write, WITHOUT_ANSWER, TSIZE(result), TSIZE(size), TSPEC(fd, smx_file_t)) sep \ ACTION(SIMCALL_FILE_OPEN, file_open, WITHOUT_ANSWER, TSPEC(result, smx_file_t), TSTRING(mount), TSTRING(path)) sep \ @@ -379,7 +381,7 @@ ACTION(SIMCALL_SET_CATEGORY, set_category, WITH_ANSWER, TVOID(result), TSPEC(act #define SIMCALL_LIST4(ACTION, sep) \ ACTION(SIMCALL_MC_SNAPSHOT, mc_snapshot, WITH_ANSWER, TPTR(result)) sep \ ACTION(SIMCALL_MC_COMPARE_SNAPSHOTS, mc_compare_snapshots, WITH_ANSWER, TINT(result), TPTR(s1), TPTR(s2)) sep \ -ACTION(SIMCALL_MC_RANDOM, mc_random, WITH_ANSWER, TINT(result)) sep +ACTION(SIMCALL_MC_RANDOM, mc_random, WITH_ANSWER, TINT(result), TINT(min), TINT(max)) sep #else #define SIMCALL_LIST4(ACTION, sep) #endif diff --git a/src/simix/smx_user.c b/src/simix/smx_user.c index baeed99bf2..0c02e5e001 100644 --- a/src/simix/smx_user.c +++ b/src/simix/smx_user.c @@ -1174,6 +1174,30 @@ int simcall_sem_get_capacity(smx_sem_t sem) return simcall_BODY_sem_get_capacity(sem); } +/** + * \ingroup simix_file_management + * \brief Returns the user data associated to a file. + * + * \param fd A simix file + * \return the user data of this file + */ +void* simcall_file_get_data(smx_file_t fd) +{ + return simcall_BODY_file_get_data(fd); +} + +/** + * \ingroup simix_file_management + * \brief Sets the user data associated to a file. + * + * \param fd A SIMIX file + * \param data The user data to set + */ +void simcall_file_set_data(smx_file_t fd, void *data) +{ + simcall_file_set_data(fd, data); +} + /** * \ingroup simix_file_management * @@ -1287,9 +1311,9 @@ int simcall_mc_compare_snapshots(void *s1, void *s2){ return simcall_BODY_mc_compare_snapshots(s1, s2); } -int simcall_mc_random(void) +int simcall_mc_random(int min, int max) { - return simcall_BODY_mc_random(); + return simcall_BODY_mc_random(min, max); } diff --git a/src/smpi/colls/colls.h b/src/smpi/colls/colls.h index 67b62a04ac..a2091b10e2 100644 --- a/src/smpi/colls/colls.h +++ b/src/smpi/colls/colls.h @@ -33,7 +33,8 @@ COLL_APPLY(action, COLL_GATHER_SIG, ompi) COLL_sep \ COLL_APPLY(action, COLL_GATHER_SIG, ompi_basic_linear) COLL_sep \ COLL_APPLY(action, COLL_GATHER_SIG, ompi_binomial) COLL_sep \ COLL_APPLY(action, COLL_GATHER_SIG, ompi_linear_sync) COLL_sep \ -COLL_APPLY(action, COLL_GATHER_SIG, mpich) \ +COLL_APPLY(action, COLL_GATHER_SIG, mpich) COLL_sep \ +COLL_APPLY(action, COLL_GATHER_SIG, automatic) @@ -65,7 +66,8 @@ COLL_APPLY(action, COLL_ALLGATHER_SIG, smp_simple) COLL_sep \ COLL_APPLY(action, COLL_ALLGATHER_SIG, spreading_simple) COLL_sep \ COLL_APPLY(action, COLL_ALLGATHER_SIG, ompi) COLL_sep \ COLL_APPLY(action, COLL_ALLGATHER_SIG, ompi_neighborexchange) COLL_sep \ -COLL_APPLY(action, COLL_ALLGATHER_SIG, mpich) +COLL_APPLY(action, COLL_ALLGATHER_SIG, mpich) COLL_sep \ +COLL_APPLY(action, COLL_ALLGATHER_SIG, automatic) COLL_ALLGATHERS(COLL_PROTO, COLL_NOsep) @@ -86,7 +88,8 @@ COLL_APPLY(action, COLL_ALLGATHERV_SIG, ompi) COLL_sep \ COLL_APPLY(action, COLL_ALLGATHERV_SIG, ompi_neighborexchange) COLL_sep \ COLL_APPLY(action, COLL_ALLGATHERV_SIG, ompi_bruck) COLL_sep \ COLL_APPLY(action, COLL_ALLGATHERV_SIG, mpich) COLL_sep \ -COLL_APPLY(action, COLL_ALLGATHERV_SIG, mpich_rdb) +COLL_APPLY(action, COLL_ALLGATHERV_SIG, mpich_rdb) COLL_sep \ +COLL_APPLY(action, COLL_ALLGATHERV_SIG, automatic) COLL_ALLGATHERVS(COLL_PROTO, COLL_NOsep) @@ -115,7 +118,8 @@ COLL_APPLY(action, COLL_ALLREDUCE_SIG, smp_rsag_rab) COLL_sep \ COLL_APPLY(action, COLL_ALLREDUCE_SIG, redbcast) COLL_sep \ COLL_APPLY(action, COLL_ALLREDUCE_SIG, ompi) COLL_sep \ COLL_APPLY(action, COLL_ALLREDUCE_SIG, ompi_ring_segmented) COLL_sep \ -COLL_APPLY(action, COLL_ALLREDUCE_SIG, mpich) +COLL_APPLY(action, COLL_ALLREDUCE_SIG, mpich) COLL_sep \ +COLL_APPLY(action, COLL_ALLREDUCE_SIG, automatic) COLL_ALLREDUCES(COLL_PROTO, COLL_NOsep) @@ -126,7 +130,7 @@ COLL_ALLREDUCES(COLL_PROTO, COLL_NOsep) #define COLL_ALLTOALL_SIG alltoall, int, \ (void *send_buff, int send_count, MPI_Datatype send_type, \ void *recv_buff, int recv_count, MPI_Datatype recv_type, \ - MPI_Comm com) + MPI_Comm comm) #define COLL_ALLTOALLS(action, COLL_sep) \ COLL_APPLY(action, COLL_ALLTOALL_SIG, 2dmesh) COLL_sep \ @@ -143,8 +147,9 @@ COLL_APPLY(action, COLL_ALLTOALL_SIG, ring_mpi_barrier) COLL_sep \ COLL_APPLY(action, COLL_ALLTOALL_SIG, ring_one_barrier) COLL_sep \ COLL_APPLY(action, COLL_ALLTOALL_SIG, simple) COLL_sep \ COLL_APPLY(action, COLL_ALLTOALL_SIG, ompi) COLL_sep \ -COLL_APPLY(action, COLL_ALLTOALL_SIG, mpich)COLL_sep \ -COLL_APPLY(action, COLL_ALLTOALL_SIG, ompi_pairwise) +COLL_APPLY(action, COLL_ALLTOALL_SIG, mpich) COLL_sep \ +COLL_APPLY(action, COLL_ALLTOALL_SIG, ompi_pairwise) COLL_sep \ +COLL_APPLY(action, COLL_ALLTOALL_SIG, automatic) COLL_ALLTOALLS(COLL_PROTO, COLL_NOsep) @@ -154,7 +159,7 @@ COLL_ALLTOALLS(COLL_PROTO, COLL_NOsep) #define COLL_ALLTOALLV_SIG alltoallv, int, \ (void *send_buff, int *send_counts, int *send_disps, MPI_Datatype send_type, \ void *recv_buff, int *recv_counts, int *recv_disps, MPI_Datatype recv_type, \ - MPI_Comm com) + MPI_Comm comm) #define COLL_ALLTOALLVS(action, COLL_sep) \ COLL_APPLY(action, COLL_ALLTOALLV_SIG, bruck) COLL_sep \ @@ -167,8 +172,9 @@ COLL_APPLY(action, COLL_ALLTOALLV_SIG, ring_light_barrier) COLL_sep \ COLL_APPLY(action, COLL_ALLTOALLV_SIG, ring_mpi_barrier) COLL_sep \ COLL_APPLY(action, COLL_ALLTOALLV_SIG, ring_one_barrier) COLL_sep \ COLL_APPLY(action, COLL_ALLTOALLV_SIG, ompi) COLL_sep \ -COLL_APPLY(action, COLL_ALLTOALLV_SIG, mpich)COLL_sep \ -COLL_APPLY(action, COLL_ALLTOALLV_SIG, ompi_basic_linear) +COLL_APPLY(action, COLL_ALLTOALLV_SIG, mpich) COLL_sep \ +COLL_APPLY(action, COLL_ALLTOALLV_SIG, ompi_basic_linear) COLL_sep \ +COLL_APPLY(action, COLL_ALLTOALLV_SIG, automatic) COLL_ALLTOALLVS(COLL_PROTO, COLL_NOsep) @@ -198,7 +204,8 @@ COLL_APPLY(action, COLL_BCAST_SIG, SMP_linear) COLL_sep \ COLL_APPLY(action, COLL_BCAST_SIG, ompi) COLL_sep \ COLL_APPLY(action, COLL_BCAST_SIG, ompi_split_bintree) COLL_sep \ COLL_APPLY(action, COLL_BCAST_SIG, ompi_pipeline) COLL_sep \ -COLL_APPLY(action, COLL_BCAST_SIG, mpich) +COLL_APPLY(action, COLL_BCAST_SIG, mpich) COLL_sep \ +COLL_APPLY(action, COLL_BCAST_SIG, automatic) COLL_BCASTS(COLL_PROTO, COLL_NOsep) @@ -223,7 +230,8 @@ COLL_APPLY(action, COLL_REDUCE_SIG, ompi_basic_linear) COLL_sep \ COLL_APPLY(action, COLL_REDUCE_SIG, ompi_in_order_binary) COLL_sep \ COLL_APPLY(action, COLL_REDUCE_SIG, ompi_binary) COLL_sep \ COLL_APPLY(action, COLL_REDUCE_SIG, ompi_binomial) COLL_sep \ -COLL_APPLY(action, COLL_REDUCE_SIG, mpich) +COLL_APPLY(action, COLL_REDUCE_SIG, mpich) COLL_sep \ +COLL_APPLY(action, COLL_REDUCE_SIG, automatic) COLL_REDUCES(COLL_PROTO, COLL_NOsep) @@ -241,7 +249,9 @@ COLL_APPLY(action, COLL_REDUCE_SCATTER_SIG, ompi_ring) COLL_sep \ COLL_APPLY(action, COLL_REDUCE_SCATTER_SIG, mpich) COLL_sep \ COLL_APPLY(action, COLL_REDUCE_SCATTER_SIG, mpich_pair) COLL_sep \ COLL_APPLY(action, COLL_REDUCE_SCATTER_SIG, mpich_rdb) COLL_sep \ -COLL_APPLY(action, COLL_REDUCE_SCATTER_SIG, mpich_noncomm) +COLL_APPLY(action, COLL_REDUCE_SCATTER_SIG, mpich_noncomm) COLL_sep \ +COLL_APPLY(action, COLL_REDUCE_SCATTER_SIG, automatic) + COLL_REDUCE_SCATTERS(COLL_PROTO, COLL_NOsep) @@ -259,7 +269,8 @@ COLL_REDUCE_SCATTERS(COLL_PROTO, COLL_NOsep) COLL_APPLY(action, COLL_SCATTER_SIG, ompi) COLL_sep \ COLL_APPLY(action, COLL_SCATTER_SIG, ompi_basic_linear) COLL_sep \ COLL_APPLY(action, COLL_SCATTER_SIG, ompi_binomial) COLL_sep \ -COLL_APPLY(action, COLL_SCATTER_SIG, mpich) +COLL_APPLY(action, COLL_SCATTER_SIG, mpich) COLL_sep \ +COLL_APPLY(action, COLL_SCATTER_SIG, automatic) COLL_SCATTERS(COLL_PROTO, COLL_NOsep) @@ -277,7 +288,8 @@ COLL_APPLY(action, COLL_BARRIER_SIG, ompi_tree) COLL_sep \ COLL_APPLY(action, COLL_BARRIER_SIG, ompi_bruck) COLL_sep \ COLL_APPLY(action, COLL_BARRIER_SIG, ompi_recursivedoubling) COLL_sep \ COLL_APPLY(action, COLL_BARRIER_SIG, ompi_doublering) COLL_sep \ -COLL_APPLY(action, COLL_BARRIER_SIG, mpich) +COLL_APPLY(action, COLL_BARRIER_SIG, mpich) COLL_sep \ +COLL_APPLY(action, COLL_BARRIER_SIG, automatic) COLL_BARRIERS(COLL_PROTO, COLL_NOsep) diff --git a/src/smpi/colls/smpi_automatic_selector.c b/src/smpi/colls/smpi_automatic_selector.c new file mode 100644 index 0000000000..192ac0f892 --- /dev/null +++ b/src/smpi/colls/smpi_automatic_selector.c @@ -0,0 +1,63 @@ +#include "colls_private.h" +#include +#include "mc/mc_private.h" + +//attempt to do a quick autotuning version of the collective, + +#define AUTOMATIC_COLL_BENCH(cat, ret, args, args2)\ + ret smpi_coll_tuned_ ## cat ## _ ## automatic(COLL_UNPAREN args)\ +{\ + double time1, time2, time_min=INT_MAX;\ + int min_coll=-1, global_coll=-1;\ + int i;\ + double buf_in, buf_out, max_min=INT_MAX;\ + for (i = 0; mpi_coll_##cat##_description[i].name; i++){\ + if(!strcmp(mpi_coll_##cat##_description[i].name, "automatic"))continue;\ + if(!strcmp(mpi_coll_##cat##_description[i].name, "default"))continue;\ + smpi_mpi_barrier(comm);\ + if (TRACE_is_enabled()){\ + type_t type = PJ_type_get_or_null (#cat, PJ_type_get_root());\ + if (!type){\ + type=PJ_type_event_new(#cat, PJ_type_get_root());\ + }\ + char* cont_name=malloc(25*sizeof(char*));\ + sprintf(cont_name, "rank-%d", smpi_process_index());\ + val_t value = PJ_value_get_or_new(mpi_coll_##cat##_description[i].name,"1.0 1.0 1.0", type);\ + new_pajeNewEvent (SIMIX_get_clock(), PJ_container_get(cont_name), type, value);\ + }\ + time1 = SIMIX_get_clock();\ + ((int (*) args)\ + mpi_coll_##cat##_description[i].coll) args2 ;\ + time2 = SIMIX_get_clock();\ + buf_out=time2-time1;\ + smpi_mpi_reduce((void*)&buf_out,(void*)&buf_in, 1, MPI_DOUBLE, MPI_MAX, 0,comm );\ + if(time2-time1 #include @@ -88,9 +87,6 @@ static char *TRACE_smpi_put_key(int src, int dst, char *key, int n) } //generate the key static unsigned long long counter = 0; - - if(MC_is_active()) - MC_ignore_data_bss(&counter, sizeof(counter)); snprintf(key, n, "%d_%d_%llu", src, dst, counter++); diff --git a/src/smpi/private.h b/src/smpi/private.h index 0a63808f69..864cb33359 100644 --- a/src/smpi/private.h +++ b/src/smpi/private.h @@ -458,6 +458,7 @@ void mpi_errhandler_free_ (void* errhandler, int* ierr) ; void mpi_errhandler_get_ (int* comm, void* errhandler, int* ierr) ; void mpi_errhandler_set_ (int* comm, void* errhandler, int* ierr) ; void mpi_comm_set_errhandler_ (int* comm, void* errhandler, int* ierr) ; +void mpi_comm_get_errhandler_ (int* comm, void* errhandler, int* ierr) ; void mpi_type_contiguous_ (int* count, int* old_type, int* newtype, int* ierr) ; void mpi_cancel_ (int* request, int* ierr) ; void mpi_buffer_attach_ (void* buffer, int* size, int* ierr) ; diff --git a/src/smpi/smpi_f77.c b/src/smpi/smpi_f77.c index dbd1895a8e..a74500b8d6 100644 --- a/src/smpi/smpi_f77.c +++ b/src/smpi/smpi_f77.c @@ -25,6 +25,8 @@ static int running_processes = 0; /* Convert between Fortran and C MPI_BOTTOM */ #define F2C_BOTTOM(addr) ((addr!=MPI_IN_PLACE && *(int*)addr == MPI_FORTRAN_BOTTOM) ? MPI_BOTTOM : (addr)) #define F2C_IN_PLACE(addr) ((addr!=MPI_BOTTOM &&*(int*)addr == MPI_FORTRAN_IN_PLACE) ? MPI_IN_PLACE : (addr)) +#define F2C_STATUS_IGNORE(addr) ((*(int*)addr == MPI_FORTRAN_STATUS_IGNORE) ? MPI_STATUS_IGNORE : (addr)) +#define F2C_STATUSES_IGNORE(addr) ((*(int*)addr == MPI_FORTRAN_STATUSES_IGNORE) ? MPI_STATUSES_IGNORE : (addr)) #define KEY_SIZE (sizeof(int) * 2 + 1) @@ -353,7 +355,7 @@ void mpi_sendrecv_(void* sendbuf, int* sendcount, int* sendtype, int* dst, int* comm, MPI_Status* status, int* ierr) { *ierr = MPI_Sendrecv(sendbuf, *sendcount, get_datatype(*sendtype), *dst, *sendtag, recvbuf, *recvcount,get_datatype(*recvtype), *src, *recvtag, - get_comm(*comm), status); + get_comm(*comm), F2C_STATUS_IGNORE(status)); } void mpi_recv_init_(void *buf, int* count, int* datatype, int* src, int* tag, @@ -405,7 +407,7 @@ void mpi_startall_(int* count, int* requests, int* ierr) { void mpi_wait_(int* request, MPI_Status* status, int* ierr) { MPI_Request req = find_request(*request); - *ierr = MPI_Wait(&req, status); + *ierr = MPI_Wait(&req, F2C_STATUS_IGNORE(status)); if(req==MPI_REQUEST_NULL){ free_request(*request); *request=MPI_FORTRAN_REQUEST_NULL; @@ -436,7 +438,7 @@ void mpi_waitall_(int* count, int* requests, MPI_Status* status, int* ierr) { for(i = 0; i < *count; i++) { reqs[i] = find_request(requests[i]); } - *ierr = MPI_Waitall(*count, reqs, status); + *ierr = MPI_Waitall(*count, reqs, F2C_STATUSES_IGNORE(status)); for(i = 0; i < *count; i++) { if(reqs[i]==MPI_REQUEST_NULL){ free_request(requests[i]); @@ -551,7 +553,7 @@ void mpi_alltoallv_(void* sendbuf, int* sendcounts, int* senddisps, int* sendtyp void mpi_test_ (int * request, int *flag, MPI_Status * status, int* ierr){ MPI_Request req = find_request(*request); - *ierr= MPI_Test(&req, flag, status); + *ierr= MPI_Test(&req, flag, F2C_STATUS_IGNORE(status)); if(req==MPI_REQUEST_NULL){ free_request(*request); *request=MPI_FORTRAN_REQUEST_NULL; @@ -566,7 +568,7 @@ void mpi_testall_ (int* count, int * requests, int *flag, MPI_Status * statuses for(i = 0; i < *count; i++) { reqs[i] = find_request(requests[i]); } - *ierr= MPI_Testall(*count, reqs, flag, statuses); + *ierr= MPI_Testall(*count, reqs, flag, F2C_STATUSES_IGNORE(statuses)); for(i = 0; i < *count; i++) { if(reqs[i]==MPI_REQUEST_NULL){ free_request(requests[i]); @@ -581,7 +583,7 @@ void mpi_get_processor_name_(char *name, int *resultlen, int* ierr){ } void mpi_get_count_(MPI_Status * status, int* datatype, int *count, int* ierr){ - *ierr = MPI_Get_count(status, get_datatype(*datatype), count); + *ierr = MPI_Get_count(F2C_STATUS_IGNORE(status), get_datatype(*datatype), count); } void mpi_attr_get_(int* comm, int* keyval, void* attr_value, int* flag, int* ierr ){ @@ -966,7 +968,7 @@ void mpi_sendrecv_replace_ (void *buf, int* count, int* datatype, int* dst, int* { *ierr = MPI_Sendrecv_replace(buf, *count, get_datatype(*datatype), *dst, *sendtag, *src, - *recvtag, get_comm(*comm), status); + *recvtag, get_comm(*comm), F2C_STATUS_IGNORE(status)); } void mpi_testany_ (int* count, int* requests, int *index, int *flag, MPI_Status* status, int* ierr) @@ -978,7 +980,7 @@ void mpi_testany_ (int* count, int* requests, int *index, int *flag, MPI_Status* for(i = 0; i < *count; i++) { reqs[i] = find_request(requests[i]); } - *ierr = MPI_Testany(*count, reqs, index, flag, status); + *ierr = MPI_Testany(*count, reqs, index, flag, F2C_STATUS_IGNORE(status)); if(*index!=MPI_UNDEFINED) if(reqs[*index]==MPI_REQUEST_NULL){ free_request(requests[*index]); @@ -1117,6 +1119,10 @@ void mpi_comm_set_errhandler_ (int* comm, void* errhandler, int* ierr) { *ierr = MPI_Errhandler_set(get_comm(*comm), *(MPI_Errhandler*)errhandler); } +void mpi_comm_get_errhandler_ (int* comm, void* errhandler, int* ierr) { + *ierr = MPI_Errhandler_set(get_comm(*comm), (MPI_Errhandler*)errhandler); +} + void mpi_type_contiguous_ (int* count, int* old_type, int* newtype, int* ierr) { MPI_Datatype tmp; *ierr = MPI_Type_contiguous(*count, get_datatype(*old_type), &tmp); @@ -1150,7 +1156,7 @@ void mpi_testsome_ (int* incount, int* requests, int* outcount, int* indices, M reqs[i] = find_request(requests[i]); indices[i]=0; } - *ierr = MPI_Testsome(*incount, reqs, outcount, indices, statuses); + *ierr = MPI_Testsome(*incount, reqs, outcount, indices, F2C_STATUSES_IGNORE(statuses)); for(i=0;i<*incount;i++){ if(indices[i]){ if(reqs[indices[i]]==MPI_REQUEST_NULL){ @@ -1307,7 +1313,7 @@ void mpi_issend_ (void* buf, int* count, int* datatype, int *dest, int* tag, int } void mpi_probe_ (int* source, int* tag, int* comm, MPI_Status* status, int* ierr) { - *ierr = MPI_Probe(*source, *tag, get_comm(*comm), status); + *ierr = MPI_Probe(*source, *tag, get_comm(*comm), F2C_STATUS_IGNORE(status)); } void mpi_attr_delete_ (int* comm, int* keyval, int* ierr) { diff --git a/src/smpi/smpi_global.c b/src/smpi/smpi_global.c index 27a53de486..1c5039687f 100644 --- a/src/smpi/smpi_global.c +++ b/src/smpi/smpi_global.c @@ -120,7 +120,7 @@ int smpi_process_initialized(void) void smpi_process_mark_as_initialized(void) { int index = smpi_process_index(); - if(index != -100)process_data[index]->initialized=1; + if((index != -100)&& (index!=MPI_UNDEFINED))process_data[index]->initialized=1; } @@ -281,6 +281,8 @@ void smpi_global_init(void) process_data[i]->mailbox = simcall_rdv_create(get_mailbox_name(name, i)); process_data[i]->mailbox_small = simcall_rdv_create(get_mailbox_name_small(name, i)); process_data[i]->timer = xbt_os_timer_new(); + if(MC_is_active()) + MC_ignore_heap(process_data[i]->timer, xbt_os_timer_size()); group = smpi_group_new(1); process_data[i]->comm_self = smpi_comm_new(group); process_data[i]->initialized =0; @@ -466,7 +468,7 @@ int smpi_main(int (*realmain) (int argc, char *argv[]),int argc, char *argv[]) fflush(stderr); if (MC_is_active()) - MC_modelcheck_safety(); + MC_do_the_modelcheck_for_real(); else SIMIX_run(); diff --git a/src/smpi/smpi_group.c b/src/smpi/smpi_group.c index e88ffa1460..98c1386133 100644 --- a/src/smpi/smpi_group.c +++ b/src/smpi/smpi_group.c @@ -75,7 +75,6 @@ MPI_Group smpi_group_copy(MPI_Group origin) void smpi_group_destroy(MPI_Group group) { - XBT_VERB("trying to free group %p, refcount = %d", group, group->refcount); if(group!= smpi_comm_group(MPI_COMM_WORLD) && group != MPI_GROUP_NULL && group != smpi_comm_group(MPI_COMM_SELF) @@ -121,7 +120,6 @@ int smpi_group_unuse(MPI_Group group) { group->refcount--; if (group->refcount <= 0) { - XBT_VERB("freeing group %p", group); xbt_free(group->rank_to_index_map); xbt_free(group->index_to_rank_map); xbt_free(group); diff --git a/src/smpi/smpi_mpi.c b/src/smpi/smpi_mpi.c index c3dd85ed92..433668d8bd 100644 --- a/src/smpi/smpi_mpi.c +++ b/src/smpi/smpi_mpi.c @@ -615,6 +615,10 @@ int MPI_Comm_set_errhandler(MPI_Comm comm, MPI_Errhandler errhandler) { return PMPI_Errhandler_set(comm, errhandler); } +int MPI_Comm_get_errhandler(MPI_Comm comm, MPI_Errhandler* errhandler) { + return PMPI_Errhandler_set(comm, errhandler); +} + int MPI_Type_contiguous(int count, MPI_Datatype old_type, MPI_Datatype* newtype) { return PMPI_Type_contiguous(count, old_type, newtype); } diff --git a/src/smpi/smpi_mpi_dt.c b/src/smpi/smpi_mpi_dt.c index 0db4d81a21..628b9805de 100644 --- a/src/smpi/smpi_mpi_dt.c +++ b/src/smpi/smpi_mpi_dt.c @@ -13,6 +13,8 @@ #include "private.h" #include "smpi_mpi_dt_private.h" +#include "mc/mc.h" +#include "simgrid/modelchecker.h" XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_mpi_dt, smpi, "Logging specific to SMPI (datatype)"); @@ -299,6 +301,11 @@ void smpi_datatype_create(MPI_Datatype* new_type, int size,int lb, int ub, int h new_t->substruct = struct_type; new_t->in_use=0; *new_type = new_t; + +#ifdef HAVE_MC + if(MC_is_active()) + MC_ignore(&(new_t->in_use), sizeof(new_t->in_use)); +#endif } void smpi_datatype_free(MPI_Datatype* type){ @@ -321,12 +328,22 @@ void smpi_datatype_free(MPI_Datatype* type){ void smpi_datatype_use(MPI_Datatype type){ if(type)type->in_use++; + +#ifdef HAVE_MC + if(MC_is_active()) + MC_ignore(&(type->in_use), sizeof(type->in_use)); +#endif } void smpi_datatype_unuse(MPI_Datatype type){ if(type && type->in_use-- == 0 && (type->flags & DT_FLAG_DESTROYED)) smpi_datatype_free(&type); + +#ifdef HAVE_MC + if(MC_is_active()) + MC_ignore(&(type->in_use), sizeof(type->in_use)); +#endif } diff --git a/src/smpi/smpi_pmpi.c b/src/smpi/smpi_pmpi.c index b753958433..d7fed42d75 100644 --- a/src/smpi/smpi_pmpi.c +++ b/src/smpi/smpi_pmpi.c @@ -83,7 +83,7 @@ int PMPI_Init_thread(int *argc, char ***argv, int required, int *provided) int PMPI_Query_thread(int *provided) { - int retval; + int retval = 0; smpi_bench_end(); if (provided == NULL) { @@ -98,7 +98,7 @@ int PMPI_Query_thread(int *provided) int PMPI_Is_thread_main(int *flag) { - int retval; + int retval = 0; smpi_bench_end(); if (flag == NULL) { @@ -141,7 +141,7 @@ double PMPI_Wtick(void) int PMPI_Address(void *location, MPI_Aint * address) { - int retval; + int retval = 0; smpi_bench_end(); if (!address) { @@ -161,7 +161,7 @@ int PMPI_Get_address(void *location, MPI_Aint * address) int PMPI_Type_free(MPI_Datatype * datatype) { - int retval; + int retval = 0; smpi_bench_end(); if (!datatype) { @@ -176,7 +176,7 @@ int PMPI_Type_free(MPI_Datatype * datatype) int PMPI_Type_size(MPI_Datatype datatype, int *size) { - int retval; + int retval = 0; smpi_bench_end(); if (datatype == MPI_DATATYPE_NULL) { @@ -193,7 +193,7 @@ int PMPI_Type_size(MPI_Datatype datatype, int *size) int PMPI_Type_get_extent(MPI_Datatype datatype, MPI_Aint * lb, MPI_Aint * extent) { - int retval; + int retval = 0; smpi_bench_end(); if (datatype == MPI_DATATYPE_NULL) { @@ -214,7 +214,7 @@ int PMPI_Type_get_true_extent(MPI_Datatype datatype, MPI_Aint * lb, MPI_Aint * e int PMPI_Type_extent(MPI_Datatype datatype, MPI_Aint * extent) { - int retval; + int retval = 0; smpi_bench_end(); if (datatype == MPI_DATATYPE_NULL) { @@ -231,7 +231,7 @@ int PMPI_Type_extent(MPI_Datatype datatype, MPI_Aint * extent) int PMPI_Type_lb(MPI_Datatype datatype, MPI_Aint * disp) { - int retval; + int retval = 0; smpi_bench_end(); if (datatype == MPI_DATATYPE_NULL) { @@ -248,7 +248,7 @@ int PMPI_Type_lb(MPI_Datatype datatype, MPI_Aint * disp) int PMPI_Type_ub(MPI_Datatype datatype, MPI_Aint * disp) { - int retval; + int retval = 0; smpi_bench_end(); if (datatype == MPI_DATATYPE_NULL) { @@ -265,7 +265,7 @@ int PMPI_Type_ub(MPI_Datatype datatype, MPI_Aint * disp) int PMPI_Op_create(MPI_User_function * function, int commute, MPI_Op * op) { - int retval; + int retval = 0; smpi_bench_end(); if (function == NULL || op == NULL) { @@ -280,7 +280,7 @@ int PMPI_Op_create(MPI_User_function * function, int commute, MPI_Op * op) int PMPI_Op_free(MPI_Op * op) { - int retval; + int retval = 0; smpi_bench_end(); if (op == NULL) { @@ -298,7 +298,7 @@ int PMPI_Op_free(MPI_Op * op) int PMPI_Group_free(MPI_Group * group) { - int retval; + int retval = 0; smpi_bench_end(); if (group == NULL) { @@ -314,7 +314,7 @@ int PMPI_Group_free(MPI_Group * group) int PMPI_Group_size(MPI_Group group, int *size) { - int retval; + int retval = 0; smpi_bench_end(); if (group == MPI_GROUP_NULL) { @@ -331,7 +331,7 @@ int PMPI_Group_size(MPI_Group group, int *size) int PMPI_Group_rank(MPI_Group group, int *rank) { - int retval; + int retval = 0; smpi_bench_end(); if (group == MPI_GROUP_NULL) { @@ -370,7 +370,7 @@ int PMPI_Group_translate_ranks(MPI_Group group1, int n, int *ranks1, int PMPI_Group_compare(MPI_Group group1, MPI_Group group2, int *result) { - int retval; + int retval = 0; smpi_bench_end(); if (group1 == MPI_GROUP_NULL || group2 == MPI_GROUP_NULL) { @@ -717,7 +717,7 @@ int PMPI_Group_range_excl(MPI_Group group, int n, int ranges[][3], int PMPI_Comm_rank(MPI_Comm comm, int *rank) { - int retval; + int retval = 0; smpi_bench_end(); if (comm == MPI_COMM_NULL) { @@ -734,7 +734,7 @@ int PMPI_Comm_rank(MPI_Comm comm, int *rank) int PMPI_Comm_size(MPI_Comm comm, int *size) { - int retval; + int retval = 0; smpi_bench_end(); if (comm == MPI_COMM_NULL) { @@ -751,7 +751,7 @@ int PMPI_Comm_size(MPI_Comm comm, int *size) int PMPI_Comm_get_name (MPI_Comm comm, char* name, int* len) { - int retval; + int retval = 0; smpi_bench_end(); if (comm == MPI_COMM_NULL) { @@ -768,7 +768,7 @@ int PMPI_Comm_get_name (MPI_Comm comm, char* name, int* len) int PMPI_Comm_group(MPI_Comm comm, MPI_Group * group) { - int retval; + int retval = 0; smpi_bench_end(); if (comm == MPI_COMM_NULL) { @@ -790,7 +790,7 @@ int PMPI_Comm_group(MPI_Comm comm, MPI_Group * group) int PMPI_Comm_compare(MPI_Comm comm1, MPI_Comm comm2, int *result) { - int retval; + int retval = 0; smpi_bench_end(); if (comm1 == MPI_COMM_NULL || comm2 == MPI_COMM_NULL) { @@ -816,7 +816,7 @@ int PMPI_Comm_compare(MPI_Comm comm1, MPI_Comm comm2, int *result) int PMPI_Comm_dup(MPI_Comm comm, MPI_Comm * newcomm) { - int retval; + int retval = 0; smpi_bench_end(); if (comm == MPI_COMM_NULL) { @@ -833,7 +833,7 @@ int PMPI_Comm_dup(MPI_Comm comm, MPI_Comm * newcomm) int PMPI_Comm_create(MPI_Comm comm, MPI_Group group, MPI_Comm * newcomm) { - int retval; + int retval = 0; smpi_bench_end(); if (comm == MPI_COMM_NULL) { @@ -856,7 +856,7 @@ int PMPI_Comm_create(MPI_Comm comm, MPI_Group group, MPI_Comm * newcomm) int PMPI_Comm_free(MPI_Comm * comm) { - int retval; + int retval = 0; smpi_bench_end(); if (comm == NULL) { @@ -875,7 +875,7 @@ int PMPI_Comm_free(MPI_Comm * comm) int PMPI_Comm_disconnect(MPI_Comm * comm) { /* TODO: wait until all communication in comm are done */ - int retval; + int retval = 0; smpi_bench_end(); if (comm == NULL) { @@ -893,7 +893,7 @@ int PMPI_Comm_disconnect(MPI_Comm * comm) int PMPI_Comm_split(MPI_Comm comm, int color, int key, MPI_Comm* comm_out) { - int retval; + int retval = 0; smpi_bench_end(); if (comm_out == NULL) { @@ -911,7 +911,7 @@ int PMPI_Comm_split(MPI_Comm comm, int color, int key, MPI_Comm* comm_out) int PMPI_Send_init(void *buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm, MPI_Request * request) { - int retval; + int retval = 0; smpi_bench_end(); if (request == NULL) { @@ -925,13 +925,14 @@ int PMPI_Send_init(void *buf, int count, MPI_Datatype datatype, int dst, retval = MPI_SUCCESS; } smpi_bench_begin(); + if(retval!=MPI_SUCCESS)*request=MPI_REQUEST_NULL; return retval; } int PMPI_Recv_init(void *buf, int count, MPI_Datatype datatype, int src, int tag, MPI_Comm comm, MPI_Request * request) { - int retval; + int retval = 0; smpi_bench_end(); if (request == NULL) { @@ -945,11 +946,12 @@ int PMPI_Recv_init(void *buf, int count, MPI_Datatype datatype, int src, retval = MPI_SUCCESS; } smpi_bench_begin(); + if(retval!=MPI_SUCCESS)*request=MPI_REQUEST_NULL; return retval; } int PMPI_Ssend_init(void* buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm, MPI_Request* request) { - int retval; + int retval = 0; smpi_bench_end(); if (request == NULL) { @@ -963,12 +965,13 @@ int PMPI_Ssend_init(void* buf, int count, MPI_Datatype datatype, int dst, int ta retval = MPI_SUCCESS; } smpi_bench_begin(); + if(retval!=MPI_SUCCESS)*request=MPI_REQUEST_NULL; return retval; } int PMPI_Start(MPI_Request * request) { - int retval; + int retval = 0; smpi_bench_end(); if (request == NULL || *request == MPI_REQUEST_NULL) { @@ -983,7 +986,7 @@ int PMPI_Start(MPI_Request * request) int PMPI_Startall(int count, MPI_Request * requests) { - int retval; + int retval = 0; smpi_bench_end(); if (requests == NULL) { @@ -998,7 +1001,7 @@ int PMPI_Startall(int count, MPI_Request * requests) int PMPI_Request_free(MPI_Request * request) { - int retval; + int retval = 0; smpi_bench_end(); if (*request == MPI_REQUEST_NULL) { @@ -1015,7 +1018,7 @@ int PMPI_Request_free(MPI_Request * request) int PMPI_Irecv(void *buf, int count, MPI_Datatype datatype, int src, int tag, MPI_Comm comm, MPI_Request * request) { - int retval; + int retval = 0; smpi_bench_end(); @@ -1054,6 +1057,7 @@ int PMPI_Irecv(void *buf, int count, MPI_Datatype datatype, int src, } smpi_bench_begin(); + if(retval!=MPI_SUCCESS)*request=MPI_REQUEST_NULL; return retval; } @@ -1061,7 +1065,7 @@ int PMPI_Irecv(void *buf, int count, MPI_Datatype datatype, int src, int PMPI_Isend(void *buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm, MPI_Request * request) { - int retval; + int retval = 0; smpi_bench_end(); if (request == NULL) { @@ -1102,11 +1106,12 @@ int PMPI_Isend(void *buf, int count, MPI_Datatype datatype, int dst, } smpi_bench_begin(); + if(retval!=MPI_SUCCESS)*request=MPI_REQUEST_NULL; return retval; } int PMPI_Issend(void* buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm, MPI_Request* request) { - int retval; + int retval = 0; smpi_bench_end(); if (request == NULL) { @@ -1147,13 +1152,14 @@ int PMPI_Issend(void* buf, int count, MPI_Datatype datatype, int dst, int tag, M } smpi_bench_begin(); + if(retval!=MPI_SUCCESS)*request=MPI_REQUEST_NULL; return retval; } int PMPI_Recv(void *buf, int count, MPI_Datatype datatype, int src, int tag, MPI_Comm comm, MPI_Status * status) { - int retval; + int retval = 0; smpi_bench_end(); if (comm == MPI_COMM_NULL) { @@ -1200,7 +1206,7 @@ int PMPI_Recv(void *buf, int count, MPI_Datatype datatype, int src, int tag, int PMPI_Send(void *buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm) { - int retval; + int retval = 0; smpi_bench_end(); @@ -1244,7 +1250,7 @@ int PMPI_Send(void *buf, int count, MPI_Datatype datatype, int dst, int tag, int PMPI_Ssend(void* buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm) { - int retval; + int retval = 0; smpi_bench_end(); @@ -1290,7 +1296,7 @@ int PMPI_Sendrecv(void *sendbuf, int sendcount, MPI_Datatype sendtype, MPI_Datatype recvtype, int src, int recvtag, MPI_Comm comm, MPI_Status * status) { - int retval; + int retval = 0; smpi_bench_end(); @@ -1346,7 +1352,7 @@ int PMPI_Sendrecv_replace(void *buf, int count, MPI_Datatype datatype, { //TODO: suboptimal implementation void *recvbuf; - int retval; + int retval = 0; if (datatype == MPI_DATATYPE_NULL) { retval = MPI_ERR_TYPE; } else if (count < 0) { @@ -1368,7 +1374,7 @@ int PMPI_Sendrecv_replace(void *buf, int count, MPI_Datatype datatype, int PMPI_Test(MPI_Request * request, int *flag, MPI_Status * status) { - int retval; + int retval = 0; smpi_bench_end(); if (request == MPI_REQUEST_NULL || flag == NULL) { @@ -1387,7 +1393,7 @@ int PMPI_Test(MPI_Request * request, int *flag, MPI_Status * status) int PMPI_Testany(int count, MPI_Request requests[], int *index, int *flag, MPI_Status * status) { - int retval; + int retval = 0; smpi_bench_end(); if (index == NULL || flag == NULL) { @@ -1402,7 +1408,7 @@ int PMPI_Testany(int count, MPI_Request requests[], int *index, int *flag, int PMPI_Testall(int count, MPI_Request* requests, int* flag, MPI_Status* statuses) { - int retval; + int retval = 0; smpi_bench_end(); if (flag == NULL) { @@ -1416,7 +1422,7 @@ int PMPI_Testall(int count, MPI_Request* requests, int* flag, MPI_Status* status } int PMPI_Probe(int source, int tag, MPI_Comm comm, MPI_Status* status) { - int retval; + int retval = 0; smpi_bench_end(); if (status == NULL) { @@ -1437,7 +1443,7 @@ int PMPI_Probe(int source, int tag, MPI_Comm comm, MPI_Status* status) { int PMPI_Iprobe(int source, int tag, MPI_Comm comm, int* flag, MPI_Status* status) { - int retval; + int retval = 0; smpi_bench_end(); if (flag == NULL) { @@ -1461,7 +1467,7 @@ int PMPI_Iprobe(int source, int tag, MPI_Comm comm, int* flag, MPI_Status* statu int PMPI_Wait(MPI_Request * request, MPI_Status * status) { - int retval; + int retval = 0; smpi_bench_end(); @@ -1508,7 +1514,7 @@ int PMPI_Wait(MPI_Request * request, MPI_Status * status) int PMPI_Waitany(int count, MPI_Request requests[], int *index, MPI_Status * status) { - int retval; + int retval = 0; smpi_bench_end(); #ifdef HAVE_TRACING @@ -1549,7 +1555,7 @@ int PMPI_Waitany(int count, MPI_Request requests[], int *index, MPI_Status * sta if (is_wait_for_receive) { if(srcs[*index]==MPI_ANY_SOURCE) src_traced = (status!=MPI_STATUSES_IGNORE) ? - smpi_group_rank(smpi_comm_group(comms[*index]), status[*index].MPI_SOURCE) : + smpi_group_rank(smpi_comm_group(comms[*index]), status->MPI_SOURCE) : srcs[*index]; TRACE_smpi_recv(rank_traced, src_traced, dst_traced); } @@ -1631,7 +1637,7 @@ int PMPI_Waitall(int count, MPI_Request requests[], MPI_Status status[]) int PMPI_Waitsome(int incount, MPI_Request requests[], int *outcount, int *indices, MPI_Status status[]) { - int retval; + int retval = 0; smpi_bench_end(); if (outcount == NULL) { @@ -1647,7 +1653,7 @@ int PMPI_Waitsome(int incount, MPI_Request requests[], int *outcount, int PMPI_Testsome(int incount, MPI_Request requests[], int* outcount, int* indices, MPI_Status status[]) { - int retval; + int retval = 0; smpi_bench_end(); if (outcount == NULL) { @@ -1663,7 +1669,7 @@ int PMPI_Testsome(int incount, MPI_Request requests[], int* outcount, int PMPI_Bcast(void *buf, int count, MPI_Datatype datatype, int root, MPI_Comm comm) { - int retval; + int retval = 0; smpi_bench_end(); #ifdef HAVE_TRACING @@ -1688,7 +1694,7 @@ int PMPI_Bcast(void *buf, int count, MPI_Datatype datatype, int root, MPI_Comm c int PMPI_Barrier(MPI_Comm comm) { - int retval; + int retval = 0; smpi_bench_end(); #ifdef HAVE_TRACING @@ -1714,7 +1720,7 @@ int PMPI_Gather(void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm) { - int retval; + int retval = 0; smpi_bench_end(); #ifdef HAVE_TRACING @@ -1759,7 +1765,7 @@ int PMPI_Gatherv(void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int *recvcounts, int *displs, MPI_Datatype recvtype, int root, MPI_Comm comm) { - int retval; + int retval = 0; smpi_bench_end(); #ifdef HAVE_TRACING @@ -1803,7 +1809,7 @@ int PMPI_Allgather(void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm) { - int retval; + int retval = 0; smpi_bench_end(); #ifdef HAVE_TRACING @@ -1842,7 +1848,7 @@ int PMPI_Allgatherv(void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int *recvcounts, int *displs, MPI_Datatype recvtype, MPI_Comm comm) { - int retval; + int retval = 0; smpi_bench_end(); #ifdef HAVE_TRACING @@ -1883,7 +1889,7 @@ int PMPI_Scatter(void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm) { - int retval; + int retval = 0; smpi_bench_end(); #ifdef HAVE_TRACING @@ -1919,7 +1925,7 @@ int PMPI_Scatterv(void *sendbuf, int *sendcounts, int *displs, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm) { - int retval; + int retval = 0; smpi_bench_end(); #ifdef HAVE_TRACING @@ -1955,7 +1961,7 @@ int PMPI_Scatterv(void *sendbuf, int *sendcounts, int *displs, int PMPI_Reduce(void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, int root, MPI_Comm comm) { - int retval; + int retval = 0; smpi_bench_end(); #ifdef HAVE_TRACING @@ -1984,7 +1990,7 @@ int PMPI_Reduce(void *sendbuf, void *recvbuf, int count, int PMPI_Reduce_local(void *inbuf, void *inoutbuf, int count, MPI_Datatype datatype, MPI_Op op){ - int retval; + int retval = 0; smpi_bench_end(); if (datatype == MPI_DATATYPE_NULL || op == MPI_OP_NULL) { @@ -2000,7 +2006,7 @@ int PMPI_Reduce_local(void *inbuf, void *inoutbuf, int count, int PMPI_Allreduce(void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm) { - int retval; + int retval = 0; smpi_bench_end(); #ifdef HAVE_TRACING @@ -2042,7 +2048,7 @@ int PMPI_Allreduce(void *sendbuf, void *recvbuf, int count, int PMPI_Scan(void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm) { - int retval; + int retval = 0; smpi_bench_end(); #ifdef HAVE_TRACING @@ -2070,7 +2076,7 @@ int PMPI_Scan(void *sendbuf, void *recvbuf, int count, int PMPI_Exscan(void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm){ - int retval; + int retval = 0; smpi_bench_end(); #ifdef HAVE_TRACING @@ -2099,7 +2105,7 @@ int PMPI_Exscan(void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, int PMPI_Reduce_scatter(void *sendbuf, void *recvbuf, int *recvcounts, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm) { - int retval; + int retval = 0; smpi_bench_end(); #ifdef HAVE_TRACING int rank = comm != MPI_COMM_NULL ? smpi_process_index() : -1; @@ -2171,7 +2177,7 @@ int PMPI_Alltoall(void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm) { - int retval; + int retval = 0; smpi_bench_end(); #ifdef HAVE_TRACING @@ -2199,7 +2205,7 @@ int PMPI_Alltoallv(void *sendbuf, int *sendcounts, int *senddisps, MPI_Datatype sendtype, void *recvbuf, int *recvcounts, int *recvdisps, MPI_Datatype recvtype, MPI_Comm comm) { - int retval; + int retval = 0; smpi_bench_end(); #ifdef HAVE_TRACING @@ -2272,7 +2278,7 @@ int PMPI_Get_count(MPI_Status * status, MPI_Datatype datatype, int *count) } int PMPI_Type_contiguous(int count, MPI_Datatype old_type, MPI_Datatype* new_type) { - int retval; + int retval = 0; smpi_bench_end(); if (old_type == MPI_DATATYPE_NULL) { @@ -2287,7 +2293,7 @@ int PMPI_Type_contiguous(int count, MPI_Datatype old_type, MPI_Datatype* new_typ } int PMPI_Type_commit(MPI_Datatype* datatype) { - int retval; + int retval = 0; smpi_bench_end(); if (datatype == MPI_DATATYPE_NULL) { @@ -2302,7 +2308,7 @@ int PMPI_Type_commit(MPI_Datatype* datatype) { int PMPI_Type_vector(int count, int blocklen, int stride, MPI_Datatype old_type, MPI_Datatype* new_type) { - int retval; + int retval = 0; smpi_bench_end(); if (old_type == MPI_DATATYPE_NULL) { @@ -2317,7 +2323,7 @@ int PMPI_Type_vector(int count, int blocklen, int stride, MPI_Datatype old_type, } int PMPI_Type_hvector(int count, int blocklen, MPI_Aint stride, MPI_Datatype old_type, MPI_Datatype* new_type) { - int retval; + int retval = 0; smpi_bench_end(); if (old_type == MPI_DATATYPE_NULL) { @@ -2336,7 +2342,7 @@ int PMPI_Type_create_hvector(int count, int blocklen, MPI_Aint stride, MPI_Datat } int PMPI_Type_indexed(int count, int* blocklens, int* indices, MPI_Datatype old_type, MPI_Datatype* new_type) { - int retval; + int retval = 0; smpi_bench_end(); if (old_type == MPI_DATATYPE_NULL) { @@ -2351,7 +2357,7 @@ int PMPI_Type_indexed(int count, int* blocklens, int* indices, MPI_Datatype old_ } int PMPI_Type_create_indexed(int count, int* blocklens, int* indices, MPI_Datatype old_type, MPI_Datatype* new_type) { - int retval; + int retval = 0; smpi_bench_end(); if (old_type == MPI_DATATYPE_NULL) { @@ -2385,7 +2391,7 @@ int PMPI_Type_create_indexed_block(int count, int blocklength, int* indices, MPI int PMPI_Type_hindexed(int count, int* blocklens, MPI_Aint* indices, MPI_Datatype old_type, MPI_Datatype* new_type) { - int retval; + int retval = 0; smpi_bench_end(); if (old_type == MPI_DATATYPE_NULL) { @@ -2423,7 +2429,7 @@ int PMPI_Type_create_hindexed_block(int count, int blocklength, MPI_Aint* indice int PMPI_Type_struct(int count, int* blocklens, MPI_Aint* indices, MPI_Datatype* old_types, MPI_Datatype* new_type) { - int retval; + int retval = 0; smpi_bench_end(); if (count<0){ @@ -2563,6 +2569,10 @@ int PMPI_Comm_set_errhandler(MPI_Comm comm, MPI_Errhandler errhandler) { NOT_YET_IMPLEMENTED } +int PMPI_Comm_get_errhandler(MPI_Comm comm, MPI_Errhandler* errhandler) { + NOT_YET_IMPLEMENTED +} + int PMPI_Cancel(MPI_Request* request) { NOT_YET_IMPLEMENTED } diff --git a/src/smpi/smpif90.in b/src/smpi/smpif90.in index 9864551d2d..dadde6e732 100644 --- a/src/smpi/smpif90.in +++ b/src/smpi/smpif90.in @@ -1,11 +1,11 @@ #! /bin/bash -CC=@CMAKE_Fortran_Compiler@ +CC=gfortran INCLUDEARGS="@includeflag@" CMAKE_LINKARGS="-L@libdir@" -FFLAGS="-ff2c " +FFLAGS="-ff2c -fno-second-underscore" LINKARGS="-lsimgrid -lm -lgfortran" main_name=main TMPFILE=$(mktemp).f90 @@ -24,8 +24,10 @@ while [ -n "$1" ]; do if [ -z $SRCFILE ] ; then SRCFILE="$ARG" fi + + TMPFILE=${ARG}\_$RANDOM.f90 #replace "program main_name by subroutine user\_main (and the end clause as well)" - sed 's/[[:space:]]*program[[:space:]]*\([a-zA-Z0-9\-\_]*\)/subroutine user\_main /gI' ${ARG} > ${TMPFILE} + sed 's/[[:space:]]*program[[:space:]]*\([a-zA-Z0-9\-\_]*\)/subroutine user\_main /gI;s/[[:space:]]*use[[:space:]]*mpi/\include \"mpif\.h\" /gI' ${ARG} > ${TMPFILE} SRCFILE="${TMPFILE}" CMDLINE="${CMDLINE} ${SRCFILE} " ;; @@ -37,7 +39,7 @@ done CMDLINE="${CC} ${FFLAGS} ${CMDLINE} ${INCLUDEARGS} ${CMAKE_LINKARGS} ${LINKARGS}" -echo "${CMDLINE}" +#echo "${CMDLINE}" ${CMDLINE} if [ -f ${TMPFILE} ];then diff --git a/src/smpi/smpiff.in b/src/smpi/smpiff.in index 7fd89c8a6c..301802c2f9 100644 --- a/src/smpi/smpiff.in +++ b/src/smpi/smpiff.in @@ -30,10 +30,10 @@ if [ -n "${SRCFILES}" ] then for SRCFILE in "${SRCFILES}" do - TMPFILE=$(mktemp -p .).f + TMPFILE=${SRCFILE}\_$RANDOM.f cp ${SRCFILE} ${TMPFILE} CFILE="${TMPFILE%.f}.c" - #echo "$prefix/bin/smpif2c ${SRCFILE} && $prefix/bin/smpicc ${ARGS} ${CFILE} && rm ${CFILE}" + #echo "$prefix/bin/smpif2c ${TMPFILE} && $prefix/bin/smpicc ${ARGS} ${CFILE} && rm ${CFILE} && rm ${TMPFILE}" $prefix/bin/smpif2c ${TMPFILE} && $prefix/bin/smpicc ${ARGS} ${CFILE} && rm ${CFILE} && rm ${TMPFILE} done else diff --git a/src/surf/instr_routing.c b/src/surf/instr_routing.c index 88c5596c01..63b21007a9 100644 --- a/src/surf/instr_routing.c +++ b/src/surf/instr_routing.c @@ -5,7 +5,6 @@ * under the terms of the license (GNU LGPL) which comes with this package. */ #include "instr/instr_private.h" -#include "mc/mc.h" #ifdef HAVE_TRACING #include "surf/surf_private.h" @@ -117,9 +116,6 @@ static void linkContainers (container_t src, container_t dst, xbt_dict_t filter) //create the link static long long counter = 0; - if(MC_is_active()) - MC_ignore_data_bss(&counter, sizeof(counter)); - char key[INSTR_DEFAULT_STR_SIZE]; snprintf (key, INSTR_DEFAULT_STR_SIZE, "%lld", counter++); new_pajeStartLink(SIMIX_get_clock(), father, link_type, src, "topology", key); diff --git a/src/surf/workstation.c b/src/surf/workstation.c index 5cc0873ab8..ba36abacde 100644 --- a/src/surf/workstation.c +++ b/src/surf/workstation.c @@ -369,14 +369,14 @@ static xbt_dynar_t ws_get_storage_list(void *workstation) { s_mount_t mnt; unsigned int i; - xbt_dynar_t storage_list = xbt_dynar_new(sizeof(void*), NULL); + xbt_dynar_t storage_list = xbt_dynar_new(sizeof(char*), NULL); workstation_CLM03_t ws = (workstation_CLM03_t) surf_workstation_resource_priv(workstation); xbt_dynar_t storages = ws->storage; xbt_dynar_foreach(storages,i,mnt) { - xbt_dynar_push_as(storage_list, char*, mnt.name); + xbt_dynar_push(storage_list, &mnt.name); } return storage_list; } diff --git a/src/xbt/mmalloc/mm_diff.c b/src/xbt/mmalloc/mm_diff.c index adf6b2e780..d1f021a0a8 100644 --- a/src/xbt/mmalloc/mm_diff.c +++ b/src/xbt/mmalloc/mm_diff.c @@ -9,6 +9,7 @@ #include "xbt/str.h" #include "mc/mc.h" #include "xbt/mmalloc.h" +#include "mc/datatypes.h" XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mm_diff, xbt, "Logging specific to mm_diff in mmalloc"); @@ -17,22 +18,11 @@ xbt_dynar_t mc_heap_comparison_ignore; xbt_dynar_t stacks_areas; void *maestro_stack_start, *maestro_stack_end; -static void heap_area_pair_free(heap_area_pair_t pair); -static void heap_area_pair_free_voidp(void *d); -static int add_heap_area_pair(xbt_dynar_t list, int block1, int fragment1, int block2, int fragment2); -static int is_new_heap_area_pair(xbt_dynar_t list, int block1, int fragment1, int block2, int fragment2); -static heap_area_t new_heap_area(int block, int fragment); -static size_t heap_comparison_ignore_size(xbt_dynar_t list, void *address); -static void add_heap_equality(xbt_dynar_t equals, void *a1, void *a2); -static void remove_heap_equality(xbt_dynar_t equals, int address, void *a); +/********************************* Backtrace ***********************************/ +/******************************************************************************/ -static int is_stack(void *address); -static int is_block_stack(int block); -static int equal_blocks(int b1, int b2); -static int equal_fragments(int b1, int f1, int b2, int f2); - -void mmalloc_backtrace_block_display(void* heapinfo, int block){ +static void mmalloc_backtrace_block_display(void* heapinfo, int block){ /* xbt_ex_t e; */ @@ -59,7 +49,7 @@ void mmalloc_backtrace_block_display(void* heapinfo, int block){ /* } */ } -void mmalloc_backtrace_fragment_display(void* heapinfo, int block, int frag){ +static void mmalloc_backtrace_fragment_display(void* heapinfo, int block, int frag){ /* xbt_ex_t e; */ @@ -82,7 +72,7 @@ void mmalloc_backtrace_fragment_display(void* heapinfo, int block, int frag){ } -void mmalloc_backtrace_display(void *addr){ +static void mmalloc_backtrace_display(void *addr){ /* size_t block, frag_nb; */ /* int type; */ @@ -113,11 +103,209 @@ void mmalloc_backtrace_display(void *addr){ } +static int compare_backtrace(int b1, int f1, int b2, int f2){ + /*int i = 0; + if(f1 != -1){ + for(i=0; i< XBT_BACKTRACE_SIZE; i++){ + if(heapinfo1[b1].busy_frag.bt[f1][i] != heapinfo2[b2].busy_frag.bt[f2][i]){ + //mmalloc_backtrace_fragment_display((void*)heapinfo1, b1, f1); + //mmalloc_backtrace_fragment_display((void*)heapinfo2, b2, f2); + return 1; + } + } + }else{ + for(i=0; i< heapinfo1[b1].busy_block.bt_size; i++){ + if(heapinfo1[b1].busy_block.bt[i] != heapinfo2[b2].busy_block.bt[i]){ + //mmalloc_backtrace_block_display((void*)heapinfo1, b1); + //mmalloc_backtrace_block_display((void*)heapinfo2, b2); + return 1; + } + } + }*/ + return 0; +} + + +/*********************************** Heap comparison ***********************************/ +/***************************************************************************************/ + void *s_heap = NULL, *heapbase1 = NULL, *heapbase2 = NULL; malloc_info *heapinfo1 = NULL, *heapinfo2 = NULL; size_t heaplimit = 0, heapsize1 = 0, heapsize2 = 0; xbt_dynar_t to_ignore1 = NULL, to_ignore2 = NULL; +/*********************************** Free functions ************************************/ + +static void heap_area_pair_free(heap_area_pair_t pair){ + xbt_free(pair); + pair = NULL; +} + +static void heap_area_pair_free_voidp(void *d){ + heap_area_pair_free((heap_area_pair_t) * (void **) d); +} + +static void heap_area_free(heap_area_t area){ + xbt_free(area); + area = NULL; +} + +/************************************************************************************/ + +static heap_area_t new_heap_area(int block, int fragment){ + heap_area_t area = NULL; + area = xbt_new0(s_heap_area_t, 1); + area->block = block; + area->fragment = fragment; + return area; +} + + +static int is_new_heap_area_pair(xbt_dynar_t list, int block1, int fragment1, int block2, int fragment2){ + + unsigned int cursor = 0; + heap_area_pair_t current_pair; + + xbt_dynar_foreach(list, cursor, current_pair){ + if(current_pair->block1 == block1 && current_pair->block2 == block2 && current_pair->fragment1 == fragment1 && current_pair->fragment2 == fragment2) + return 0; + } + + return 1; +} + +static int add_heap_area_pair(xbt_dynar_t list, int block1, int fragment1, int block2, int fragment2){ + + if(is_new_heap_area_pair(list, block1, fragment1, block2, fragment2)){ + heap_area_pair_t pair = NULL; + pair = xbt_new0(s_heap_area_pair_t, 1); + pair->block1 = block1; + pair->fragment1 = fragment1; + pair->block2 = block2; + pair->fragment2 = fragment2; + + xbt_dynar_push(list, &pair); + + return 1; + } + + return 0; +} + +static size_t heap_comparison_ignore_size(xbt_dynar_t ignore_list, void *address){ + + unsigned int cursor = 0; + int start = 0; + int end = xbt_dynar_length(ignore_list) - 1; + mc_heap_ignore_region_t region; + + while(start <= end){ + cursor = (start + end) / 2; + region = (mc_heap_ignore_region_t)xbt_dynar_get_as(ignore_list, cursor, mc_heap_ignore_region_t); + if(region->address == address) + return region->size; + if(region->address < address) + start = cursor + 1; + if(region->address > address) + end = cursor - 1; + } + + return 0; +} + +static int is_stack(void *address){ + unsigned int cursor = 0; + stack_region_t stack; + + xbt_dynar_foreach(stacks_areas, cursor, stack){ + if(address == stack->address) + return 1; + } + + return 0; +} + +static int is_block_stack(int block){ + unsigned int cursor = 0; + stack_region_t stack; + + xbt_dynar_foreach(stacks_areas, cursor, stack){ + if(block == stack->block) + return 1; + } + + return 0; +} + +static void match_equals(xbt_dynar_t list){ + + unsigned int cursor = 0; + heap_area_pair_t current_pair; + heap_area_t previous_area; + + xbt_dynar_foreach(list, cursor, current_pair){ + + if(current_pair->fragment1 != -1){ + + if(heapinfo1[current_pair->block1].busy_frag.equal_to[current_pair->fragment1] != NULL){ + previous_area = heapinfo1[current_pair->block1].busy_frag.equal_to[current_pair->fragment1]; + heap_area_free(heapinfo2[previous_area->block].busy_frag.equal_to[previous_area->fragment]); + heapinfo2[previous_area->block].busy_frag.equal_to[previous_area->fragment] = NULL; + heap_area_free(previous_area); + } + if(heapinfo2[current_pair->block2].busy_frag.equal_to[current_pair->fragment2] != NULL){ + previous_area = heapinfo2[current_pair->block2].busy_frag.equal_to[current_pair->fragment2]; + heap_area_free(heapinfo1[previous_area->block].busy_frag.equal_to[previous_area->fragment]); + heapinfo1[previous_area->block].busy_frag.equal_to[previous_area->fragment] = NULL; + heap_area_free(previous_area); + } + + heapinfo1[current_pair->block1].busy_frag.equal_to[current_pair->fragment1] = new_heap_area(current_pair->block2, current_pair->fragment2); + heapinfo2[current_pair->block2].busy_frag.equal_to[current_pair->fragment2] = new_heap_area(current_pair->block1, current_pair->fragment1); + + }else{ + + if(heapinfo1[current_pair->block1].busy_block.equal_to != NULL){ + previous_area = heapinfo1[current_pair->block1].busy_block.equal_to; + heap_area_free(heapinfo2[previous_area->block].busy_block.equal_to); + heapinfo2[previous_area->block].busy_block.equal_to = NULL; + heap_area_free(previous_area); + } + if(heapinfo2[current_pair->block2].busy_block.equal_to != NULL){ + previous_area = heapinfo2[current_pair->block2].busy_block.equal_to; + heap_area_free(heapinfo1[previous_area->block].busy_block.equal_to); + heapinfo1[previous_area->block].busy_block.equal_to = NULL; + heap_area_free(previous_area); + } + + heapinfo1[current_pair->block1].busy_block.equal_to = new_heap_area(current_pair->block2, current_pair->fragment2); + heapinfo2[current_pair->block2].busy_block.equal_to = new_heap_area(current_pair->block1, current_pair->fragment1); + + } + + } +} + +static int equal_blocks(int b1, int b2){ + if(heapinfo1[b1].busy_block.equal_to != NULL){ + if(heapinfo2[b2].busy_block.equal_to != NULL){ + if(((heap_area_t)(heapinfo1[b1].busy_block.equal_to))->block == b2 && ((heap_area_t)(heapinfo2[b2].busy_block.equal_to))->block == b1) + return 1; + } + } + return 0; +} + +static int equal_fragments(int b1, int f1, int b2, int f2){ + if(heapinfo1[b1].busy_frag.equal_to[f1] != NULL){ + if(heapinfo2[b2].busy_frag.equal_to[f2] != NULL){ + if(((heap_area_t)(heapinfo1[b1].busy_frag.equal_to[f1]))->block == b2 && ((heap_area_t)(heapinfo2[b2].busy_frag.equal_to[f2]))->block == b1 && ((heap_area_t)(heapinfo1[b1].busy_frag.equal_to[f1]))->fragment == f2 && ((heap_area_t)(heapinfo2[b2].busy_frag.equal_to[f2]))->fragment == f1) + return 1; + } + } + return 0; +} + void init_heap_information(xbt_mheap_t heap1, xbt_mheap_t heap2, xbt_dynar_t i1, xbt_dynar_t i2){ heaplimit = ((struct mdesc *)heap1)->heaplimit; @@ -137,17 +325,59 @@ void init_heap_information(xbt_mheap_t heap1, xbt_mheap_t heap2, xbt_dynar_t i1, to_ignore2 = i2; if(MC_is_active()){ - MC_ignore_data_bss(&heaplimit, sizeof(heaplimit)); - MC_ignore_data_bss(&s_heap, sizeof(s_heap)); - MC_ignore_data_bss(&heapbase1, sizeof(heapbase1)); - MC_ignore_data_bss(&heapbase2, sizeof(heapbase2)); - MC_ignore_data_bss(&heapinfo1, sizeof(heapinfo1)); - MC_ignore_data_bss(&heapinfo2, sizeof(heapinfo2)); - MC_ignore_data_bss(&heapsize1, sizeof(heapsize1)); - MC_ignore_data_bss(&heapsize2, sizeof(heapsize2)); - MC_ignore_data_bss(&to_ignore1, sizeof(to_ignore1)); - MC_ignore_data_bss(&to_ignore2, sizeof(to_ignore2)); + MC_ignore_global_variable("heaplimit"); + MC_ignore_global_variable("s_heap"); + MC_ignore_global_variable("heapbase1"); + MC_ignore_global_variable("heapbase2"); + MC_ignore_global_variable("heapinfo1"); + MC_ignore_global_variable("heapinfo2"); + MC_ignore_global_variable("heapsize1"); + MC_ignore_global_variable("heapsize2"); + MC_ignore_global_variable("to_ignore1"); + MC_ignore_global_variable("to_ignore2"); + } + +} + +void reset_heap_information(){ + + size_t i = 0, j; + + while(i<=heaplimit){ + if(heapinfo1[i].type == 0){ + heap_area_free(heapinfo1[i].busy_block.equal_to); + heapinfo1[i].busy_block.equal_to = NULL; + } + if(heapinfo1[i].type > 0){ + for(j=0; j < (size_t) (BLOCKSIZE >> heapinfo1[i].type); j++){ + heap_area_free(heapinfo1[i].busy_frag.equal_to[j]); + heapinfo1[i].busy_frag.equal_to[j] = NULL; + } + } + i++; + } + + i = 0; + + while(i<=heaplimit){ + if(heapinfo2[i].type == 0){ + heap_area_free(heapinfo2[i].busy_block.equal_to); + heapinfo2[i].busy_block.equal_to = NULL; + } + if(heapinfo2[i].type > 0){ + for(j=0; j < (size_t) (BLOCKSIZE >> heapinfo2[i].type); j++){ + heap_area_free(heapinfo2[i].busy_frag.equal_to[j]); + heapinfo2[i].busy_frag.equal_to[j] = NULL; + } + } + i++; } + + s_heap = NULL, heapbase1 = NULL, heapbase2 = NULL; + heapinfo1 = NULL, heapinfo2 = NULL; + heaplimit = 0, heapsize1 = 0, heapsize2 = 0; + to_ignore1 = NULL, to_ignore2 = NULL; + } int mmalloc_compare_heap(xbt_mheap_t heap1, xbt_mheap_t heap2){ @@ -215,7 +445,7 @@ int mmalloc_compare_heap(xbt_mheap_t heap1, xbt_mheap_t heap2){ addr_block2 = ((void*) (((ADDR2UINT(current_block)) - 1) * BLOCKSIZE + (char*)((xbt_mheap_t)s_heap)->heapbase)); - res_compare = compare_area(addr_block1, addr_block2, NULL); + res_compare = compare_heap_area(addr_block1, addr_block2, NULL, NULL, NULL, NULL, 0); /*FIXME*/ if(res_compare == 0){ for(k=1; k < heapinfo2[current_block].busy_block.size; k++) @@ -251,7 +481,7 @@ int mmalloc_compare_heap(xbt_mheap_t heap1, xbt_mheap_t heap2){ continue; } - res_compare = compare_area(addr_block1, addr_block2, NULL); + res_compare = compare_heap_area(addr_block1, addr_block2, NULL, NULL, NULL, NULL, 0); /*FIXME */ if(res_compare == 0){ for(k=1; k < heapinfo2[i2].busy_block.size; k++) @@ -269,10 +499,10 @@ int mmalloc_compare_heap(xbt_mheap_t heap1, xbt_mheap_t heap2){ } if(!equal){ - /*XBT_DEBUG("Block %zu not found (size_used = %zu, addr = %p)", i1, heapinfo1[i1].busy_block.busy_size, addr_block1); + XBT_DEBUG("Block %zu not found (size_used = %zu, addr = %p)", i1, heapinfo1[i1].busy_block.busy_size, addr_block1); i1 = heaplimit + 1; - nb_diff1++;*/ - i1++; + nb_diff1++; + //i1++; } }else{ /* Fragmented block */ @@ -300,7 +530,7 @@ int mmalloc_compare_heap(xbt_mheap_t heap1, xbt_mheap_t heap2){ addr_block2 = ((void*) (((ADDR2UINT(current_block)) - 1) * BLOCKSIZE + (char*)((xbt_mheap_t)s_heap)->heapbase)); addr_frag2 = (void*) ((char *)addr_block2 + (current_fragment << ((xbt_mheap_t)s_heap)->heapinfo[current_block].type)); - res_compare = compare_area(addr_frag1, addr_frag2, NULL); + res_compare = compare_heap_area(addr_frag1, addr_frag2, NULL, NULL, NULL, NULL, 0); /*FIXME*/ if(res_compare == 0) equal = 1; @@ -330,7 +560,7 @@ int mmalloc_compare_heap(xbt_mheap_t heap1, xbt_mheap_t heap2){ addr_block2 = ((void*) (((ADDR2UINT(i2)) - 1) * BLOCKSIZE + (char*)((xbt_mheap_t)s_heap)->heapbase)); addr_frag2 = (void*) ((char *)addr_block2 + (j2 << ((xbt_mheap_t)s_heap)->heapinfo[i2].type)); - res_compare = compare_area(addr_frag1, addr_frag2, NULL); + res_compare = compare_heap_area(addr_frag1, addr_frag2, NULL, NULL, NULL, NULL, 0); /*FIXME*/ if(res_compare == 0){ equal = 1; @@ -346,13 +576,13 @@ int mmalloc_compare_heap(xbt_mheap_t heap1, xbt_mheap_t heap2){ } - /*if(heapinfo1[i1].busy_frag.equal_to[j1] == NULL){ - fprintf(stderr,"Block %zu, fragment %zu not found (size_used = %zd, address = %p, ignore %d)\n", i1, j1, heapinfo1[i1].busy_frag.frag_size[j1], addr_frag1, heapinfo1[i1].busy_frag.ignore[j1]); + if(heapinfo1[i1].busy_frag.equal_to[j1] == NULL){ + XBT_DEBUG("Block %zu, fragment %zu not found (size_used = %zd, address = %p, ignore %d)\n", i1, j1, heapinfo1[i1].busy_frag.frag_size[j1], addr_frag1, heapinfo1[i1].busy_frag.ignore[j1]); i2 = heaplimit + 1; i1 = heaplimit + 1; nb_diff1++; break; - }*/ + } } @@ -454,82 +684,230 @@ int mmalloc_compare_heap(xbt_mheap_t heap1, xbt_mheap_t heap2){ return ((nb_diff1 > 0) || (nb_diff2 > 0)); } -void reset_heap_information(){ +static int compare_heap_area_without_type(void *real_area1, void *real_area2, void *area1, void *area2, xbt_dynar_t previous, xbt_dict_t all_types, xbt_dict_t other_types, int size, int check_ignore){ - size_t i = 0, j; + int i = 0; + void *addr_pointed1, *addr_pointed2; + int pointer_align, ignore1, ignore2, res_compare; - while(i<=heaplimit){ - if(heapinfo1[i].type == 0){ - xbt_free(heapinfo1[i].busy_block.equal_to); - heapinfo1[i].busy_block.equal_to = NULL; - } - if(heapinfo1[i].type > 0){ - for(j=0; j < (size_t) (BLOCKSIZE >> heapinfo1[i].type); j++){ - xbt_free(heapinfo1[i].busy_frag.equal_to[j]); - heapinfo1[i].busy_frag.equal_to[j] = NULL; + while(i 0){ + if((ignore1 = heap_comparison_ignore_size(to_ignore1, (char *)real_area1 + i)) > 0){ + if((ignore2 = heap_comparison_ignore_size(to_ignore2, (char *)real_area2 + i)) == ignore1){ + i = i + ignore2; + check_ignore--; + continue; + } } } - i++; - } - i = 0; + if(memcmp(((char *)area1) + i, ((char *)area2) + i, 1) != 0){ - while(i<=heaplimit){ - if(heapinfo2[i].type == 0){ - xbt_free(heapinfo2[i].busy_block.equal_to); - heapinfo2[i].busy_block.equal_to = NULL; - } - if(heapinfo2[i].type > 0){ - for(j=0; j < (size_t) (BLOCKSIZE >> heapinfo2[i].type); j++){ - xbt_free(heapinfo2[i].busy_frag.equal_to[j]); - heapinfo2[i].busy_frag.equal_to[j] = NULL; + pointer_align = (i / sizeof(void*)) * sizeof(void*); + addr_pointed1 = *((void **)((char *)area1 + pointer_align)); + addr_pointed2 = *((void **)((char *)area2 + pointer_align)); + + if(addr_pointed1 > maestro_stack_start && addr_pointed1 < maestro_stack_end && addr_pointed2 > maestro_stack_start && addr_pointed2 < maestro_stack_end){ + i = pointer_align + sizeof(void *); + continue; + }else if((addr_pointed1 > s_heap) && ((char *)addr_pointed1 < (char *)s_heap + STD_HEAP_SIZE) + && (addr_pointed2 > s_heap) && ((char *)addr_pointed2 < (char *)s_heap + STD_HEAP_SIZE)){ + res_compare = compare_heap_area(addr_pointed1, addr_pointed2, previous, all_types, other_types, NULL, 0); + if(res_compare != 0){ + return res_compare; + } + i = pointer_align + sizeof(void *); + continue; + }else{ + return 1; } + } - i++; + + i++; + } - s_heap = NULL, heapbase1 = NULL, heapbase2 = NULL; - heapinfo1 = NULL, heapinfo2 = NULL; - heaplimit = 0, heapsize1 = 0, heapsize2 = 0; - to_ignore1 = NULL, to_ignore2 = NULL; - + return 0; + } -static heap_area_t new_heap_area(int block, int fragment){ - heap_area_t area = NULL; - area = xbt_new0(s_heap_area_t, 1); - area->block = block; - area->fragment = fragment; - return area; -} +static int compare_heap_area_with_type(void *real_area1, void *real_area2, void *area1, void *area2, + xbt_dynar_t previous, xbt_dict_t all_types, xbt_dict_t other_types, char *type_id, + int area_size, int check_ignore, int pointer_level){ -static size_t heap_comparison_ignore_size(xbt_dynar_t ignore_list, void *address){ + if(is_stack(real_area1) && is_stack(real_area2)) + return 0; + size_t ignore1, ignore2; + + if((check_ignore > 0) && ((ignore1 = heap_comparison_ignore_size(to_ignore1, real_area1)) > 0) && ((ignore2 = heap_comparison_ignore_size(to_ignore2, real_area2)) == ignore1)) + return 0; + + dw_type_t type = xbt_dict_get_or_null(all_types, type_id); + dw_type_t subtype, subsubtype; + int res, elm_size, i, switch_types = 0; unsigned int cursor = 0; - int start = 0; - int end = xbt_dynar_length(ignore_list) - 1; - mc_heap_ignore_region_t region; + dw_type_t member; + void *addr_pointed1, *addr_pointed2;; + char *type_desc; - while(start <= end){ - cursor = (start + end) / 2; - region = (mc_heap_ignore_region_t)xbt_dynar_get_as(ignore_list, cursor, mc_heap_ignore_region_t); - if(region->address == address) - return region->size; - if(region->address < address) - start = cursor + 1; - if(region->address > address) - end = cursor - 1; + switch(type->type){ + case e_dw_base_type: + if((check_ignore > 0) && ((ignore1 = heap_comparison_ignore_size(to_ignore1, real_area1)) > 0) && ((ignore2 = heap_comparison_ignore_size(to_ignore2, real_area2)) == ignore1)) + return 0; + if(strcmp(type->name, "char") == 0){ /* Chaine de caractères, donc taille aléatoire */ + return (memcmp(area1, area2, area_size) != 0); + }else{ + if(area_size != -1 && type->size != area_size) + return -1; + else + return (memcmp(area1, area2, type->size) != 0); + } + break; + case e_dw_enumeration_type: + if((check_ignore > 0) && ((ignore1 = heap_comparison_ignore_size(to_ignore1, real_area1)) > 0) && ((ignore2 = heap_comparison_ignore_size(to_ignore2, real_area2)) == ignore1)) + return 0; + if(area_size != -1 && type->size != area_size) + return -1; + else + return (memcmp(area1, area2, type->size) != 0); + break; + case e_dw_typedef: + return compare_heap_area_with_type(real_area1, real_area2, area1, area2, previous, all_types, other_types, type->dw_type_id, area_size, check_ignore, pointer_level); + break; + case e_dw_const_type: + return 0; + break; + case e_dw_array_type: + subtype = xbt_dict_get_or_null(all_types, type->dw_type_id); + switch(subtype->type){ + case e_dw_base_type: + case e_dw_enumeration_type: + case e_dw_pointer_type: + case e_dw_structure_type: + case e_dw_union_type: + if(subtype->size == 0){ /*declaration of the type, need the complete description */ + type_desc = get_type_description(all_types, subtype->name); + if(type_desc){ + subtype = xbt_dict_get_or_null(all_types, type_desc); + }else{ + subtype = xbt_dict_get_or_null(other_types, get_type_description(other_types, subtype->name)); + switch_types = 1; + } + } + elm_size = subtype->size; + break; + case e_dw_typedef: + case e_dw_volatile_type: + subsubtype = xbt_dict_get_or_null(all_types, subtype->dw_type_id); + if(subsubtype->size == 0){ /*declaration of the type, need the complete description */ + type_desc = get_type_description(all_types, subsubtype->name); + if(type_desc){ + subsubtype = xbt_dict_get_or_null(all_types, type_desc); + }else{ + subsubtype = xbt_dict_get_or_null(other_types, get_type_description(other_types, subtype->name)); + switch_types = 1; + } + } + elm_size = subsubtype->size; + break; + default : + return 0; + break; + } + for(i=0; isize; i++){ + if(switch_types) + res = compare_heap_area_with_type((char *)real_area1 + (i*elm_size), (char *)real_area2 + (i*elm_size), (char *)area1 + (i*elm_size), (char *)area2 + (i*elm_size), previous, other_types, all_types, type->dw_type_id, type->size, check_ignore, pointer_level); + else + res = compare_heap_area_with_type((char *)real_area1 + (i*elm_size), (char *)real_area2 + (i*elm_size), (char *)area1 + (i*elm_size), (char *)area2 + (i*elm_size), previous, all_types, other_types, type->dw_type_id, type->size, check_ignore, pointer_level); + if(res != 0) + return res; + } + break; + case e_dw_pointer_type: + if(type->dw_type_id && ((dw_type_t)xbt_dict_get_or_null(all_types, type->dw_type_id))->type == e_dw_subroutine_type){ + addr_pointed1 = *((void **)(area1)); + addr_pointed2 = *((void **)(area2)); + return (addr_pointed1 != addr_pointed2);; + }else{ + pointer_level++; + if(pointer_level > 1){ /* Array of pointers */ + for(i=0; i<(area_size/sizeof(void *)); i++){ + addr_pointed1 = *((void **)((char *)area1 + (i*sizeof(void *)))); + addr_pointed2 = *((void **)((char *)area2 + (i*sizeof(void *)))); + if(addr_pointed1 > s_heap && (char *)addr_pointed1 < (char*) s_heap + STD_HEAP_SIZE && addr_pointed2 > s_heap && (char *)addr_pointed2 < (char*) s_heap + STD_HEAP_SIZE) + res = compare_heap_area(addr_pointed1, addr_pointed2, previous, all_types, other_types, type->dw_type_id, pointer_level); + else + res = (addr_pointed1 != addr_pointed2); + if(res != 0) + return res; + } + }else{ + addr_pointed1 = *((void **)(area1)); + addr_pointed2 = *((void **)(area2)); + if(addr_pointed1 > s_heap && (char *)addr_pointed1 < (char*) s_heap + STD_HEAP_SIZE && addr_pointed2 > s_heap && (char *)addr_pointed2 < (char*) s_heap + STD_HEAP_SIZE) + return compare_heap_area(addr_pointed1, addr_pointed2, previous, all_types, other_types, type->dw_type_id, pointer_level); + else + return (addr_pointed1 != addr_pointed2); + } + } + break; + case e_dw_structure_type: + if(type->size == 0){ /*declaration of the structure, need the complete description */ + type_desc = get_type_description(all_types, type->name); + if(type_desc){ + type = xbt_dict_get_or_null(all_types, type_desc); + }else{ + type = xbt_dict_get_or_null(other_types, get_type_description(other_types, type->name)); + switch_types = 1; + } + } + if(area_size != -1 && type->size != area_size){ + if(area_size>type->size && area_size%type->size == 0){ + for(i=0; i<(area_size/type->size); i++){ + if(switch_types) + res = compare_heap_area_with_type((char *)real_area1 + (i*type->size), (char *)real_area2 + (i*type->size), (char *)area1 + (i*type->size), (char *)area2 + (i*type->size), previous, other_types, all_types, type_id, -1, check_ignore, 0); + else + res = compare_heap_area_with_type((char *)real_area1 + (i*type->size), (char *)real_area2 + (i*type->size), (char *)area1 + (i*type->size), (char *)area2 + (i*type->size), previous, all_types, other_types, type_id, -1, check_ignore, 0); + if(res != 0) + return res; + } + }else{ + return -1; + } + }else{ + cursor = 0; + xbt_dynar_foreach(type->members, cursor, member){ + if(switch_types) + res = compare_heap_area_with_type((char *)real_area1 + member->offset, (char *)real_area2 + member->offset, (char *)area1 + member->offset, (char *)area2 + member->offset, previous, other_types, all_types, member->dw_type_id, -1, check_ignore, 0); + else + res = compare_heap_area_with_type((char *)real_area1 + member->offset, (char *)real_area2 + member->offset, (char *)area1 + member->offset, (char *)area2 + member->offset, previous, all_types, other_types, member->dw_type_id, -1, check_ignore, 0); + if(res != 0) + return res; + } + } + break; + case e_dw_union_type: + if((check_ignore > 0) && ((ignore1 = heap_comparison_ignore_size(to_ignore1, real_area1)) > 0) && ((ignore2 = heap_comparison_ignore_size(to_ignore2, real_area2)) == ignore1)) + return 0; + return compare_heap_area_without_type(real_area1, real_area2, area1, area2, previous, all_types, other_types, type->size, check_ignore); + break; + case e_dw_volatile_type: + return compare_heap_area_with_type(real_area1, real_area2, area1, area2, previous, all_types, other_types, type->dw_type_id, area_size, check_ignore, pointer_level); + break; + default: + break; } return 0; -} +} -int compare_area(void *area1, void* area2, xbt_dynar_t previous){ +int compare_heap_area(void *area1, void* area2, xbt_dynar_t previous, xbt_dict_t all_types, xbt_dict_t other_types, char *type_id, int pointer_level){ - size_t i = 0, pointer_align = 0, ignore1 = 0, ignore2 = 0; - void *addr_pointed1, *addr_pointed2; int res_compare; ssize_t block1, frag1, block2, frag2; ssize_t size; @@ -629,7 +1007,8 @@ int compare_area(void *area1, void* area2, xbt_dynar_t previous){ if((heapinfo1[block1].busy_block.ignore > 0) && (heapinfo2[block2].busy_block.ignore == heapinfo1[block1].busy_block.ignore)) check_ignore = heapinfo1[block1].busy_block.ignore; - }else{ + }else{ /* Frgamented block */ + frag1 = ((uintptr_t) (ADDR2UINT (area1) % (BLOCKSIZE))) >> heapinfo1[block1].type; frag2 = ((uintptr_t) (ADDR2UINT (area2) % (BLOCKSIZE))) >> heapinfo2[block2].type; @@ -734,48 +1113,23 @@ int compare_area(void *area1, void* area2, xbt_dynar_t previous){ } return 1; } - - while(i 0){ - if((ignore1 = heap_comparison_ignore_size(to_ignore1, (char *)area1 + i)) > 0){ - if((ignore2 = heap_comparison_ignore_size(to_ignore2, (char *)area2 + i)) == ignore1){ - i = i + ignore2; - check_ignore--; - continue; - } - } - } - - if(memcmp(((char *)area1_to_compare) + i, ((char *)area2_to_compare) + i, 1) != 0){ - pointer_align = (i / sizeof(void*)) * sizeof(void*); - addr_pointed1 = *((void **)((char *)area1_to_compare + pointer_align)); - addr_pointed2 = *((void **)((char *)area2_to_compare + pointer_align)); - - if(addr_pointed1 > maestro_stack_start && addr_pointed1 < maestro_stack_end && addr_pointed2 > maestro_stack_start && addr_pointed2 < maestro_stack_end){ - i = pointer_align + sizeof(void *); - continue; - }else if((addr_pointed1 > s_heap) && ((char *)addr_pointed1 < (char *)s_heap + STD_HEAP_SIZE) - && (addr_pointed2 > s_heap) && ((char *)addr_pointed2 < (char *)s_heap + STD_HEAP_SIZE)){ - res_compare = compare_area(addr_pointed1, addr_pointed2, previous); - if(res_compare != 0){ - if(match_pairs) - xbt_dynar_free(&previous); - return res_compare; - } - i = pointer_align + sizeof(void *); - continue; - }else{ + /* Start comparison*/ + if(type_id != NULL){ + res_compare = compare_heap_area_with_type(area1, area2, area1_to_compare, area2_to_compare, previous, all_types, other_types, type_id, size, check_ignore, pointer_level); + if(res_compare != 0){ + if(match_pairs) + xbt_dynar_free(&previous); + return res_compare; + } + }else{ + res_compare = compare_heap_area_without_type(area1, area2, area1_to_compare, area2_to_compare, previous, all_types, other_types, size, check_ignore); + if(res_compare != 0){ if(match_pairs) xbt_dynar_free(&previous); - return 1; + return res_compare; } - - } - - i++; - } if(match_pairs){ @@ -784,101 +1138,56 @@ int compare_area(void *area1, void* area2, xbt_dynar_t previous){ } return 0; - - } -static void heap_area_pair_free(heap_area_pair_t pair){ - xbt_free(pair); - pair = NULL; -} +/*********************************************** Miscellaneous ***************************************************/ +/****************************************************************************************************************/ -static void heap_area_pair_free_voidp(void *d) -{ - heap_area_pair_free((heap_area_pair_t) * (void **) d); -} -static int add_heap_area_pair(xbt_dynar_t list, int block1, int fragment1, int block2, int fragment2){ +int get_pointed_area_size(void *area, int heap){ - if(is_new_heap_area_pair(list, block1, fragment1, block2, fragment2)){ - heap_area_pair_t pair = NULL; - pair = xbt_new0(s_heap_area_pair_t, 1); - pair->block1 = block1; - pair->fragment1 = fragment1; - pair->block2 = block2; - pair->fragment2 = fragment2; - - xbt_dynar_push(list, &pair); + int block, frag; + malloc_info *heapinfo; - return 1; - } + if(heap == 1) + heapinfo = heapinfo1; + else + heapinfo = heapinfo2; - return 0; -} - -static int is_new_heap_area_pair(xbt_dynar_t list, int block1, int fragment1, int block2, int fragment2){ - - unsigned int cursor = 0; - heap_area_pair_t current_pair; + block = ((char*)area - (char*)((xbt_mheap_t)s_heap)->heapbase) / BLOCKSIZE + 1; - xbt_dynar_foreach(list, cursor, current_pair){ - if(current_pair->block1 == block1 && current_pair->block2 == block2 && current_pair->fragment1 == fragment1 && current_pair->fragment2 == fragment2) - return 0; - } - - return 1; -} + if(((char *)area < (char*)((xbt_mheap_t)s_heap)->heapbase) || (block > heapsize1) || (block < 1)) + return -1; + if(heapinfo[block].type == -1){ /* Free block */ + return -1; + }else if(heapinfo[block].type == 0){ /* Complete block */ + return (int)heapinfo[block].busy_block.busy_size; + }else{ + frag = ((uintptr_t) (ADDR2UINT (area) % (BLOCKSIZE))) >> heapinfo[block].type; + return (int)heapinfo[block].busy_frag.frag_size[frag]; + } -void match_equals(xbt_dynar_t list){ - - unsigned int cursor = 0; - heap_area_pair_t current_pair; - heap_area_t previous_area; - - xbt_dynar_foreach(list, cursor, current_pair){ - - if(current_pair->fragment1 != -1){ - - if(heapinfo1[current_pair->block1].busy_frag.equal_to[current_pair->fragment1] != NULL){ - previous_area = heapinfo1[current_pair->block1].busy_frag.equal_to[current_pair->fragment1]; - xbt_free(heapinfo2[previous_area->block].busy_frag.equal_to[previous_area->fragment]); - heapinfo2[previous_area->block].busy_frag.equal_to[previous_area->fragment] = NULL; - xbt_free(previous_area); - } - if(heapinfo2[current_pair->block2].busy_frag.equal_to[current_pair->fragment2] != NULL){ - previous_area = heapinfo2[current_pair->block2].busy_frag.equal_to[current_pair->fragment2]; - xbt_free(heapinfo1[previous_area->block].busy_frag.equal_to[previous_area->fragment]); - heapinfo1[previous_area->block].busy_frag.equal_to[previous_area->fragment] = NULL; - xbt_free(previous_area); - } - - heapinfo1[current_pair->block1].busy_frag.equal_to[current_pair->fragment1] = new_heap_area(current_pair->block2, current_pair->fragment2); - heapinfo2[current_pair->block2].busy_frag.equal_to[current_pair->fragment2] = new_heap_area(current_pair->block1, current_pair->fragment1); - - }else{ +} - if(heapinfo1[current_pair->block1].busy_block.equal_to != NULL){ - previous_area = heapinfo1[current_pair->block1].busy_block.equal_to; - xbt_free(heapinfo2[previous_area->block].busy_block.equal_to); - heapinfo2[previous_area->block].busy_block.equal_to = NULL; - xbt_free(previous_area); - } - if(heapinfo2[current_pair->block2].busy_block.equal_to != NULL){ - previous_area = heapinfo2[current_pair->block2].busy_block.equal_to; - xbt_free(heapinfo1[previous_area->block].busy_block.equal_to); - heapinfo1[previous_area->block].busy_block.equal_to = NULL; - xbt_free(previous_area); - } +char *get_type_description(xbt_dict_t types, char *type_name){ - heapinfo1[current_pair->block1].busy_block.equal_to = new_heap_area(current_pair->block2, current_pair->fragment2); - heapinfo2[current_pair->block2].busy_block.equal_to = new_heap_area(current_pair->block1, current_pair->fragment1); + xbt_dict_cursor_t dict_cursor; + char *type_origin; + dw_type_t type; + xbt_dict_foreach(types, dict_cursor, type_origin, type){ + if(type->name && (strcmp(type->name, type_name) == 0) && type->size > 0){ + xbt_dict_cursor_free(&dict_cursor); + return type_origin; } } + xbt_dict_cursor_free(&dict_cursor); + return NULL; } + #ifndef max #define max( a, b ) ( ((a) > (b)) ? (a) : (b) ) #endif @@ -1007,165 +1316,3 @@ int mmalloc_linear_compare_heap(xbt_mheap_t heap1, xbt_mheap_t heap2){ } -static int is_stack(void *address){ - unsigned int cursor = 0; - stack_region_t stack; - - xbt_dynar_foreach(stacks_areas, cursor, stack){ - if(address == stack->address) - return 1; - } - - return 0; -} - -static int is_block_stack(int block){ - unsigned int cursor = 0; - stack_region_t stack; - - xbt_dynar_foreach(stacks_areas, cursor, stack){ - if(block == stack->block) - return 1; - } - - return 0; -} - -static void add_heap_equality(xbt_dynar_t equals, void *a1, void *a2){ - - if(xbt_dynar_is_empty(equals)){ - - heap_equality_t he = xbt_new0(s_heap_equality_t, 1); - he->address1 = a1; - he->address2 = a2; - - xbt_dynar_insert_at(equals, 0, &he); - - }else{ - - unsigned int cursor = 0; - int start = 0; - int end = xbt_dynar_length(equals) - 1; - heap_equality_t current_equality = NULL; - - while(start <= end){ - cursor = (start + end) / 2; - current_equality = (heap_equality_t)xbt_dynar_get_as(equals, cursor, heap_equality_t); - if(current_equality->address1 == a1){ - if(current_equality->address2 == a2) - return; - if(current_equality->address2 < a2) - start = cursor + 1; - if(current_equality->address2 > a2) - end = cursor - 1; - } - if(current_equality->address1 < a1) - start = cursor + 1; - if(current_equality->address1 > a1) - end = cursor - 1; - } - - heap_equality_t he = xbt_new0(s_heap_equality_t, 1); - he->address1 = a1; - he->address2 = a2; - - if(current_equality->address1 < a1) - xbt_dynar_insert_at(equals, cursor + 1 , &he); - else - xbt_dynar_insert_at(equals, cursor, &he); - - } - -} - -static void remove_heap_equality(xbt_dynar_t equals, int address, void *a){ - - unsigned int cursor = 0; - heap_equality_t current_equality; - int found = 0; - - if(address == 1){ - - int start = 0; - int end = xbt_dynar_length(equals) - 1; - - - while(start <= end && found == 0){ - cursor = (start + end) / 2; - current_equality = (heap_equality_t)xbt_dynar_get_as(equals, cursor, heap_equality_t); - if(current_equality->address1 == a) - found = 1; - if(current_equality->address1 < a) - start = cursor + 1; - if(current_equality->address1 > a) - end = cursor - 1; - } - - if(found == 1) - xbt_dynar_remove_at(equals, cursor, NULL); - - }else{ - - xbt_dynar_foreach(equals, cursor, current_equality){ - if(current_equality->address2 == a){ - found = 1; - break; - } - } - - if(found == 1) - xbt_dynar_remove_at(equals, cursor, NULL); - - } - -} - -int is_free_area(void *area, xbt_mheap_t heap){ - - void *sheap = (char *)mmalloc_get_current_heap() - STD_HEAP_SIZE - getpagesize(); - malloc_info *heapinfo = (malloc_info *)((char *)heap + ((uintptr_t)((char *)heap->heapinfo - (char *)sheap))); - size_t heapsize = heap->heapsize; - - /* Get block number */ - size_t block = ((char*)area - (char*)((xbt_mheap_t)sheap)->heapbase) / BLOCKSIZE + 1; - size_t fragment; - - /* Check if valid block number */ - if((char *)area < (char*)((xbt_mheap_t)sheap)->heapbase || block > heapsize || block < 1) - return 0; - - if(heapinfo[block].type < 0) - return 1; - - if(heapinfo[block].type == 0) - return 0; - - if(heapinfo[block].type > 0){ - fragment = ((uintptr_t) (ADDR2UINT(area) % (BLOCKSIZE))) >> heapinfo[block].type; - if(heapinfo[block].busy_frag.frag_size[fragment] == 0) - return 1; - } - - return 0; - -} - -static int equal_blocks(int b1, int b2){ - if(heapinfo1[b1].busy_block.equal_to != NULL){ - if(heapinfo2[b2].busy_block.equal_to != NULL){ - if(((heap_area_t)(heapinfo1[b1].busy_block.equal_to))->block == b2 && ((heap_area_t)(heapinfo2[b2].busy_block.equal_to))->block == b1) - return 1; - } - } - return 0; -} - -static int equal_fragments(int b1, int f1, int b2, int f2){ - if(heapinfo1[b1].busy_frag.equal_to[f1] != NULL){ - if(heapinfo2[b2].busy_frag.equal_to[f2] != NULL){ - if(((heap_area_t)(heapinfo1[b1].busy_frag.equal_to[f1]))->block == b2 && ((heap_area_t)(heapinfo2[b2].busy_frag.equal_to[f2]))->block == b1 && ((heap_area_t)(heapinfo1[b1].busy_frag.equal_to[f1]))->fragment == f2 && ((heap_area_t)(heapinfo2[b2].busy_frag.equal_to[f2]))->fragment == f1) - return 1; - } - } - return 0; -} diff --git a/src/xbt/mmalloc/mmalloc.c b/src/xbt/mmalloc/mmalloc.c index 42845de359..04f6731c58 100644 --- a/src/xbt/mmalloc/mmalloc.c +++ b/src/xbt/mmalloc/mmalloc.c @@ -123,6 +123,7 @@ static void *register_morecore(struct mdesc *mdp, size_t size) newinfo[BLOCK(oldinfo)].busy_block.size = BLOCKIFY(mdp->heapsize * sizeof(malloc_info)); newinfo[BLOCK(oldinfo)].busy_block.busy_size = size; newinfo[BLOCK(oldinfo)].busy_block.ignore = 0; + newinfo[BLOCK(oldinfo)].busy_block.equal_to = NULL; //newinfo[BLOCK(oldinfo)].busy_block.bt_size = 0;// FIXME setup the backtrace mfree(mdp, (void *) oldinfo); mdp->heapsize = newsize; @@ -203,6 +204,7 @@ void *mmalloc_no_memset(xbt_mheap_t mdp, size_t size) /* Update our metadata about this fragment */ candidate_info->busy_frag.frag_size[candidate_frag] = requested_size; candidate_info->busy_frag.ignore[candidate_frag] = 0; + candidate_info->busy_frag.equal_to[candidate_frag] = NULL; //xbt_backtrace_no_malloc(candidate_info->busy_frag.bt[candidate_frag],XBT_BACKTRACE_SIZE); //xbt_libunwind_backtrace(candidate_info->busy_frag.bt[candidate_frag],XBT_BACKTRACE_SIZE); @@ -224,6 +226,7 @@ void *mmalloc_no_memset(xbt_mheap_t mdp, size_t size) for (i = 1; i < (size_t) (BLOCKSIZE >> log); ++i) { mdp->heapinfo[block].busy_frag.frag_size[i] = -1; mdp->heapinfo[block].busy_frag.ignore[i] = 0; + mdp->heapinfo[block].busy_frag.equal_to[i] = NULL; } mdp->heapinfo[block].busy_frag.nfree = i - 1; mdp->heapinfo[block].freehook.prev = NULL; @@ -234,6 +237,7 @@ void *mmalloc_no_memset(xbt_mheap_t mdp, size_t size) /* mark the fragment returned as busy */ mdp->heapinfo[block].busy_frag.frag_size[0] = requested_size; mdp->heapinfo[block].busy_frag.ignore[0] = 0; + mdp->heapinfo[block].busy_frag.equal_to[0] = NULL; //xbt_backtrace_no_malloc(mdp->heapinfo[block].busy_frag.bt[0],XBT_BACKTRACE_SIZE); //xbt_libunwind_backtrace(mdp->heapinfo[block].busy_frag.bt[0],XBT_BACKTRACE_SIZE); @@ -281,6 +285,7 @@ void *mmalloc_no_memset(xbt_mheap_t mdp, size_t size) mdp->heapinfo[block+it].type = 0; mdp->heapinfo[block+it].busy_block.busy_size = 0; mdp->heapinfo[block+it].busy_block.ignore = 0; + mdp->heapinfo[block+it].busy_block.equal_to = NULL; } mdp->heapinfo[block].busy_block.size = blocks; mdp->heapinfo[block].busy_block.busy_size = requested_size; @@ -322,6 +327,7 @@ void *mmalloc_no_memset(xbt_mheap_t mdp, size_t size) mdp->heapinfo[block+it].type = 0; mdp->heapinfo[block+it].busy_block.busy_size = 0; mdp->heapinfo[block+it].busy_block.ignore = 0; + mdp->heapinfo[block+it].busy_block.equal_to = NULL; } mdp->heapinfo[block].busy_block.size = blocks; mdp->heapinfo[block].busy_block.busy_size = requested_size; diff --git a/src/xbt/mmalloc/mrealloc.c b/src/xbt/mmalloc/mrealloc.c index 40d8c7204d..dc31fa19e2 100644 --- a/src/xbt/mmalloc/mrealloc.c +++ b/src/xbt/mmalloc/mrealloc.c @@ -92,6 +92,7 @@ void *mrealloc(xbt_mheap_t mdp, void *ptr, size_t size) mdp->heapinfo[block].busy_block.size = blocks; mdp->heapinfo[block].busy_block.busy_size = requested_size; mdp->heapinfo[block].busy_block.ignore = 0; + mdp->heapinfo[block].busy_block.equal_to = NULL; result = ptr; } else if (blocks == mdp->heapinfo[block].busy_block.size) { @@ -100,6 +101,7 @@ void *mrealloc(xbt_mheap_t mdp, void *ptr, size_t size) result = ptr; mdp->heapinfo[block].busy_block.busy_size = requested_size; mdp->heapinfo[block].busy_block.ignore = 0; + mdp->heapinfo[block].busy_block.equal_to = NULL; } else { /* Won't fit, so allocate a new region that will. @@ -132,6 +134,7 @@ void *mrealloc(xbt_mheap_t mdp, void *ptr, size_t size) int frag_nb = RESIDUAL(result, BLOCKSIZE) >> type; mdp->heapinfo[block].busy_frag.frag_size[frag_nb] = requested_size; mdp->heapinfo[block].busy_frag.ignore[frag_nb] = 0; + mdp->heapinfo[block].busy_frag.equal_to[frag_nb] = NULL; } else { /* fragment -> Either other fragment, or block */ /* The new size is different; allocate a new space, diff --git a/src/xbt/xbt_os_thread.c b/src/xbt/xbt_os_thread.c index f435231bbe..ae4bc9b435 100644 --- a/src/xbt/xbt_os_thread.c +++ b/src/xbt/xbt_os_thread.c @@ -1234,7 +1234,8 @@ void xbt_os_thread_set_extra_data(void *data) void *xbt_os_thread_get_extra_data(void) { - return xbt_os_thread_self()->extra_data; + xbt_os_thread_t self = xbt_os_thread_self(); + return self? self->extra_data : NULL; } xbt_os_rmutex_t xbt_os_rmutex_init(void) diff --git a/src/xbt/xbt_os_time.c b/src/xbt/xbt_os_time.c index 4e0f331857..f0d4387e53 100644 --- a/src/xbt/xbt_os_time.c +++ b/src/xbt/xbt_os_time.c @@ -99,6 +99,10 @@ struct s_xbt_os_timer { #endif }; +size_t xbt_os_timer_size(void){ + return sizeof(struct s_xbt_os_timer); +} + xbt_os_timer_t xbt_os_timer_new(void) { return xbt_new0(struct s_xbt_os_timer, 1); diff --git a/teshsuite/smpi/mpich3-test/CMakeLists.txt b/teshsuite/smpi/mpich3-test/CMakeLists.txt index 82b588bc1c..645ace8aa1 100644 --- a/teshsuite/smpi/mpich3-test/CMakeLists.txt +++ b/teshsuite/smpi/mpich3-test/CMakeLists.txt @@ -41,6 +41,7 @@ set(txt_files ${CMAKE_CURRENT_SOURCE_DIR}/checktests ${CMAKE_CURRENT_SOURCE_DIR}/util/mtest.c ${CMAKE_CURRENT_SOURCE_DIR}/f77/testlist + ${CMAKE_CURRENT_SOURCE_DIR}/f90/testlist ${CMAKE_CURRENT_SOURCE_DIR}/include/mpitestconf.h ${CMAKE_CURRENT_SOURCE_DIR}/include/mpitest.h PARENT_SCOPE) diff --git a/teshsuite/smpi/mpich3-test/f77/attr/CMakeLists.txt b/teshsuite/smpi/mpich3-test/f77/attr/CMakeLists.txt index 50752bb57e..6cca958bdd 100644 --- a/teshsuite/smpi/mpich3-test/f77/attr/CMakeLists.txt +++ b/teshsuite/smpi/mpich3-test/f77/attr/CMakeLists.txt @@ -9,7 +9,7 @@ if(enable_smpi) endif() set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}") - set(MPICH_FLAGS "-DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DUSE_STDARG=1 -DHAVE_LONG_DOUBLE=1 -DHAVE_PROTOTYPES=1 -DHAVE_SIGNAL_H=1 -DHAVE_SIGACTION=1 -DHAVE_SLEEP=1 -DHAVE_SYSCONF=1 -Wno-error=unused-variable -Wno-implicit") + set(MPICH_FLAGS "-DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DUSE_STDARG=1 -DHAVE_LONG_DOUBLE=1 -DHAVE_PROTOTYPES=1 -DHAVE_SIGNAL_H=1 -DHAVE_SIGACTION=1 -DHAVE_SLEEP=1 -DHAVE_SYSCONF=1 -Wno-error=unused-variable -Wno-implicit -Wno-implicit-function-declaration") include_directories("${CMAKE_HOME_DIRECTORY}/include/smpi") include_directories("${CMAKE_CURRENT_SOURCE_DIR}/../../include/") diff --git a/teshsuite/smpi/mpich3-test/f77/coll/CMakeLists.txt b/teshsuite/smpi/mpich3-test/f77/coll/CMakeLists.txt index 805f851a4d..0551613202 100644 --- a/teshsuite/smpi/mpich3-test/f77/coll/CMakeLists.txt +++ b/teshsuite/smpi/mpich3-test/f77/coll/CMakeLists.txt @@ -9,7 +9,7 @@ if(enable_smpi) endif() set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}") - set(MPICH_FLAGS "-DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DUSE_STDARG=1 -DHAVE_LONG_DOUBLE=1 -DHAVE_PROTOTYPES=1 -DHAVE_SIGNAL_H=1 -DHAVE_SIGACTION=1 -DHAVE_SLEEP=1 -DHAVE_SYSCONF=1 -Wno-error=unused-variable -Wno-implicit") + set(MPICH_FLAGS "-DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DUSE_STDARG=1 -DHAVE_LONG_DOUBLE=1 -DHAVE_PROTOTYPES=1 -DHAVE_SIGNAL_H=1 -DHAVE_SIGACTION=1 -DHAVE_SLEEP=1 -DHAVE_SYSCONF=1 -Wno-error=unused-variable -Wno-implicit -Wno-implicit-function-declaration") include_directories("${CMAKE_HOME_DIRECTORY}/include/smpi") include_directories("${CMAKE_CURRENT_SOURCE_DIR}/../include/") diff --git a/teshsuite/smpi/mpich3-test/f77/comm/CMakeLists.txt b/teshsuite/smpi/mpich3-test/f77/comm/CMakeLists.txt index acd9a3debe..28822eafa7 100644 --- a/teshsuite/smpi/mpich3-test/f77/comm/CMakeLists.txt +++ b/teshsuite/smpi/mpich3-test/f77/comm/CMakeLists.txt @@ -9,7 +9,7 @@ if(enable_smpi) endif() set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}") - set(MPICH_FLAGS "-DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DUSE_STDARG=1 -DHAVE_LONG_DOUBLE=1 -DHAVE_PROTOTYPES=1 -DHAVE_SIGNAL_H=1 -DHAVE_SIGACTION=1 -DHAVE_SLEEP=1 -DHAVE_SYSCONF=1 -Wno-error=unused-variable -Wno-implicit") + set(MPICH_FLAGS "-DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DUSE_STDARG=1 -DHAVE_LONG_DOUBLE=1 -DHAVE_PROTOTYPES=1 -DHAVE_SIGNAL_H=1 -DHAVE_SIGACTION=1 -DHAVE_SLEEP=1 -DHAVE_SYSCONF=1 -Wno-error=unused-variable -Wno-implicit -Wno-implicit-function-declaration") include_directories("${CMAKE_HOME_DIRECTORY}/include/smpi") include_directories("${CMAKE_CURRENT_SOURCE_DIR}/../include/") diff --git a/teshsuite/smpi/mpich3-test/f77/datatype/CMakeLists.txt b/teshsuite/smpi/mpich3-test/f77/datatype/CMakeLists.txt index 91212fbd18..e293d83d0c 100644 --- a/teshsuite/smpi/mpich3-test/f77/datatype/CMakeLists.txt +++ b/teshsuite/smpi/mpich3-test/f77/datatype/CMakeLists.txt @@ -9,7 +9,7 @@ if(enable_smpi) endif() set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}") - set(MPICH_FLAGS "-DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DUSE_STDARG=1 -DHAVE_LONG_DOUBLE=1 -DHAVE_PROTOTYPES=1 -DHAVE_SIGNAL_H=1 -DHAVE_SIGACTION=1 -DHAVE_SLEEP=1 -DHAVE_SYSCONF=1 -Wno-error=unused-variable -Wno-implicit") + set(MPICH_FLAGS "-DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DUSE_STDARG=1 -DHAVE_LONG_DOUBLE=1 -DHAVE_PROTOTYPES=1 -DHAVE_SIGNAL_H=1 -DHAVE_SIGACTION=1 -DHAVE_SLEEP=1 -DHAVE_SYSCONF=1 -Wno-error=unused-variable -Wno-implicit -Wno-implicit-function-declaration") include_directories("${CMAKE_HOME_DIRECTORY}/include/smpi") include_directories("${CMAKE_CURRENT_SOURCE_DIR}/../include/") diff --git a/teshsuite/smpi/mpich3-test/f77/ext/CMakeLists.txt b/teshsuite/smpi/mpich3-test/f77/ext/CMakeLists.txt index ade7a6a298..c83b41815d 100644 --- a/teshsuite/smpi/mpich3-test/f77/ext/CMakeLists.txt +++ b/teshsuite/smpi/mpich3-test/f77/ext/CMakeLists.txt @@ -9,7 +9,7 @@ if(enable_smpi) endif() set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}") - set(MPICH_FLAGS "-DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DUSE_STDARG=1 -DHAVE_LONG_DOUBLE=1 -DHAVE_PROTOTYPES=1 -DHAVE_SIGNAL_H=1 -DHAVE_SIGACTION=1 -DHAVE_SLEEP=1 -DHAVE_SYSCONF=1 -Wno-error=unused-variable -Wno-implicit") + set(MPICH_FLAGS "-DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DUSE_STDARG=1 -DHAVE_LONG_DOUBLE=1 -DHAVE_PROTOTYPES=1 -DHAVE_SIGNAL_H=1 -DHAVE_SIGACTION=1 -DHAVE_SLEEP=1 -DHAVE_SYSCONF=1 -Wno-error=unused-variable -Wno-implicit -Wno-implicit-function-declaration") include_directories("${CMAKE_HOME_DIRECTORY}/include/smpi") include_directories("${CMAKE_CURRENT_SOURCE_DIR}/../include/") diff --git a/teshsuite/smpi/mpich3-test/f77/init/CMakeLists.txt b/teshsuite/smpi/mpich3-test/f77/init/CMakeLists.txt index 363d9ffb7e..5a7866ec5b 100644 --- a/teshsuite/smpi/mpich3-test/f77/init/CMakeLists.txt +++ b/teshsuite/smpi/mpich3-test/f77/init/CMakeLists.txt @@ -9,7 +9,7 @@ if(enable_smpi) endif() set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}") - set(MPICH_FLAGS "-DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DUSE_STDARG=1 -DHAVE_LONG_DOUBLE=1 -DHAVE_PROTOTYPES=1 -DHAVE_SIGNAL_H=1 -DHAVE_SIGACTION=1 -DHAVE_SLEEP=1 -DHAVE_SYSCONF=1 -Wno-error=unused-variable -Wno-implicit") + set(MPICH_FLAGS "-DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DUSE_STDARG=1 -DHAVE_LONG_DOUBLE=1 -DHAVE_PROTOTYPES=1 -DHAVE_SIGNAL_H=1 -DHAVE_SIGACTION=1 -DHAVE_SLEEP=1 -DHAVE_SYSCONF=1 -Wno-error=unused-variable -Wno-implicit -Wno-implicit-function-declaration") include_directories("${CMAKE_HOME_DIRECTORY}/include/smpi") include_directories("${CMAKE_CURRENT_SOURCE_DIR}/../include/") diff --git a/teshsuite/smpi/mpich3-test/f77/pt2pt/CMakeLists.txt b/teshsuite/smpi/mpich3-test/f77/pt2pt/CMakeLists.txt index 2d99d0695e..5e4e0fa50e 100644 --- a/teshsuite/smpi/mpich3-test/f77/pt2pt/CMakeLists.txt +++ b/teshsuite/smpi/mpich3-test/f77/pt2pt/CMakeLists.txt @@ -8,8 +8,9 @@ if(enable_smpi) set(CMAKE_Fortran_COMPILER "${CMAKE_BINARY_DIR}/smpi_script/bin/smpiff") endif() + set(CMAKE_INCLUDE_CURRENT_DIR ON) set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}") - set(MPICH_FLAGS "-DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DUSE_STDARG=1 -DHAVE_LONG_DOUBLE=1 -DHAVE_PROTOTYPES=1 -DHAVE_SIGNAL_H=1 -DHAVE_SIGACTION=1 -DHAVE_SLEEP=1 -DHAVE_SYSCONF=1 -Wno-error=unused-variable -Wno-implicit") + set(MPICH_FLAGS "-DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DUSE_STDARG=1 -DHAVE_LONG_DOUBLE=1 -DHAVE_PROTOTYPES=1 -DHAVE_SIGNAL_H=1 -DHAVE_SIGACTION=1 -DHAVE_SLEEP=1 -DHAVE_SYSCONF=1 -Wno-error=unused-variable -Wno-implicit -Wno-implicit-function-declaration") include_directories("${CMAKE_HOME_DIRECTORY}/include/smpi") include_directories("${CMAKE_CURRENT_SOURCE_DIR}/../include/") diff --git a/teshsuite/smpi/mpich3-test/f90/coll/CMakeLists.txt b/teshsuite/smpi/mpich3-test/f90/coll/CMakeLists.txt new file mode 100644 index 0000000000..a2d349c92b --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/coll/CMakeLists.txt @@ -0,0 +1,95 @@ +cmake_minimum_required(VERSION 2.6) + +if(enable_smpi) + if(WIN32) + set(CMAKE_C_FLAGS "-include ${CMAKE_HOME_DIRECTORY}/include/smpi/smpi_main.h") + else() + set(CMAKE_C_COMPILER "${CMAKE_BINARY_DIR}/smpi_script/bin/smpicc") + set(CMAKE_Fortran_COMPILER "${CMAKE_BINARY_DIR}/smpi_script/bin/smpif90") + endif() + + set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}") + set(MPICH_FLAGS "-DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DUSE_STDARG=1 -DHAVE_LONG_DOUBLE=1 -DHAVE_PROTOTYPES=1 -DHAVE_SIGNAL_H=1 -DHAVE_SIGACTION=1 -DHAVE_SLEEP=1 -DHAVE_SYSCONF=1 -Wno-error=unused-variable") + include_directories("${CMAKE_HOME_DIRECTORY}/include/smpi") + + add_executable(allredint8f90 allredint8f90.f90 ../util/mtestf90.f90) + add_executable(allredopttf90 allredopttf90.f90 ../util/mtestf90.f90) + add_executable(alltoallvf90 alltoallvf90.f90 ../util/mtestf90.f90) + add_executable(alltoallwf90 alltoallwf90.f90 ../util/mtestf90.f90) + add_executable(exscanf90 exscanf90.f90 ../util/mtestf90.f90) + add_executable(inplacef90 inplacef90.f90 ../util/mtestf90.f90) + # add_executable(nonblockingf90 nonblockingf90.f90 ../util/mtestf90.f90) + # add_executable(nonblocking_inpf90 nonblocking_inpf90.f90 ../util/mtestf90.f90) + add_executable(red_scat_blockf90 red_scat_blockf90.f90 ../util/mtestf90.f90) + add_executable(redscatf90 redscatf90.f90 ../util/mtestf90.f90) + add_executable(reducelocalf90 reducelocalf90.f90 ../util/mtestf90.f90) + add_executable(split_typef90 split_typef90.f90 ../util/mtestf90.f90) + add_executable(uallreducef90 uallreducef90.f90 ../util/mtestf90.f90) + add_executable(vw_inplacef90 vw_inplacef90.f90 ../util/mtestf90.f90) + target_link_libraries(allredint8f90 simgrid) + target_link_libraries(allredopttf90 simgrid) + target_link_libraries(alltoallvf90 simgrid) + target_link_libraries(alltoallwf90 simgrid) + target_link_libraries(exscanf90 simgrid) + target_link_libraries(inplacef90 simgrid) + # target_link_libraries(nonblockingf90 simgrid) + # target_link_libraries(nonblocking_inpf90 simgrid) + target_link_libraries(red_scat_blockf90 simgrid) + target_link_libraries(redscatf90 simgrid) + target_link_libraries(reducelocalf90 simgrid) + target_link_libraries(split_typef90 simgrid) + target_link_libraries(uallreducef90 simgrid) + target_link_libraries(vw_inplacef90 simgrid) + set_target_properties(allredint8f90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + set_target_properties(allredopttf90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + set_target_properties(alltoallvf90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + set_target_properties(alltoallwf90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + set_target_properties(exscanf90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + set_target_properties(inplacef90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + # set_target_properties(nonblockingf90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + # set_target_properties(nonblocking_inpf90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + set_target_properties(red_scat_blockf90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + set_target_properties(redscatf90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + set_target_properties(reducelocalf90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + set_target_properties(split_typef90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + set_target_properties(uallreducef90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + set_target_properties(vw_inplacef90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + +endif() + +set(tesh_files + ${tesh_files} + PARENT_SCOPE + ) +set(xml_files + ${xml_files} + PARENT_SCOPE + ) +set(examples_src + ${examples_src} + ${CMAKE_CURRENT_SOURCE_DIR}/allredint8f90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/allredopttf90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/alltoallvf90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/alltoallwf90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/exscanf90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/inplacef90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/nonblockingf90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/nonblocking_inpf90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/red_scat_blockf90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/redscatf90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/reducelocalf90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/split_typef90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/uallreducef90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/vw_inplacef90.f90 + PARENT_SCOPE + ) +set(bin_files + ${bin_files} + PARENT_SCOPE + ) +set(txt_files + ${txt_files} + ${CMAKE_CURRENT_SOURCE_DIR}/../util/mtestf90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/testlist + PARENT_SCOPE + ) diff --git a/teshsuite/smpi/mpich3-test/f90/coll/allredint8f90.f90 b/teshsuite/smpi/mpich3-test/f90/coll/allredint8f90.f90 new file mode 100644 index 0000000000..d91ec1a5bb --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/coll/allredint8f90.f90 @@ -0,0 +1,23 @@ +! This file created from test/mpi/f77/coll/allredint8f.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2006 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + program main + use mpi + integer*8 inbuf, outbuf + integer errs, ierr + + errs = 0 + + call mtest_init( ierr ) +! +! A simple test of allreduce for the optional integer*8 type + + call mpi_allreduce(inbuf, outbuf, 1, MPI_INTEGER8, MPI_SUM, & + & MPI_COMM_WORLD, ierr) + + call mtest_finalize( errs ) + call mpi_finalize( ierr ) + end diff --git a/teshsuite/smpi/mpich3-test/f90/coll/allredopttf90.f90 b/teshsuite/smpi/mpich3-test/f90/coll/allredopttf90.f90 new file mode 100644 index 0000000000..ffe1ffc729 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/coll/allredopttf90.f90 @@ -0,0 +1,46 @@ +! This file created from test/mpi/f77/coll/allredopttf.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2007 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + program main + use mpi + integer*8 inbuf, outbuf + double complex zinbuf, zoutbuf + integer wsize + integer errs, ierr + + errs = 0 + + call mtest_init( ierr ) + call mpi_comm_size( MPI_COMM_WORLD, wsize, ierr ) +! +! A simple test of allreduce for the optional integer*8 type + + inbuf = 1 + outbuf = 0 + call mpi_allreduce(inbuf, outbuf, 1, MPI_INTEGER8, MPI_SUM, & + & MPI_COMM_WORLD, ierr) + if (outbuf .ne. wsize ) then + errs = errs + 1 + print *, "result wrong for sum with integer*8 = got ", outbuf, & + & " but should have ", wsize + endif + zinbuf = (1,1) + zoutbuf = (0,0) + call mpi_allreduce(zinbuf, zoutbuf, 1, MPI_DOUBLE_COMPLEX, & + & MPI_SUM, MPI_COMM_WORLD, ierr) + if (dreal(zoutbuf) .ne. wsize ) then + errs = errs + 1 + print *, "result wrong for sum with double complex = got ", & + & outbuf, " but should have ", wsize + endif + if (dimag(zoutbuf) .ne. wsize ) then + errs = errs + 1 + print *, "result wrong for sum with double complex = got ", & + & outbuf, " but should have ", wsize + endif + call mtest_finalize( errs ) + call mpi_finalize( ierr ) + end diff --git a/teshsuite/smpi/mpich3-test/f90/coll/alltoallvf90.f90 b/teshsuite/smpi/mpich3-test/f90/coll/alltoallvf90.f90 new file mode 100644 index 0000000000..0c535e6223 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/coll/alltoallvf90.f90 @@ -0,0 +1,146 @@ +! This file created from test/mpi/f77/coll/alltoallvf.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2011 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + program main + use mpi + integer ierr, errs + integer i, ans, size, rank, color, comm, newcomm + integer maxSize, displ + parameter (maxSize=128) + integer scounts(maxSize), sdispls(maxSize), stypes(maxSize) + integer rcounts(maxSize), rdispls(maxSize), rtypes(maxSize) + integer sbuf(maxSize), rbuf(maxSize) + + errs = 0 + + call mtest_init( ierr ) + +! Get a comm + call mpi_comm_dup( MPI_COMM_WORLD, comm, ierr ) + call mpi_comm_size( comm, size, ierr ) + if (size .gt. maxSize) then + call mpi_comm_rank( comm, rank, ierr ) + color = 1 + if (rank .lt. maxSize) color = 0 + call mpi_comm_split( comm, color, rank, newcomm, ierr ) + call mpi_comm_free( comm, ierr ) + comm = newcomm + call mpi_comm_size( comm, size, ierr ) + endif + call mpi_comm_rank( comm, rank, ierr ) +! + if (size .le. maxSize) then +! Initialize the data. Just use this as an all to all +! Use the same test as alltoallwf.c , except displacements are in units of +! integers instead of bytes + do i=1, size + scounts(i) = 1 + sdispls(i) = (i-1) + stypes(i) = MPI_INTEGER + sbuf(i) = rank * size + i + rcounts(i) = 1 + rdispls(i) = (i-1) + rtypes(i) = MPI_INTEGER + rbuf(i) = -1 + enddo + call mpi_alltoallv( sbuf, scounts, sdispls, stypes, & + & rbuf, rcounts, rdispls, rtypes, comm, ierr ) +! +! check rbuf(i) = data from the ith location of the ith send buf, or +! rbuf(i) = (i-1) * size + i + do i=1, size + ans = (i-1) * size + rank + 1 + if (rbuf(i) .ne. ans) then + errs = errs + 1 + print *, rank, ' rbuf(', i, ') = ', rbuf(i), & + & ' expected ', ans + endif + enddo +! +! A halo-exchange example - mostly zero counts +! + do i=1, size + scounts(i) = 0 + sdispls(i) = 0 + stypes(i) = MPI_INTEGER + sbuf(i) = -1 + rcounts(i) = 0 + rdispls(i) = 0 + rtypes(i) = MPI_INTEGER + rbuf(i) = -1 + enddo + +! +! Note that the arrays are 1-origin + displ = 0 + if (rank .gt. 0) then + scounts(1+rank-1) = 1 + rcounts(1+rank-1) = 1 + sdispls(1+rank-1) = displ + rdispls(1+rank-1) = rank - 1 + sbuf(1+displ) = rank + displ = displ + 1 + endif + scounts(1+rank) = 1 + rcounts(1+rank) = 1 + sdispls(1+rank) = displ + rdispls(1+rank) = rank + sbuf(1+displ) = rank + displ = displ + 1 + if (rank .lt. size-1) then + scounts(1+rank+1) = 1 + rcounts(1+rank+1) = 1 + sdispls(1+rank+1) = displ + rdispls(1+rank+1) = rank+1 + sbuf(1+displ) = rank + displ = displ + 1 + endif + + call mpi_alltoallv( sbuf, scounts, sdispls, stypes, & + & rbuf, rcounts, rdispls, rtypes, comm, ierr ) +! +! Check the neighbor values are correctly moved +! + if (rank .gt. 0) then + if (rbuf(1+rank-1) .ne. rank-1) then + errs = errs + 1 + print *, rank, ' rbuf(',1+rank-1, ') = ', rbuf(1+rank-1), & + & 'expected ', rank-1 + endif + endif + if (rbuf(1+rank) .ne. rank) then + errs = errs + 1 + print *, rank, ' rbuf(', 1+rank, ') = ', rbuf(1+rank), & + & 'expected ', rank + endif + if (rank .lt. size-1) then + if (rbuf(1+rank+1) .ne. rank+1) then + errs = errs + 1 + print *, rank, ' rbuf(', 1+rank+1, ') = ',rbuf(1+rank+1), & + & 'expected ', rank+1 + endif + endif + do i=0,rank-2 + if (rbuf(1+i) .ne. -1) then + errs = errs + 1 + print *, rank, ' rbuf(', 1+i, ') = ', rbuf(1+i), & + & 'expected -1' + endif + enddo + do i=rank+2,size-1 + if (rbuf(1+i) .ne. -1) then + errs = errs + 1 + print *, rank, ' rbuf(', i, ') = ', rbuf(1+i), & + & 'expected -1' + endif + enddo + endif + call mpi_comm_free( comm, ierr ) + + call mtest_finalize( errs ) + call mpi_finalize( ierr ) + end + diff --git a/teshsuite/smpi/mpich3-test/f90/coll/alltoallwf90.f90 b/teshsuite/smpi/mpich3-test/f90/coll/alltoallwf90.f90 new file mode 100644 index 0000000000..45456ba0ac --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/coll/alltoallwf90.f90 @@ -0,0 +1,67 @@ +! This file created from test/mpi/f77/coll/alltoallwf.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2003 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + program main + use mpi + integer ierr, errs + integer i, intsize, ans, size, rank, color, comm, newcomm + integer maxSize + parameter (maxSize=32) + integer scounts(maxSize), sdispls(maxSize), stypes(maxSize) + integer rcounts(maxSize), rdispls(maxSize), rtypes(maxSize) + integer sbuf(maxSize), rbuf(maxSize) + errs = 0 + + call mtest_init( ierr ) + + call mpi_type_size( MPI_INTEGER, intsize, ierr ) + +! Get a comm + call mpi_comm_dup( MPI_COMM_WORLD, comm, ierr ) + call mpi_comm_size( comm, size, ierr ) + if (size .gt. maxSize) then + call mpi_comm_rank( comm, rank, ierr ) + color = 1 + if (rank .lt. maxSize) color = 0 + call mpi_comm_split( comm, color, rank, newcomm, ierr ) + call mpi_comm_free( comm, ierr ) + comm = newcomm + call mpi_comm_size( comm, size, ierr ) + endif + call mpi_comm_rank( comm, rank, ierr ) + + if (size .le. maxSize) then +! Initialize the data. Just use this as an all to all + do i=1, size + scounts(i) = 1 + sdispls(i) = (i-1)*intsize + stypes(i) = MPI_INTEGER + sbuf(i) = rank * size + i + rcounts(i) = 1 + rdispls(i) = (i-1)*intsize + rtypes(i) = MPI_INTEGER + rbuf(i) = -1 + enddo + call mpi_alltoallw( sbuf, scounts, sdispls, stypes, & + & rbuf, rcounts, rdispls, rtypes, comm, ierr ) +! +! check rbuf(i) = data from the ith location of the ith send buf, or +! rbuf(i) = (i-1) * size + i + do i=1, size + ans = (i-1) * size + rank + 1 + if (rbuf(i) .ne. ans) then + errs = errs + 1 + print *, rank, ' rbuf(', i, ') = ', rbuf(i), & + & ' expected ', ans + endif + enddo + endif + call mpi_comm_free( comm, ierr ) + + call mtest_finalize( errs ) + call mpi_finalize( ierr ) + end + diff --git a/teshsuite/smpi/mpich3-test/f90/coll/exscanf90.f90 b/teshsuite/smpi/mpich3-test/f90/coll/exscanf90.f90 new file mode 100644 index 0000000000..1f1ec517e7 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/coll/exscanf90.f90 @@ -0,0 +1,108 @@ +! This file created from test/mpi/f77/coll/exscanf.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2003 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + subroutine uop( cin, cout, count, datatype ) + use mpi + integer cin(*), cout(*) + integer count, datatype + integer i + +! if (datatype .ne. MPI_INTEGER) then +! write(6,*) 'Invalid datatype passed to user_op()' +! return +! endif + + do i=1, count + cout(i) = cin(i) + cout(i) + enddo + end +! + program main + use mpi + integer, dimension(:), allocatable :: inbuf, outbuf + integer ans, rank, size, comm + integer errs, ierr + integer sumop, status + external uop + allocate(inbuf(2), STAT=status) + allocate(outbuf(2), STAT=status) + errs = 0 + + call mtest_init( ierr ) +! +! A simple test of exscan + comm = MPI_COMM_WORLD + + call mpi_comm_rank( comm, rank, ierr ) + call mpi_comm_size( comm, size, ierr ) + + inbuf(1) = rank + inbuf(2) = -rank + call mpi_exscan( inbuf, outbuf, 2, MPI_INTEGER, MPI_SUM, comm, & + & ierr ) +! this process has the sum of i from 0 to rank-1, which is +! (rank)(rank-1)/2 and -i + ans = (rank * (rank - 1))/2 + if (rank .gt. 0) then + if (outbuf(1) .ne. ans) then + errs = errs + 1 + print *, rank, ' Expected ', ans, ' got ', outbuf(1) + endif + if (outbuf(2) .ne. -ans) then + errs = errs + 1 + print *, rank, ' Expected ', -ans, ' got ', outbuf(1) + endif + endif +! +! Try a user-defined operation +! + call mpi_op_create( uop, .true., sumop, ierr ) + inbuf(1) = rank + inbuf(2) = -rank + call mpi_exscan( inbuf, outbuf, 2, MPI_INTEGER, sumop, comm, & + & ierr ) +! this process has the sum of i from 0 to rank-1, which is +! (rank)(rank-1)/2 and -i + ans = (rank * (rank - 1))/2 + if (rank .gt. 0) then + if (outbuf(1) .ne. ans) then + errs = errs + 1 + print *, rank, ' sumop: Expected ', ans, ' got ', outbuf(1) + endif + if (outbuf(2) .ne. -ans) then + errs = errs + 1 + print *, rank, ' sumop: Expected ', -ans, ' got ', outbuf(1) + endif + endif + call mpi_op_free( sumop, ierr ) + +! +! Try a user-defined operation (and don't claim it is commutative) +! + call mpi_op_create( uop, .false., sumop, ierr ) + inbuf(1) = rank + inbuf(2) = -rank + call mpi_exscan( inbuf, outbuf, 2, MPI_INTEGER, sumop, comm, & + & ierr ) +! this process has the sum of i from 0 to rank-1, which is +! (rank)(rank-1)/2 and -i + ans = (rank * (rank - 1))/2 + if (rank .gt. 0) then + if (outbuf(1) .ne. ans) then + errs = errs + 1 + print *, rank, ' sumop2: Expected ', ans, ' got ', outbuf(1) + endif + if (outbuf(2) .ne. -ans) then + errs = errs + 1 + print *, rank, ' sumop2: Expected ', -ans, ' got ',outbuf(1) + endif + endif + call mpi_op_free( sumop, ierr ) + deallocate(inbuf) + deallocate(outbuf) + call mtest_finalize( errs ) + call mpi_finalize( ierr ) + end diff --git a/teshsuite/smpi/mpich3-test/f90/coll/inplacef90.f90 b/teshsuite/smpi/mpich3-test/f90/coll/inplacef90.f90 new file mode 100644 index 0000000000..e9716cf86c --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/coll/inplacef90.f90 @@ -0,0 +1,91 @@ +! This file created from test/mpi/f77/coll/inplacef.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2005 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! +! This is a simple test that Fortran support the MPI_IN_PLACE value +! + program main + use mpi + integer ierr, errs + integer comm, root + integer rank, size + integer i + integer MAX_SIZE + parameter (MAX_SIZE=1024) + integer rbuf(MAX_SIZE), rdispls(MAX_SIZE), rcount(MAX_SIZE), & + & sbuf(MAX_SIZE) + + errs = 0 + call mtest_init( ierr ) + + comm = MPI_COMM_WORLD + call mpi_comm_rank( comm, rank, ierr ) + call mpi_comm_size( comm, size, ierr ) + + root = 0 +! Gather with inplace + do i=1,size + rbuf(i) = - i + enddo + rbuf(1+root) = root + if (rank .eq. root) then + call mpi_gather( MPI_IN_PLACE, 1, MPI_INTEGER, rbuf, 1, & + & MPI_INTEGER, root, comm, ierr ) + do i=1,size + if (rbuf(i) .ne. i-1) then + errs = errs + 1 + print *, '[',rank,'] rbuf(', i, ') = ', rbuf(i), & + & ' in gather' + endif + enddo + else + call mpi_gather( rank, 1, MPI_INTEGER, rbuf, 1, MPI_INTEGER, & + & root, comm, ierr ) + endif + +! Gatherv with inplace + do i=1,size + rbuf(i) = - i + rcount(i) = 1 + rdispls(i) = i-1 + enddo + rbuf(1+root) = root + if (rank .eq. root) then + call mpi_gatherv( MPI_IN_PLACE, 1, MPI_INTEGER, rbuf, rcount, & + & rdispls, MPI_INTEGER, root, comm, ierr ) + do i=1,size + if (rbuf(i) .ne. i-1) then + errs = errs + 1 + print *, '[', rank, '] rbuf(', i, ') = ', rbuf(i), & + & ' in gatherv' + endif + enddo + else + call mpi_gatherv( rank, 1, MPI_INTEGER, rbuf, rcount, rdispls, & + & MPI_INTEGER, root, comm, ierr ) + endif + +! Scatter with inplace + do i=1,size + sbuf(i) = i + enddo + rbuf(1) = -1 + if (rank .eq. root) then + call mpi_scatter( sbuf, 1, MPI_INTEGER, MPI_IN_PLACE, 1, & + & MPI_INTEGER, root, comm, ierr ) + else + call mpi_scatter( sbuf, 1, MPI_INTEGER, rbuf, 1, & + & MPI_INTEGER, root, comm, ierr ) + if (rbuf(1) .ne. rank+1) then + errs = errs + 1 + print *, '[', rank, '] rbuf = ', rbuf(1), & + & ' in scatter' + endif + endif + + call mtest_finalize( errs ) + call mpi_finalize( ierr ) + + end diff --git a/teshsuite/smpi/mpich3-test/f90/coll/nonblocking_inpf90.f90 b/teshsuite/smpi/mpich3-test/f90/coll/nonblocking_inpf90.f90 new file mode 100644 index 0000000000..c9aed02a3c --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/coll/nonblocking_inpf90.f90 @@ -0,0 +1,124 @@ +! This file created from test/mpi/f77/coll/nonblocking_inpf.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2012 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! +! A simple test for Fortran support of the MPI_IN_PLACE value in Alltoall[vw]. +! + program main + use mpi + integer SIZEOFINT + integer MAX_SIZE + parameter (MAX_SIZE=1024) + integer rbuf(MAX_SIZE) + integer rdispls(MAX_SIZE), rcounts(MAX_SIZE), rtypes(MAX_SIZE) + integer comm, rank, size, req + integer sumval, ierr, errs + integer iexpected, igot + integer i, j + + errs = 0 + call mtest_init( ierr ) + + comm = MPI_COMM_WORLD + call mpi_comm_rank( comm, rank, ierr ) + call mpi_comm_size( comm, size, ierr ) + call mpi_type_size( MPI_INTEGER, SIZEOFINT, ierr ) + + do i=1,MAX_SIZE + rbuf(i) = -1 + enddo + do i=1,size + rbuf(i) = (i-1) * size + rank + enddo + call mpi_ialltoall( MPI_IN_PLACE, -1, MPI_DATATYPE_NULL, & + & rbuf, 1, MPI_INTEGER, comm, req, ierr ) + call mpi_wait( req, MPI_STATUS_IGNORE, ierr ) + do i=1,size + if (rbuf(i) .ne. (rank*size + i - 1)) then + errs = errs + 1 + print *, '[', rank, ']: IALLTOALL rbuf(', i, ') = ', & + & rbuf(i), ', should be', rank * size + i - 1 + endif + enddo + + do i=1,MAX_SIZE + rbuf(i) = -1 + enddo + do i=1,size + rcounts(i) = i-1 + rank + rdispls(i) = (i-1) * (2*size) + do j=0,rcounts(i)-1 + rbuf(rdispls(i)+j+1) = 100 * rank + 10 * (i-1) + j + enddo + enddo + call mpi_ialltoallv( MPI_IN_PLACE, 0, 0, MPI_DATATYPE_NULL, & + & rbuf, rcounts, rdispls, MPI_INTEGER, & + & comm, req, ierr ) + call mpi_wait( req, MPI_STATUS_IGNORE, ierr ) + do i=1,size + do j=0,rcounts(i)-1 + iexpected = 100 * (i-1) + 10 * rank + j + igot = rbuf(rdispls(i)+j+1) + if ( igot .ne. iexpected ) then + errs = errs + 1 + print *, '[', rank, ']: IALLTOALLV got ', igot, & + & ',but expected ', iexpected, & + & ' for block=', i-1, ' element=', j + endif + enddo + enddo + + do i=1,MAX_SIZE + rbuf(i) = -1 + enddo + do i=1,size + rcounts(i) = i-1 + rank + rdispls(i) = (i-1) * (2*size) * SIZEOFINT + rtypes(i) = MPI_INTEGER + do j=0,rcounts(i)-1 + rbuf(rdispls(i)/SIZEOFINT+j+1) = 100 * rank & + & + 10 * (i-1) + j + enddo + enddo + call mpi_ialltoallw( MPI_IN_PLACE, 0, 0, MPI_DATATYPE_NULL, & + & rbuf, rcounts, rdispls, rtypes, & + & comm, req, ierr ) + call mpi_wait( req, MPI_STATUS_IGNORE, ierr ) + do i=1,size + do j=0,rcounts(i)-1 + iexpected = 100 * (i-1) + 10 * rank + j + igot = rbuf(rdispls(i)/SIZEOFINT+j+1) + if ( igot .ne. iexpected ) then + errs = errs + 1 + print *, '[', rank, ']: IALLTOALLW got ', igot, & + & ',but expected ', iexpected, & + & ' for block=', i-1, ' element=', j + endif + enddo + enddo + + do i=1,MAX_SIZE + rbuf(i) = -1 + enddo + do i = 1, size + rbuf(i) = rank + (i-1) + enddo + call mpi_ireduce_scatter_block( MPI_IN_PLACE, rbuf, 1, & + & MPI_INTEGER, MPI_SUM, comm, & + & req, ierr ) + call mpi_wait( req, MPI_STATUS_IGNORE, ierr ) + + sumval = size * rank + ((size-1) * size)/2 + if ( rbuf(1) .ne. sumval ) then + errs = errs + 1 + print *, 'Ireduce_scatter_block does not get expected value.' + print *, '[', rank, ']:', 'Got ', rbuf(1), ' but expected ', & + & sumval, '.' + endif + + call mtest_finalize( errs ) + call mpi_finalize( ierr ) + + end diff --git a/teshsuite/smpi/mpich3-test/f90/coll/nonblockingf90.f90 b/teshsuite/smpi/mpich3-test/f90/coll/nonblockingf90.f90 new file mode 100644 index 0000000000..a07df71d8b --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/coll/nonblockingf90.f90 @@ -0,0 +1,98 @@ +! This file created from test/mpi/f77/coll/nonblockingf.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2012 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + program main + use mpi + integer NUM_INTS + parameter (NUM_INTS=2) + integer maxSize + parameter (maxSize=128) + integer scounts(maxSize), sdispls(maxSize) + integer rcounts(maxSize), rdispls(maxSize) + integer types(maxSize) + integer sbuf(maxSize), rbuf(maxSize) + integer comm, size, rank, req + integer ierr, errs + integer ii, ans + + errs = 0 + + call mtest_init(ierr) + + comm = MPI_COMM_WORLD + call MPI_Comm_size(comm, size, ierr) + call MPI_Comm_rank(comm, rank, ierr) +! + do ii = 1, size + sbuf(2*ii-1) = ii + sbuf(2*ii) = ii + sbuf(2*ii-1) = ii + sbuf(2*ii) = ii + scounts(ii) = NUM_INTS + rcounts(ii) = NUM_INTS + sdispls(ii) = (ii-1) * NUM_INTS + rdispls(ii) = (ii-1) * NUM_INTS + types(ii) = MPI_INTEGER + enddo + + call MPI_Ibarrier(comm, req, ierr) + call MPI_Wait(req, MPI_STATUS_IGNORE, ierr) + + call MPI_Ibcast(sbuf, NUM_INTS, MPI_INTEGER, 0, comm, req, ierr) + call MPI_Wait(req, MPI_STATUS_IGNORE, ierr) + + call MPI_Igather(sbuf, NUM_INTS, MPI_INTEGER, & + & rbuf, NUM_INTS, MPI_INTEGER, & + & 0, comm, req, ierr) + call MPI_Wait(req, MPI_STATUS_IGNORE, ierr) + + call MPI_Igatherv(sbuf, NUM_INTS, MPI_INTEGER, & + & rbuf, rcounts, rdispls, MPI_INTEGER, & + & 0, comm, req, ierr) + call MPI_Wait(req, MPI_STATUS_IGNORE, ierr) + + call MPI_Ialltoall(sbuf, NUM_INTS, MPI_INTEGER, & + & rbuf, NUM_INTS, MPI_INTEGER, & + & comm, req, ierr) + call MPI_Wait(req, MPI_STATUS_IGNORE, ierr) + + call MPI_Ialltoallv(sbuf, scounts, sdispls, MPI_INTEGER, & + & rbuf, rcounts, rdispls, MPI_INTEGER, & + & comm, req, ierr) + call MPI_Wait(req, MPI_STATUS_IGNORE, ierr) + + call MPI_Ialltoallw(sbuf, scounts, sdispls, types, & + & rbuf, rcounts, rdispls, types, & + & comm, req, ierr) + call MPI_Wait(req, MPI_STATUS_IGNORE, ierr) + + call MPI_Ireduce(sbuf, rbuf, NUM_INTS, MPI_INTEGER, & + & MPI_SUM, 0, comm, req, ierr) + call MPI_Wait(req, MPI_STATUS_IGNORE, ierr) + + call MPI_Iallreduce(sbuf, rbuf, NUM_INTS, MPI_INTEGER, & + & MPI_SUM, comm, req, ierr) + call MPI_Wait(req, MPI_STATUS_IGNORE, ierr) + + call MPI_Ireduce_scatter(sbuf, rbuf, rcounts, MPI_INTEGER, & + & MPI_SUM, comm, req, ierr) + call MPI_Wait(req, MPI_STATUS_IGNORE, ierr) + + call MPI_Ireduce_scatter_block(sbuf, rbuf, NUM_INTS, MPI_INTEGER, & + & MPI_SUM, comm, req, ierr) + call MPI_Wait(req, MPI_STATUS_IGNORE, ierr) + + call MPI_Iscan(sbuf, rbuf, NUM_INTS, MPI_INTEGER, & + & MPI_SUM, comm, req, ierr) + call MPI_Wait(req, MPI_STATUS_IGNORE, ierr) + + call MPI_Iexscan(sbuf, rbuf, NUM_INTS, MPI_INTEGER, & + & MPI_SUM, comm, req, ierr) + call MPI_Wait(req, MPI_STATUS_IGNORE, ierr) + + call mtest_finalize( errs ) + call MPI_Finalize( ierr ) + end diff --git a/teshsuite/smpi/mpich3-test/f90/coll/red_scat_blockf90.f90 b/teshsuite/smpi/mpich3-test/f90/coll/red_scat_blockf90.f90 new file mode 100644 index 0000000000..35a1546e3d --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/coll/red_scat_blockf90.f90 @@ -0,0 +1,56 @@ +! This file created from test/mpi/f77/coll/red_scat_blockf.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2012 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! +! A simple test for Fortran support of Reduce_scatter_block +! with or withoutMPI_IN_PLACE. +! + program main + use mpi + integer MAX_SIZE + parameter (MAX_SIZE=1024) + integer sbuf(MAX_SIZE), rbuf(MAX_SIZE) + integer comm, rank, size + integer sumval, ierr, errs, i + + errs = 0 + call mtest_init( ierr ) + + comm = MPI_COMM_WORLD + call mpi_comm_rank( comm, rank, ierr ) + call mpi_comm_size( comm, size, ierr ) + + do i = 1, size + sbuf(i) = rank + (i-1) + enddo + + call MPI_Reduce_scatter_block(sbuf, rbuf, 1, MPI_INTEGER, & + & MPI_SUM, comm, ierr) + + sumval = size * rank + ((size-1) * size)/2 + if ( rbuf(1) .ne. sumval ) then + errs = errs + 1 + print *, 'Reduce_scatter_block does not get expected value.' + print *, '[', rank, ']', 'Got ', rbuf(1), ' but expected ', & + & sumval, '.' + endif + +! Try MPI_IN_PLACE + do i = 1, size + rbuf(i) = rank + (i-1) + enddo + call MPI_Reduce_scatter_block(MPI_IN_PLACE, rbuf, 1, MPI_INTEGER, & + & MPI_SUM, comm, ierr) + if ( rbuf(1) .ne. sumval ) then + errs = errs + 1 + print *, 'Reduce_scatter_block does not get expected value.' + print *, '[', rank, ']', 'Got ', rbuf(1), ' but expected ', & + & sumval, '.' + endif + + call mtest_finalize( errs ) + call mpi_finalize( ierr ) + + end diff --git a/teshsuite/smpi/mpich3-test/f90/coll/redscatf90.f90 b/teshsuite/smpi/mpich3-test/f90/coll/redscatf90.f90 new file mode 100644 index 0000000000..66339f216a --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/coll/redscatf90.f90 @@ -0,0 +1,88 @@ +! This file created from test/mpi/f77/coll/redscatf.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2011 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + subroutine uop( cin, cout, count, datatype ) + use mpi + integer cin(*), cout(*) + integer count, datatype + integer i + +! if (datatype .ne. MPI_INTEGER) then +! write(6,*) 'Invalid datatype ',datatype,' passed to user_op()' +! return +! endif + + do i=1, count + cout(i) = cin(i) + cout(i) + enddo + end +! +! Test of reduce scatter. +! +! Each processor contributes its rank + the index to the reduction, +! then receives the ith sum +! +! Can be called with any number of processors. +! + + program main + use mpi + integer errs, ierr, toterr + integer maxsize + parameter (maxsize=1024) + integer recvbuf + integer size, rank, i, sumval + integer comm, sumop + external uop + integer status + integer, dimension(:),allocatable :: sendbuf,recvcounts + ALLOCATE(sendbuf(maxsize), STAT=status) + ALLOCATE(recvcounts(maxsize), STAT=status) + errs = 0 + + call mtest_init( ierr ) + + comm = MPI_COMM_WORLD + + call mpi_comm_size( comm, size, ierr ) + call mpi_comm_rank( comm, rank, ierr ) + + if (size .gt. maxsize) then + endif + do i=1, size + sendbuf(i) = rank + i - 1 + recvcounts(i) = 1 + enddo + + call mpi_reduce_scatter( sendbuf, recvbuf, recvcounts, & + & MPI_INTEGER, MPI_SUM, comm, ierr ) + + sumval = size * rank + ((size - 1) * size)/2 +! recvbuf should be size * (rank + i) + if (recvbuf .ne. sumval) then + errs = errs + 1 + print *, "Did not get expected value for reduce scatter" + print *, rank, " Got ", recvbuf, " expected ", sumval + endif + + call mpi_op_create( uop, .true., sumop, ierr ) + call mpi_reduce_scatter( sendbuf, recvbuf, recvcounts, & + & MPI_INTEGER, sumop, comm, ierr ) + + sumval = size * rank + ((size - 1) * size)/2 +! recvbuf should be size * (rank + i) + if (recvbuf .ne. sumval) then + errs = errs + 1 + print *, "sumop: Did not get expected value for reduce scatter" + print *, rank, " Got ", recvbuf, " expected ", sumval + endif + call mpi_op_free( sumop, ierr ) + DEALLOCATE(sendbuf) + DEALLOCATE(recvcounts) + call mtest_finalize( errs ) + call mpi_finalize( ierr ) + + end diff --git a/teshsuite/smpi/mpich3-test/f90/coll/reducelocalf90.f90 b/teshsuite/smpi/mpich3-test/f90/coll/reducelocalf90.f90 new file mode 100644 index 0000000000..14229525b9 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/coll/reducelocalf90.f90 @@ -0,0 +1,96 @@ +! This file created from test/mpi/f77/coll/reducelocalf.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2009 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! +! +! Test Fortran MPI_Reduce_local with MPI_OP_SUM and with user-defined operation. +! + subroutine user_op( invec, outvec, count, datatype ) + use mpi + integer invec(*), outvec(*) + integer count, datatype + integer ii + + if (datatype .ne. MPI_INTEGER) then + write(6,*) 'Invalid datatype passed to user_op()' + return + endif + + do ii=1, count + outvec(ii) = invec(ii) * 2 + outvec(ii) + enddo + + end + + program main + use mpi + integer max_buf_size + parameter (max_buf_size=65000) + integer vin(max_buf_size), vout(max_buf_size) + external user_op + integer ierr, errs + integer count, myop + integer ii + + errs = 0 + + call mtest_init(ierr) + + count = 0 + do while (count .le. max_buf_size ) + do ii = 1,count + vin(ii) = ii + vout(ii) = ii + enddo + call mpi_reduce_local( vin, vout, count, & + & MPI_INTEGER, MPI_SUM, ierr ) +! Check if the result is correct + do ii = 1,count + if ( vin(ii) .ne. ii ) then + errs = errs + 1 + endif + if ( vout(ii) .ne. 2*ii ) then + errs = errs + 1 + endif + enddo + if ( count .gt. 0 ) then + count = count + count + else + count = 1 + endif + enddo + + call mpi_op_create( user_op, .false., myop, ierr ) + + count = 0 + do while (count .le. max_buf_size) + do ii = 1, count + vin(ii) = ii + vout(ii) = ii + enddo + call mpi_reduce_local( vin, vout, count, & + & MPI_INTEGER, myop, ierr ) +! Check if the result is correct + do ii = 1, count + if ( vin(ii) .ne. ii ) then + errs = errs + 1 + endif + if ( vout(ii) .ne. 3*ii ) then + errs = errs + 1 + endif + enddo + if ( count .gt. 0 ) then + count = count + count + else + count = 1 + endif + enddo + + call mpi_op_free( myop, ierr ) + + call mtest_finalize(errs) + call mpi_finalize(ierr) + + end diff --git a/teshsuite/smpi/mpich3-test/f90/coll/split_typef90.f90 b/teshsuite/smpi/mpich3-test/f90/coll/split_typef90.f90 new file mode 100644 index 0000000000..867fadfbd1 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/coll/split_typef90.f90 @@ -0,0 +1,46 @@ +! This file created from test/mpi/f77/coll/split_typef.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2011 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + program main + use mpi + integer ierr, errs + integer i, ans, size, rank, color, comm, newcomm + integer maxSize, displ + parameter (maxSize=128) + integer scounts(maxSize), sdispls(maxSize), stypes(maxSize) + integer rcounts(maxSize), rdispls(maxSize), rtypes(maxSize) + integer sbuf(maxSize), rbuf(maxSize) + + errs = 0 + + call mtest_init( ierr ) + + call mpi_comm_dup( MPI_COMM_WORLD, comm, ierr ) + + call mpi_comm_split_type( comm, MPI_COMM_TYPE_SHARED, rank, & + & MPI_INFO_NULL, newcomm, ierr ) + call mpi_comm_rank( newcomm, rank, ierr ) + call mpi_comm_size( newcomm, size, ierr ) + + do i=1, size + scounts(i) = 1 + sdispls(i) = (i-1) + stypes(i) = MPI_INTEGER + sbuf(i) = rank * size + i + rcounts(i) = 1 + rdispls(i) = (i-1) + rtypes(i) = MPI_INTEGER + rbuf(i) = -1 + enddo + call mpi_alltoallv( sbuf, scounts, sdispls, stypes, & + & rbuf, rcounts, rdispls, rtypes, newcomm, ierr ) + + call mpi_comm_free( newcomm, ierr ) + call mpi_comm_free( comm, ierr ) + + call mtest_finalize( errs ) + call mpi_finalize( ierr ) + end diff --git a/teshsuite/smpi/mpich3-test/f90/coll/testlist b/teshsuite/smpi/mpich3-test/f90/coll/testlist new file mode 100644 index 0000000000..522e1a1887 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/coll/testlist @@ -0,0 +1,13 @@ +# This file generated by f77tof90 +uallreducef90 4 +exscanf90 5 +#alltoallwf90 7 +alltoallvf90 7 +inplacef90 4 +reducelocalf90 2 mpiversion=2.2 +redscatf90 4 +split_typef90 4 mpiversion=3.0 +#nonblockingf90 4 mpiversion=3.0 +vw_inplacef90 4 mpiversion=2.2 +red_scat_blockf90 4 mpiversion=2.2 +#nonblocking_inpf90 4 mpiversion=3.0 diff --git a/teshsuite/smpi/mpich3-test/f90/coll/uallreducef90.f90 b/teshsuite/smpi/mpich3-test/f90/coll/uallreducef90.f90 new file mode 100644 index 0000000000..023eec013b --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/coll/uallreducef90.f90 @@ -0,0 +1,67 @@ +! This file created from test/mpi/f77/coll/uallreducef.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2003 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! +! +! Test user-defined operations. This tests a simple commutative operation +! + subroutine uop( cin, cout, count, datatype ) + use mpi + integer cin(*), cout(*) + integer count, datatype + integer i + +! if (datatype .ne. MPI_INTEGER) then +! print *, 'Invalid datatype (',datatype,') passed to user_op()' +! return +! endif + + do i=1, count + cout(i) = cin(i) + cout(i) + enddo + end + + program main + use mpi + external uop + integer ierr, errs + integer count, sumop, i, size + integer, DIMENSION(:), ALLOCATABLE :: vin, vout + integer comm + integer status + + errs = 0 + ALLOCATE(vin(65000), STAT=status) + ALLOCATE(vout(65000), STAT=status) + + call mtest_init(ierr) + call mpi_op_create( uop, .true., sumop, ierr ) + + comm = MPI_COMM_WORLD + call mpi_comm_size( comm, size, ierr ) + count = 1 + do while (count .lt. 65000) + do i=1, count + vin(i) = i + vout(i) = -1 + enddo + call mpi_allreduce( vin, vout, count, MPI_INTEGER, sumop, & + & comm, ierr ) +! Check that all results are correct + do i=1, count + if (vout(i) .ne. i * size) then + errs = errs + 1 + if (errs .lt. 10) print *, "vout(",i,") = ", vout(i) + endif + enddo + count = count + count + enddo + + call mpi_op_free( sumop, ierr ) + DEALLOCATE(vout) + DEALLOCATE(vin) + call mtest_finalize(errs) + call mpi_finalize(ierr) + end diff --git a/teshsuite/smpi/mpich3-test/f90/coll/vw_inplacef90.f90 b/teshsuite/smpi/mpich3-test/f90/coll/vw_inplacef90.f90 new file mode 100644 index 0000000000..1ed0bf75f5 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/coll/vw_inplacef90.f90 @@ -0,0 +1,109 @@ +! This file created from test/mpi/f77/coll/vw_inplacef.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2012 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! +! A simple test for Fortran support of the MPI_IN_PLACE value in Alltoall[vw]. +! + program main + use mpi + integer SIZEOFINT + integer MAX_SIZE + parameter (MAX_SIZE=1024) + integer rbuf(MAX_SIZE) + integer rdispls(MAX_SIZE), rcounts(MAX_SIZE), rtypes(MAX_SIZE) + integer ierr, errs + integer comm, root + integer rank, size + integer iexpected, igot + integer i, j + + errs = 0 + call mtest_init( ierr ) + + comm = MPI_COMM_WORLD + call mpi_comm_rank( comm, rank, ierr ) + call mpi_comm_size( comm, size, ierr ) + call mpi_type_size( MPI_INTEGER, SIZEOFINT, ierr ) + + if (size .gt. MAX_SIZE) then + print *, ' At most ', MAX_SIZE, ' processes allowed' + call mpi_abort( MPI_COMM_WORLD, 1, ierr ) + endif +! + do i=1,MAX_SIZE + rbuf(i) = -1 + enddo + do i=1,size + rbuf(i) = (i-1) * size + rank + enddo + call mpi_alltoall( MPI_IN_PLACE, -1, MPI_DATATYPE_NULL, & + & rbuf, 1, MPI_INTEGER, comm, ierr ) + do i=1,size + if (rbuf(i) .ne. (rank*size + i - 1)) then + errs = errs + 1 + print *, '[', rank, '] rbuf(', i, ') = ', rbuf(i), & + & ', should be', rank * size + i - 1 + endif + enddo + + do i=1,MAX_SIZE + rbuf(i) = -1 + enddo + do i=1,size + rcounts(i) = (i-1) + rank + rdispls(i) = (i-1) * (2*size) + do j=0,rcounts(i)-1 + rbuf(rdispls(i)+j+1) = 100 * rank + 10 * (i-1) + j + enddo + enddo + call mpi_alltoallv( MPI_IN_PLACE, 0, 0, MPI_DATATYPE_NULL, & + & rbuf, rcounts, rdispls, MPI_INTEGER, & + & comm, ierr ) + do i=1,size + do j=0,rcounts(i)-1 + iexpected = 100 * (i-1) + 10 * rank + j + igot = rbuf(rdispls(i)+j+1) + if ( igot .ne. iexpected ) then + errs = errs + 1 + print *, '[', rank, '] ALLTOALLV got ', igot, & + & ',but expected ', iexpected, & + & ' for block=', i-1, ' element=', j + endif + enddo + enddo + + do i=1,MAX_SIZE + rbuf(i) = -1 + enddo +! Alltoallw's displs[] are in bytes not in type extents. + do i=1,size + rcounts(i) = (i-1) + rank + rdispls(i) = (i-1) * (2*size) * SIZEOFINT + rtypes(i) = MPI_INTEGER + do j=0,rcounts(i)-1 + rbuf(rdispls(i)/SIZEOFINT+j+1) = 100 * rank & + & + 10 * (i-1) + j + enddo + enddo + call mpi_alltoallw( MPI_IN_PLACE, 0, 0, MPI_DATATYPE_NULL, & + & rbuf, rcounts, rdispls, rtypes, & + & comm, ierr ) + do i=1,size + do j=0,rcounts(i)-1 + iexpected = 100 * (i-1) + 10 * rank + j + igot = rbuf(rdispls(i)/SIZEOFINT+j+1) + if ( igot .ne. iexpected ) then + errs = errs + 1 + print *, '[', rank, '] ALLTOALLW got ', igot, & + & ',but expected ', iexpected, & + & ' for block=', i-1, ' element=', j + endif + enddo + enddo + + call mtest_finalize( errs ) + call mpi_finalize( ierr ) + + end diff --git a/teshsuite/smpi/mpich3-test/f90/datatype/CMakeLists.txt b/teshsuite/smpi/mpich3-test/f90/datatype/CMakeLists.txt new file mode 100644 index 0000000000..f03c073ac6 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/datatype/CMakeLists.txt @@ -0,0 +1,114 @@ +cmake_minimum_required(VERSION 2.6) + +if(enable_smpi) + if(WIN32) + set(CMAKE_C_FLAGS "-include ${CMAKE_HOME_DIRECTORY}/include/smpi/smpi_main.h") + else() + set(CMAKE_C_COMPILER "${CMAKE_BINARY_DIR}/smpi_script/bin/smpicc") + set(CMAKE_Fortran_COMPILER "${CMAKE_BINARY_DIR}/smpi_script/bin/smpif90") + endif() + + set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}") + set(MPICH_FLAGS "-DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DUSE_STDARG=1 -DHAVE_LONG_DOUBLE=1 -DHAVE_PROTOTYPES=1 -DHAVE_SIGNAL_H=1 -DHAVE_SIGACTION=1 -DHAVE_SLEEP=1 -DHAVE_SYSCONF=1 -Wno-error=unused-variable") + include_directories("${CMAKE_HOME_DIRECTORY}/include/smpi") + + add_executable(allctypesf90 allctypesf90.f90 ../util/mtestf90.f90) + # add_executable(createf90 createf90.f90 ../util/mtestf90.f90) + add_executable(gaddressf90 gaddressf90.f90 ../util/mtestf90.f90) + # add_executable(get_elem_d get_elem_d.f90 ../util/mtestf90.f90) + # add_executable(get_elem_u get_elem_u.f90 ../util/mtestf90.f90) + add_executable(hindex1f90 hindex1f90.f90 ../util/mtestf90.f90) + add_executable(hindexed_blockf90 hindexed_blockf90.f90 ../util/mtestf90.f90) + add_executable(indtype indtype.f90 ../util/mtestf90.f90) + add_executable(kinds kinds.f90 ../util/mtestf90.f90) + add_executable(packef90 packef90.f90 ../util/mtestf90.f90) + # add_executable(sizeof sizeof.f90 ../util/mtestf90.f90) + # add_executable(structf structf.f90 ../util/mtestf90.f90) + # add_executable(trf90 trf90.f90 ../util/mtestf90.f90) + add_executable(typecntsf90 typecntsf90.f90 ../util/mtestf90.f90) + add_executable(typem2f90 typem2f90.f90 ../util/mtestf90.f90) + add_executable(typename3f90 typename3f90.f90 ../util/mtestf90.f90) + add_executable(typenamef90 typenamef90.f90 ../util/mtestf90.f90) + add_executable(typesnamef90 typesnamef90.f90 ../util/mtestf90.f90) + add_executable(typesubf90 typesubf90.f90 ../util/mtestf90.f90) + target_link_libraries(allctypesf90 simgrid) + # target_link_libraries(createf90 simgrid) + target_link_libraries(gaddressf90 simgrid) + # target_link_libraries(get_elem_d simgrid) + # target_link_libraries(get_elem_u simgrid) + target_link_libraries(hindex1f90 simgrid) + target_link_libraries(hindexed_blockf90 simgrid) + target_link_libraries(indtype simgrid) + target_link_libraries(kinds simgrid) + target_link_libraries(packef90 simgrid) + # target_link_libraries(sizeof simgrid) + # target_link_libraries(structf simgrid) + # target_link_libraries(trf90 simgrid) + target_link_libraries(typecntsf90 simgrid) + target_link_libraries(typem2f90 simgrid) + target_link_libraries(typename3f90 simgrid) + target_link_libraries(typenamef90 simgrid) + target_link_libraries(typesnamef90 simgrid) + target_link_libraries(typesubf90 simgrid) + set_target_properties(allctypesf90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + # set_target_properties(createf90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + set_target_properties(gaddressf90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + # set_target_properties(get_elem_d PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + # set_target_properties(get_elem_u PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + set_target_properties(hindex1f90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + set_target_properties(hindexed_blockf90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + set_target_properties(indtype PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + set_target_properties(kinds PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + set_target_properties(packef90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + # set_target_properties(sizeof PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + # set_target_properties(structf PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + # set_target_properties(trf90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + set_target_properties(typecntsf90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + set_target_properties(typem2f90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + set_target_properties(typename3f90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + set_target_properties(typenamef90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + set_target_properties(typesnamef90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + set_target_properties(typesubf90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + +endif() + +set(tesh_files + ${tesh_files} + PARENT_SCOPE + ) +set(xml_files + ${xml_files} + PARENT_SCOPE + ) +set(examples_src + ${examples_src} + ${CMAKE_CURRENT_SOURCE_DIR}/allctypesf90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/createf90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/gaddressf90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/get_elem_d.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/get_elem_u.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/hindex1f90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/hindexed_blockf90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/indtype.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/kinds.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/packef90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/sizeof.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/structf.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/trf90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/typecntsf90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/typem2f90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/typename3f90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/typenamef90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/typesnamef90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/typesubf90.f90 + PARENT_SCOPE + ) +set(bin_files + ${bin_files} + PARENT_SCOPE + ) +set(txt_files + ${txt_files} + ${CMAKE_CURRENT_SOURCE_DIR}/testlist + PARENT_SCOPE + ) diff --git a/teshsuite/smpi/mpich3-test/f90/datatype/allctypesf90.f90 b/teshsuite/smpi/mpich3-test/f90/datatype/allctypesf90.f90 new file mode 100644 index 0000000000..1e1841f33e --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/datatype/allctypesf90.f90 @@ -0,0 +1,139 @@ +! This file created from test/mpi/f77/datatype/allctypesf.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2004 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + program main + use mpi + integer atype, ierr +! + call mtest_init(ierr) + call mpi_comm_set_errhandler( MPI_COMM_WORLD, MPI_ERRORS_RETURN, & + & ierr ) +! +! Check that all Ctypes are available in Fortran (MPI 2.1, p 483, line 46) +! + call checkdtype( MPI_CHAR, "MPI_CHAR", ierr ) + call checkdtype( MPI_SIGNED_CHAR, "MPI_SIGNED_CHAR", ierr ) + call checkdtype( MPI_UNSIGNED_CHAR, "MPI_UNSIGNED_CHAR", ierr ) + call checkdtype( MPI_BYTE, "MPI_BYTE", ierr ) + call checkdtype( MPI_WCHAR, "MPI_WCHAR", ierr ) + call checkdtype( MPI_SHORT, "MPI_SHORT", ierr ) + call checkdtype( MPI_UNSIGNED_SHORT, "MPI_UNSIGNED_SHORT", ierr ) + call checkdtype( MPI_INT, "MPI_INT", ierr ) + call checkdtype( MPI_UNSIGNED, "MPI_UNSIGNED", ierr ) + call checkdtype( MPI_LONG, "MPI_LONG", ierr ) + call checkdtype( MPI_UNSIGNED_LONG, "MPI_UNSIGNED_LONG", ierr ) + call checkdtype( MPI_FLOAT, "MPI_FLOAT", ierr ) + call checkdtype( MPI_DOUBLE, "MPI_DOUBLE", ierr ) + if (MPI_LONG_DOUBLE .ne. MPI_DATATYPE_NULL) then + call checkdtype( MPI_LONG_DOUBLE, "MPI_LONG_DOUBLE", ierr ) + endif + if (MPI_LONG_LONG_INT .ne. MPI_DATATYPE_NULL) then + call checkdtype2( MPI_LONG_LONG_INT, "MPI_LONG_LONG_INT", & + & "MPI_LONG_LONG", ierr ) + endif + if (MPI_UNSIGNED_LONG_LONG .ne. MPI_DATATYPE_NULL) then + call checkdtype( MPI_UNSIGNED_LONG_LONG, & + & "MPI_UNSIGNED_LONG_LONG", ierr ) + endif + if (MPI_LONG_LONG .ne. MPI_DATATYPE_NULL) then + call checkdtype2( MPI_LONG_LONG, "MPI_LONG_LONG", & + & "MPI_LONG_LONG_INT", ierr ) + endif + call checkdtype( MPI_PACKED, "MPI_PACKED", ierr ) + call checkdtype( MPI_LB, "MPI_LB", ierr ) + call checkdtype( MPI_UB, "MPI_UB", ierr ) + call checkdtype( MPI_FLOAT_INT, "MPI_FLOAT_INT", ierr ) + call checkdtype( MPI_DOUBLE_INT, "MPI_DOUBLE_INT", ierr ) + call checkdtype( MPI_LONG_INT, "MPI_LONG_INT", ierr ) + call checkdtype( MPI_SHORT_INT, "MPI_SHORT_INT", ierr ) + call checkdtype( MPI_2INT, "MPI_2INT", ierr ) + if (MPI_LONG_DOUBLE_INT .ne. MPI_DATATYPE_NULL) then + call checkdtype( MPI_LONG_DOUBLE_INT, "MPI_LONG_DOUBLE_INT", & + & ierr) + endif +! +! Check that all Ctypes are available in Fortran (MPI 2.2) +! Note that because of implicit declarations in Fortran, this +! code should compile even with pre MPI 2.2 implementations. +! + if (MPI_VERSION .gt. 2 .or. (MPI_VERSION .eq. 2 .and. & + & MPI_SUBVERSION .ge. 2)) then + call checkdtype( MPI_INT8_T, "MPI_INT8_T", ierr ) + call checkdtype( MPI_INT16_T, "MPI_INT16_T", ierr ) + call checkdtype( MPI_INT32_T, "MPI_INT32_T", ierr ) + call checkdtype( MPI_INT64_T, "MPI_INT64_T", ierr ) + call checkdtype( MPI_UINT8_T, "MPI_UINT8_T", ierr ) + call checkdtype( MPI_UINT16_T, "MPI_UINT16_T", ierr ) + call checkdtype( MPI_UINT32_T, "MPI_UINT32_T", ierr ) + call checkdtype( MPI_UINT64_T, "MPI_UINT64_T", ierr ) +! other C99 types + call checkdtype( MPI_C_BOOL, "MPI_C_BOOL", ierr ) + call checkdtype( MPI_C_FLOAT_COMPLEX, "MPI_C_FLOAT_COMPLEX", & + & ierr) + call checkdtype2( MPI_C_COMPLEX, "MPI_C_COMPLEX", & + & "MPI_C_FLOAT_COMPLEX", ierr ) + call checkdtype( MPI_C_DOUBLE_COMPLEX, "MPI_C_DOUBLE_COMPLEX", & + & ierr ) + if (MPI_C_LONG_DOUBLE_COMPLEX .ne. MPI_DATATYPE_NULL) then + call checkdtype( MPI_C_LONG_DOUBLE_COMPLEX, & + & "MPI_C_LONG_DOUBLE_COMPLEX", ierr ) + endif +! address/offset types + call checkdtype( MPI_AINT, "MPI_AINT", ierr ) + call checkdtype( MPI_OFFSET, "MPI_OFFSET", ierr ) + endif +! + call mtest_finalize( ierr ) + call MPI_Finalize( ierr ) + end +! +! Check name of datatype + subroutine CheckDtype( intype, name, ierr ) + use mpi + integer intype, ierr + character *(*) name + integer ir, rlen + character *(MPI_MAX_OBJECT_NAME) outname +! + outname = "" + call MPI_TYPE_GET_NAME( intype, outname, rlen, ir ) + if (ir .ne. MPI_SUCCESS) then + print *, " Datatype ", name, " not available in Fortran" + ierr = ierr + 1 + else + if (outname .ne. name) then + print *, " For datatype ", name, " found name ", & + & outname(1:rlen) + ierr = ierr + 1 + endif + endif + + return + end +! +! Check name of datatype (allows alias) + subroutine CheckDtype2( intype, name, name2, ierr ) + use mpi + integer intype, ierr + character *(*) name, name2 + integer ir, rlen + character *(MPI_MAX_OBJECT_NAME) outname +! + outname = "" + call MPI_TYPE_GET_NAME( intype, outname, rlen, ir ) + if (ir .ne. MPI_SUCCESS) then + print *, " Datatype ", name, " not available in Fortran" + ierr = ierr + 1 + else + if (outname .ne. name .and. outname .ne. name2) then + print *, " For datatype ", name, " found name ", & + & outname(1:rlen) + ierr = ierr + 1 + endif + endif + + return + end diff --git a/teshsuite/smpi/mpich3-test/f90/datatype/createf90.f90 b/teshsuite/smpi/mpich3-test/f90/datatype/createf90.f90 new file mode 100644 index 0000000000..b2edf87b6f --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/datatype/createf90.f90 @@ -0,0 +1,68 @@ +! +! (C) 2004 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + program main + use mpi + integer ierr + integer errs + integer nints, nadds, ndtypes, combiner + integer nparms(2), dummy(1) + integer (kind=MPI_ADDRESS_KIND) adummy(1) + integer ntype1, nsize, ntype2, ntype3, i +! +! Test the Type_create_f90_xxx routines +! + errs = 0 + call mtest_init( ierr ) + +! integers with upto 9 are 4 bytes integers; r of 4 are 2 byte, +! and r of 2 is 1 byte + call mpi_type_create_f90_integer( 9, ntype1, ierr ) +! +! Check with get contents and envelope... + call mpi_type_get_envelope( ntype1, nints, nadds, ndtypes, & + combiner, ierr ) + if (nadds .ne. 0) then + errs = errs + 1 + print *, "There should be no addresses on created type (r=9)" + endif + if (ndtypes .ne. 0) then + errs = errs + 1 + print *, "There should be no datatypes on created type (r=9)" + endif + if (nints .ne. 1) then + errs = errs + 1 + print *, "There should be exactly 1 integer on create type (r=9)" + endif + if (combiner .ne. MPI_COMBINER_F90_INTEGER) then + errs = errs + 1 + print *, "The combiner should be INTEGER, not ", combiner + endif + if (nints .eq. 1) then + call mpi_type_get_contents( ntype1, 1, 0, 0, & + nparms, adummy, dummy, ierr ) + if (nparms(1) .ne. 9) then + errs = errs + 1 + print *, "parameter was ", nparms(1), " should be 9" + endif + endif + + call mpi_type_create_f90_integer( 8, ntype2, ierr ) + if (ntype1 .eq. ntype2) then + errs = errs + 1 + print *, "Types with r = 8 and r = 9 are the same, ", & + "should be distinct" + endif + +! +! Check that we don't create new types each time. This test will fail only +! if the MPI implementation checks for un-freed types or runs out of space + do i=1, 100000 + call mpi_type_create_f90_integer( 8, ntype3, ierr ) + enddo + + call mtest_finalize( errs ) + call mpi_finalize( ierr ) + + end diff --git a/teshsuite/smpi/mpich3-test/f90/datatype/gaddressf90.f90 b/teshsuite/smpi/mpich3-test/f90/datatype/gaddressf90.f90 new file mode 100644 index 0000000000..b146f4f4b9 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/datatype/gaddressf90.f90 @@ -0,0 +1,39 @@ +! This file created from test/mpi/f77/datatype/gaddressf.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! +! (C) 2003 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + program main + use mpi + integer max_asizev + parameter (max_asizev=2) + integer (kind=MPI_ADDRESS_KIND) aint, aintv(max_asizev) + + integer iarray(200), gap, intsize + integer ierr, errs + + errs = 0 + + call MPI_Init(ierr) + + call MPI_Get_address( iarray(1), aintv(1), ierr ) + call MPI_Get_address( iarray(200), aintv(2), ierr ) + gap = aintv(2) - aintv(1) + + call MPI_Type_size( MPI_INTEGER, intsize, ierr ) + + if (gap .ne. 199 * intsize) then + errs = errs + 1 + print *, ' Using get_address, computed a gap of ', gap + print *, ' Expected a gap of ', 199 * intsize + endif + if (errs .gt. 0) then + print *, ' Found ', errs, ' errors' + else + print *, ' No Errors' + endif + + call MPI_Finalize( ierr ) + end diff --git a/teshsuite/smpi/mpich3-test/f90/datatype/get_elem_d.f90 b/teshsuite/smpi/mpich3-test/f90/datatype/get_elem_d.f90 new file mode 100644 index 0000000000..00c112347f --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/datatype/get_elem_d.f90 @@ -0,0 +1,124 @@ +! -*- Mode: Fortran; -*- +! +! (C) 2013 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + +! Based on a test written by Jim Hoekstra on behalf of Cray, Inc. +! see ticket #884 https://trac.mpich.org/projects/mpich/ticket/884 + +program get_elem_d + + use mpi +! implicit none + + integer, parameter :: verbose=0 + integer, parameter :: cmax=100,dmax=100,imax=60 + integer, parameter :: nb=2 + integer :: comm,rank,size,dest,ierror,errs=0 + integer :: status(MPI_STATUS_SIZE) + integer :: i,ii,count,ka,j,jj,k,kj,krat,tag=100 + integer :: blklen(nb)=(/2,2/) + integer :: types(nb)=(/MPI_DOUBLE_PRECISION,MPI_INTEGER/) + integer(kind=MPI_ADDRESS_KIND) :: disp(nb) + integer :: newtype,ntlen,ians(0:23),ians0(0:3),ians1(20),ians2(20) + double precision :: dbuff(dmax), a + integer :: ibuff(imax) + character :: cbuff(cmax)='X' + + call MPI_Init(ierror) + comm=MPI_COMM_WORLD + call MPI_Comm_size(comm, size, ierror) + dest=size-1 + call MPI_Comm_rank(comm, rank, ierror) + call MPI_Sizeof (j, kj, ierror) + call MPI_Sizeof (a, ka, ierror) + ntlen=2*ka+2*kj + krat=ntlen/kj + disp=(/0,2*ka/) + + ! calculate answers for expected i values for Get_elements with derived type + ians0(0)=ka + ians0(1)=2*ka + ians0(2)=2*ka+kj + ians0(3)=2*ka+2*kj + ii=0 + do i=1,24 + if (i .eq. ians0(ii)) ii=ii+1 + ians1(i)=ii + enddo + if (rank == 0 .and. verbose > 0) print *, (ians1(k),k=1,24) + jj=0 + do j=0,19,4 + ians(j)=jj+ka/kj + ians(j+1)=jj+2*(ka/kj) + ians(j+2)=jj+2*(ka/kj)+1 + ians(j+3)=jj+2*(ka/kj)+2 + if (rank == 0 .and. verbose > 0) print *, (ians(k),k=j,j+3) + jj=jj+ntlen/kj + enddo + ii=0 + do i=1,20 + if (i .eq. ians(ii)) ii=ii+1 + ians2(i)=ii + enddo + if (rank == 0 .and. verbose > 0) print *, (ians2(k),k=1,20) + + if (verbose > 0) print *, MPI_UNDEFINED + + call MPI_Type_create_struct(nb, blklen, disp, types, newtype, ierror) + call MPI_Type_commit(newtype, ierror) + + do i=1,24 + if (rank == 0) then + call MPI_Send(cbuff, i, MPI_BYTE, dest, 100, comm, ierror) + + else if (rank == dest) then + + ! first receive + call MPI_Recv(dbuff, dmax, newtype, 0, 100, comm, status, ierror) + ! check on MPI_Get_elements + call MPI_Get_elements(status, newtype, count, ierror) + if (count .ne. ians1(i)) then + errs=errs+1 + write (*,fmt="(i2,' R1 Get_elements count=',i3,& + &' but should be ',i3)") i,count,ians1(i) + endif + + else + ! other ranks do not participate + endif + enddo + + do i=1,20 + if (rank == 0) then + call MPI_Send(ibuff, i, MPI_INTEGER, dest, 100, comm, ierror) + + else if (rank == dest) then + + ! second receive + call MPI_Recv(dbuff, dmax, newtype, 0, 100, comm, status, ierror) + ! check on MPI_Get_elements + call MPI_Get_elements(status, newtype, count, ierror) + if (count .ne. ians2(i)) then + errs=errs+1 + write (*,fmt="(i2,' R2 Get_elements count=',i3,& + &' but should be ',i3)") i,count,ians2(i) + endif + else + ! other ranks do not participate + endif + enddo + + if (rank .eq. dest) then + if (errs .eq. 0) then + write (*,*) " No Errors" + else + print *, 'errs=',errs + endif + endif + + call MPI_Type_free(newtype, ierror) + call MPI_Finalize(ierror) + +end program get_elem_d diff --git a/teshsuite/smpi/mpich3-test/f90/datatype/get_elem_u.f90 b/teshsuite/smpi/mpich3-test/f90/datatype/get_elem_u.f90 new file mode 100644 index 0000000000..aa9f8feaaa --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/datatype/get_elem_u.f90 @@ -0,0 +1,72 @@ +! -*- Mode: Fortran; -*- +! +! (C) 2013 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + +! Based on a test written by Jim Hoekstra on behalf of Cray, Inc. +! see ticket #884 https://trac.mpich.org/projects/mpich/ticket/884 + +PROGRAM get_elem_u + + USE mpi + IMPLICIT NONE + INTEGER RANK, SIZE, IERR, COMM, errs + INTEGER MAX, I, K, dest + INTEGER STATUS(MPI_STATUS_SIZE) + + INTEGER, PARAMETER :: nb=2 + INTEGER :: blklen(nb)=(/1,1/) + INTEGER :: types(nb)=(/MPI_DOUBLE_PRECISION,MPI_CHAR/) + INTEGER(kind=MPI_ADDRESS_KIND) :: disp(nb)=(/0,8/) + + INTEGER, PARAMETER :: amax=200 + INTEGER :: type1, type2, extent + REAL :: a(amax) + + errs = 0 + CALL MPI_Init( ierr ) + COMM = MPI_COMM_WORLD + CALL MPI_Comm_rank(COMM,RANK,IERR) + CALL MPI_Comm_size(COMM,SIZE,IERR) + dest=size-1 + + CALL MPI_Type_create_struct(nb, blklen, disp, types, type1, ierr) + CALL MPI_Type_commit(type1, ierr) + CALL MPI_Type_extent(type1, extent, ierr) + + CALL MPI_Type_contiguous(4, Type1, Type2, ierr) + CALL MPI_Type_commit(Type2, ierr) + CALL MPI_Type_extent(Type2, extent, ierr) + + DO k=1,17 + + IF(rank .EQ. 0) THEN + + ! send k copies of datatype Type1 + CALL MPI_Send(a, k, Type1, dest, 0, comm, ierr) + + ELSE IF (rank == dest) THEN + + CALL MPI_Recv(a, 200, Type2, 0, 0, comm, status, ierr) + CALL MPI_Get_elements(status, Type2, i, ierr) + IF (i .NE. 2*k) THEN + errs = errs+1 + PRINT *, "k=",k," MPI_Get_elements returns", i, ", but it should be", 2*k + END IF + + ELSE + ! thix rank does not particupate + END IF + enddo + + CALL MPI_Type_free(type1, ierr) + CALL MPI_Type_free(type2, ierr) + + CALL MPI_Finalize( ierr ) + + IF(rank .EQ. 0 .AND. errs .EQ. 0) THEN + PRINT *, " No Errors" + END IF + +END PROGRAM get_elem_u diff --git a/teshsuite/smpi/mpich3-test/f90/datatype/hindex1f90.f90 b/teshsuite/smpi/mpich3-test/f90/datatype/hindex1f90.f90 new file mode 100644 index 0000000000..7941ced3c5 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/datatype/hindex1f90.f90 @@ -0,0 +1,61 @@ +! This file created from test/mpi/f77/datatype/hindex1f.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! +! (C) 2011 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + program main + use mpi + integer errs, ierr, intsize + integer i, displs(10), counts(10), dtype + integer bufsize + parameter (bufsize=100) + integer inbuf(bufsize), outbuf(bufsize), packbuf(bufsize) + integer position, len, psize +! +! Test for hindexed; +! + errs = 0 + call mtest_init( ierr ) + + call mpi_type_size( MPI_INTEGER, intsize, ierr ) + + do i=1, 10 + displs(i) = (10-i)*intsize + counts(i) = 1 + enddo + call mpi_type_hindexed( 10, counts, displs, MPI_INTEGER, dtype, & + & ierr ) + call mpi_type_commit( dtype, ierr ) +! + call mpi_pack_size( 1, dtype, MPI_COMM_WORLD, psize, ierr ) + if (psize .gt. bufsize*intsize) then + errs = errs + 1 + else + do i=1,10 + inbuf(i) = i + outbuf(i) = -i + enddo + position = 0 + call mpi_pack( inbuf, 1, dtype, packbuf, psize, position, & + & MPI_COMM_WORLD, ierr ) +! + len = position + position = 0 + call mpi_unpack( packbuf, len, position, outbuf, 10, & + & MPI_INTEGER, MPI_COMM_WORLD, ierr ) +! + do i=1, 10 + if (outbuf(i) .ne. 11-i) then + errs = errs + 1 + print *, 'outbuf(',i,')=',outbuf(i),', expected ', 10-i + endif + enddo + endif +! + call mpi_type_free( dtype, ierr ) +! + call mtest_finalize( errs ) + call mpi_finalize( ierr ) + end diff --git a/teshsuite/smpi/mpich3-test/f90/datatype/hindexed_blockf90.f90 b/teshsuite/smpi/mpich3-test/f90/datatype/hindexed_blockf90.f90 new file mode 100644 index 0000000000..32a59e7ac4 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/datatype/hindexed_blockf90.f90 @@ -0,0 +1,179 @@ +! This file created from test/mpi/f77/datatype/hindexed_blockf.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2003 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + program main + use mpi + integer errs, ierr, i, intsize + integer type1, type2, type3, type4, type5 + integer max_asizev + parameter (max_asizev = 10) + integer (kind=MPI_ADDRESS_KIND) aint, aintv(max_asizev) + + integer blocklens(max_asizev), dtypes(max_asizev) + integer displs(max_asizev) + integer recvbuf(6*max_asizev) + integer sendbuf(max_asizev), status(MPI_STATUS_SIZE) + integer rank, size + + errs = 0 + + call mtest_init( ierr ) + + call mpi_comm_size( MPI_COMM_WORLD, size, ierr ) + call mpi_comm_rank( MPI_COMM_WORLD, rank, ierr ) +! + call mpi_type_size( MPI_INTEGER, intsize, ierr ) +! + aintv(1) = 0 + aintv(2) = 3 * intsize + call mpi_type_create_resized( MPI_INTEGER, aintv(1), aintv(2), & + & type1, ierr ) + call mpi_type_commit( type1, ierr ) + aintv(1) = -1 + aintv(2) = -1 + call mpi_type_get_extent( type1, aintv(1), aintv(2), ierr ) + if (aintv(1) .ne. 0) then + errs = errs + 1 + print *, 'Did not get expected lb' + endif + if (aintv(2) .ne. 3*intsize) then + errs = errs + 1 + print *, 'Did not get expected extent' + endif + aintv(1) = -1 + aintv(2) = -1 + call mpi_type_get_true_extent( type1, aintv(1), aintv(2), ierr ) + if (aintv(1) .ne. 0) then + errs = errs + 1 + print *, 'Did not get expected true lb' + endif + if (aintv(2) .ne. intsize) then + errs = errs + 1 + print *, 'Did not get expected true extent (', aintv(2), ') ', & + & ' expected ', intsize + endif +! + do i=1,10 + blocklens(i) = 1 + aintv(i) = (i-1) * 3 * intsize + enddo + call mpi_type_create_hindexed( 10, blocklens, aintv, & + & MPI_INTEGER, type2, ierr ) + call mpi_type_commit( type2, ierr ) +! + aint = 3 * intsize + call mpi_type_create_hvector( 10, 1, aint, MPI_INTEGER, type3, & + & ierr ) + call mpi_type_commit( type3, ierr ) +! + do i=1,10 + blocklens(i) = 1 + dtypes(i) = MPI_INTEGER + aintv(i) = (i-1) * 3 * intsize + enddo + call mpi_type_create_struct( 10, blocklens, aintv, dtypes, & + & type4, ierr ) + call mpi_type_commit( type4, ierr ) + + call mpi_type_get_extent(MPI_INTEGER, aintv(1), aint, ierr) + do i=1,10 + aintv(i) = (i-1) * 3 * aint + enddo + call mpi_type_create_hindexed_block( 10, 1, aintv, & + & MPI_INTEGER, type5, ierr ) + call mpi_type_commit( type5, ierr ) +! +! Using each time, send and receive using these types + do i=1, max_asizev*3 + recvbuf(i) = -1 + enddo + do i=1, max_asizev + sendbuf(i) = i + enddo + call mpi_sendrecv( sendbuf, max_asizev, MPI_INTEGER, rank, 0, & + & recvbuf, max_asizev, type1, rank, 0, & + & MPI_COMM_WORLD, status, ierr ) + do i=1, max_asizev + if (recvbuf(1+(i-1)*3) .ne. i ) then + errs = errs + 1 + print *, 'type1:', i, 'th element = ', recvbuf(1+(i-1)*3) + endif + enddo +! + do i=1, max_asizev*3 + recvbuf(i) = -1 + enddo + do i=1, max_asizev + sendbuf(i) = i + enddo + call mpi_sendrecv( sendbuf, max_asizev, MPI_INTEGER, rank, 0, & + & recvbuf, 1, type2, rank, 0, & + & MPI_COMM_WORLD, status, ierr ) + do i=1, max_asizev + if (recvbuf(1+(i-1)*3) .ne. i ) then + errs = errs + 1 + print *, 'type2:', i, 'th element = ', recvbuf(1+(i-1)*3) + endif + enddo +! + do i=1, max_asizev*3 + recvbuf(i) = -1 + enddo + do i=1, max_asizev + sendbuf(i) = i + enddo + call mpi_sendrecv( sendbuf, max_asizev, MPI_INTEGER, rank, 0, & + & recvbuf, 1, type3, rank, 0, & + & MPI_COMM_WORLD, status, ierr ) + do i=1, max_asizev + if (recvbuf(1+(i-1)*3) .ne. i ) then + errs = errs + 1 + print *, 'type3:', i, 'th element = ', recvbuf(1+(i-1)*3) + endif + enddo +! + do i=1, max_asizev*3 + recvbuf(i) = -1 + enddo + do i=1, max_asizev + sendbuf(i) = i + enddo + call mpi_sendrecv( sendbuf, max_asizev, MPI_INTEGER, rank, 0, & + & recvbuf, 1, type4, rank, 0, & + & MPI_COMM_WORLD, status, ierr ) + do i=1, max_asizev + if (recvbuf(1+(i-1)*3) .ne. i ) then + errs = errs + 1 + print *, 'type4:', i, 'th element = ', recvbuf(1+(i-1)*3) + endif + enddo +! + do i=1, max_asizev*3 + recvbuf(i) = -1 + enddo + do i=1, max_asizev + sendbuf(i) = i + enddo + call mpi_sendrecv( sendbuf, max_asizev, MPI_INTEGER, rank, 0, & + & recvbuf, 1, type5, rank, 0, & + & MPI_COMM_WORLD, status, ierr ) + do i=1, max_asizev + if (recvbuf(1+(i-1)*3) .ne. i ) then + errs = errs + 1 + print *, 'type5:', i, 'th element = ', recvbuf(1+(i-1)*3) + endif + enddo +! + call mpi_type_free( type1, ierr ) + call mpi_type_free( type2, ierr ) + call mpi_type_free( type3, ierr ) + call mpi_type_free( type4, ierr ) + call mpi_type_free( type5, ierr ) + + call mtest_finalize( errs ) + call mpi_finalize( ierr ) + + end diff --git a/teshsuite/smpi/mpich3-test/f90/datatype/indtype.f90 b/teshsuite/smpi/mpich3-test/f90/datatype/indtype.f90 new file mode 100644 index 0000000000..79829e7a2f --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/datatype/indtype.f90 @@ -0,0 +1,117 @@ +! -*- Mode: Fortran; -*- +! +! (C) 2003 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! +! This test contributed by Kim McMahon, Cray +! + program main + implicit none + use mpi + + integer ierr, i, j, type, count,errs + parameter (count = 4) + integer rank, size, xfersize + integer status(MPI_STATUS_SIZE) + integer blocklens(count), displs(count) + double precision,dimension(:,:),allocatable :: sndbuf, rcvbuf + logical verbose + + verbose = .false. + call mtest_init ( ierr ) + call mpi_comm_size( MPI_COMM_WORLD, size, ierr ) + call mpi_comm_rank( MPI_COMM_WORLD, rank, ierr ) + if (size .lt. 2) then + print *, "Must have at least 2 processes" + call MPI_Abort( 1, MPI_COMM_WORLD, ierr ) + endif + + errs = 0 + allocate(sndbuf(7,100)) + allocate(rcvbuf(7,100)) + + do j=1,100 + do i=1,7 + sndbuf(i,j) = (i+j) * 1.0 + enddo + enddo + + do i=1,count + blocklens(i) = 7 + enddo + +! bug occurs when first two displacements are 0 + displs(1) = 0 + displs(2) = 0 + displs(3) = 10 + displs(4) = 10 + + call mpi_type_indexed( count, blocklens, displs*blocklens(1), & + & MPI_DOUBLE_PRECISION, type, ierr ) + + call mpi_type_commit( type, ierr ) + +! send using this new type + + if (rank .eq. 0) then + + call mpi_send( sndbuf(1,1), 1, type, 1, 0, MPI_COMM_WORLD,ierr ) + + else if (rank .eq. 1) then + + xfersize=count * blocklens(1) + call mpi_recv( rcvbuf(1,1), xfersize, MPI_DOUBLE_PRECISION, 0, 0, & + & MPI_COMM_WORLD,status, ierr ) + + +! Values that should be sent + + if (verbose) then +! displacement = 0 + j=1 + do i=1, 7 + print*,'sndbuf(',i,j,') = ',sndbuf(i,j) + enddo + +! displacement = 10 + j=11 + do i=1,7 + print*,'sndbuf(',i,j,') = ',sndbuf(i,j) + enddo + print*,' ' + +! Values received + do j=1,count + do i=1,7 + print*,'rcvbuf(',i,j,') = ',rcvbuf(i,j) + enddo + enddo + endif + +! Error checking + do j=1,2 + do i=1,7 + if (rcvbuf(i,j) .ne. sndbuf(i,1)) then + print*,'ERROR in rcvbuf(',i,j,')' + print*,'Received ', rcvbuf(i,j),' expected ',sndbuf(i,11) + errs = errs+1 + endif + enddo + enddo + + do j=3,4 + do i=1,7 + if (rcvbuf(i,j) .ne. sndbuf(i,11)) then + print*,'ERROR in rcvbuf(',i,j,')' + print*,'Received ', rcvbuf(i,j),' expected ',sndbuf(i,11) + errs = errs+1 + endif + enddo + enddo + endif +! + call mpi_type_free( type, ierr ) + call mtest_finalize( errs ) + call mpi_finalize( ierr ) + + end diff --git a/teshsuite/smpi/mpich3-test/f90/datatype/kinds.f90 b/teshsuite/smpi/mpich3-test/f90/datatype/kinds.f90 new file mode 100644 index 0000000000..3d42946571 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/datatype/kinds.f90 @@ -0,0 +1,115 @@ +! -*- Mode: Fortran; -*- +! +! (C) 2011 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! +! This program tests that all of the integer kinds defined in MPI 2.2 are +! available. +! + program main + use mpi + integer (kind=MPI_ADDRESS_KIND) aint, taint + integer (kind=MPI_OFFSET_KIND) oint, toint + integer (kind=MPI_INTEGER_KIND) iint, tiint + integer s(MPI_STATUS_SIZE) + integer i, wsize, wrank, ierr, errs +! + errs = 0 +! + call MTEST_INIT(ierr) + call MPI_COMM_SIZE(MPI_COMM_WORLD,wsize,ierr) + call MPI_COMM_RANK(MPI_COMM_WORLD,wrank,ierr) + if (wsize .lt. 2) then + print *, "This test requires at least 2 processes" + call MPI_ABORT( MPI_COMM_WORLD, 1, ierr ) + endif +! +! Some compilers (e.g., gfortran) will issue an error if, at compile time, +! an assignment would cause overflow, even if appropriated guarded. To +! avoid this problem, we must compute the value in the integer (the +! code here is simple; there are faster fixes for this but this is easy + if (wrank .eq. 0) then + if (range(aint) .ge. 10) then + aint = 1 + do i=1, range(aint)-1 + aint = aint * 10 + enddo + aint = aint - 1 + else + aint = 12345678 + endif + if (range(oint) .ge. 10) then + oint = 1 + do i=1, range(oint)-1 + oint = oint * 10 + enddo + oint = oint - 1 + else + oint = 12345678 + endif + if (range(iint) .ge. 10) then + iint = 1 + do i=1, range(iint)-1 + iint = iint * 10 + enddo + iint = iint - 1 + else + iint = 12345678 + endif + call MPI_SEND( aint, 1, MPI_AINT, 1, 0, MPI_COMM_WORLD, ierr ) + call MPI_SEND( oint, 1, MPI_OFFSET, 1, 1, MPI_COMM_WORLD, ierr ) + call MPI_SEND( iint, 1, MPI_INTEGER, 1, 2, MPI_COMM_WORLD, ierr ) +! + else if (wrank .eq. 1) then + if (range(taint) .ge. 10) then + taint = 1 + do i=1, range(taint)-1 + taint = taint * 10 + enddo + taint = taint - 1 + else + taint = 12345678 + endif + if (range(toint) .ge. 10) then + toint = 1 + do i=1, range(toint)-1 + toint = toint * 10 + enddo + toint = toint - 1 + else + toint = 12345678 + endif + if (range(tiint) .ge. 10) then + tiint = 1 + do i=1, range(tiint)-1 + tiint = tiint * 10 + enddo + tiint = tiint - 1 + else + tiint = 12345678 + endif + call MPI_RECV( aint, 1, MPI_AINT, 0, 0, MPI_COMM_WORLD, s, ierr ) + if (taint .ne. aint) then + print *, "Address-sized int not correctly transfered" + print *, "Value should be ", taint, " but is ", aint + errs = errs + 1 + endif + call MPI_RECV( oint, 1, MPI_OFFSET, 0, 1, MPI_COMM_WORLD, s, ierr ) + if (toint .ne. oint) then + print *, "Offset-sized int not correctly transfered" + print *, "Value should be ", toint, " but is ", oint + errs = errs + 1 + endif + call MPI_RECV( iint, 1, MPI_INTEGER, 0, 2, MPI_COMM_WORLD, s, ierr ) + if (tiint .ne. iint) then + print *, "Integer (by kind) not correctly transfered" + print *, "Value should be ", tiint, " but is ", iint + errs = errs + 1 + endif +! + endif +! + call MTEST_FINALIZE(errs) + call MPI_FINALIZE(ierr) + + end diff --git a/teshsuite/smpi/mpich3-test/f90/datatype/packef90.f90 b/teshsuite/smpi/mpich3-test/f90/datatype/packef90.f90 new file mode 100644 index 0000000000..801f1aafcf --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/datatype/packef90.f90 @@ -0,0 +1,188 @@ +! This file created from test/mpi/f77/datatype/packef.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2003 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + program main + use mpi + integer ierr, errs + integer inbuf(10), ioutbuf(10), inbuf2(10), ioutbuf2(10) + integer i, insize, rsize, csize, insize2 + character*(16) cbuf, coutbuf + double precision rbuf(10), routbuf(10) + integer packbuf(1000), pbufsize, intsize + integer max_asizev + parameter (max_asizev = 3) + integer (kind=MPI_ADDRESS_KIND) aint, aintv(max_asizev) + + + errs = 0 + call mtest_init( ierr ) + + call mpi_type_size( MPI_INTEGER, intsize, ierr ) + pbufsize = 1000 * intsize + + call mpi_pack_external_size( 'external32', 10, MPI_INTEGER, & + & aint, ierr ) + if (aint .ne. 10 * 4) then + errs = errs + 1 + print *, 'Expected 40 for size of 10 external32 integers', & + & ', got ', aint + endif + call mpi_pack_external_size( 'external32', 10, MPI_LOGICAL, & + & aint, ierr ) + if (aint .ne. 10 * 4) then + errs = errs + 1 + print *, 'Expected 40 for size of 10 external32 logicals', & + & ', got ', aint + endif + call mpi_pack_external_size( 'external32', 10, MPI_CHARACTER, & + & aint, ierr ) + if (aint .ne. 10 * 1) then + errs = errs + 1 + print *, 'Expected 10 for size of 10 external32 characters', & + & ', got ', aint + endif + + call mpi_pack_external_size( 'external32', 3, MPI_INTEGER2, & + & aint, ierr ) + if (aint .ne. 3 * 2) then + errs = errs + 1 + print *, 'Expected 6 for size of 3 external32 INTEGER*2', & + & ', got ', aint + endif + call mpi_pack_external_size( 'external32', 3, MPI_INTEGER4, & + & aint, ierr ) + if (aint .ne. 3 * 4) then + errs = errs + 1 + print *, 'Expected 12 for size of 3 external32 INTEGER*4', & + & ', got ', aint + endif + call mpi_pack_external_size( 'external32', 3, MPI_REAL4, & + & aint, ierr ) + if (aint .ne. 3 * 4) then + errs = errs + 1 + print *, 'Expected 12 for size of 3 external32 REAL*4', & + & ', got ', aint + endif + call mpi_pack_external_size( 'external32', 3, MPI_REAL8, & + & aint, ierr ) + if (aint .ne. 3 * 8) then + errs = errs + 1 + print *, 'Expected 24 for size of 3 external32 REAL*8', & + & ', got ', aint + endif + if (MPI_INTEGER1 .ne. MPI_DATATYPE_NULL) then + call mpi_pack_external_size( 'external32', 3, MPI_INTEGER1, & + & aint, ierr ) + if (aint .ne. 3 * 1) then + errs = errs + 1 + print *, 'Expected 3 for size of 3 external32 INTEGER*1', & + & ', got ', aint + endif + endif + if (MPI_INTEGER8 .ne. MPI_DATATYPE_NULL) then + call mpi_pack_external_size( 'external32', 3, MPI_INTEGER8, & + & aint, ierr ) + if (aint .ne. 3 * 8) then + errs = errs + 1 + print *, 'Expected 24 for size of 3 external32 INTEGER*8', & + & ', got ', aint + endif + endif + +! +! Initialize values +! + insize = 10 + do i=1, insize + inbuf(i) = i + enddo + rsize = 3 + do i=1, rsize + rbuf(i) = 1000.0 * i + enddo + cbuf = 'This is a string' + csize = 16 + insize2 = 7 + do i=1, insize2 + inbuf2(i) = 5000-i + enddo +! + aintv(1) = pbufsize + aintv(2) = 0 + aintv(3) = 0 +! One MPI implementation failed to increment the position; instead, +! it set the value with the amount of data packed in this call +! We use aintv(3) to detect and report this specific error + call mpi_pack_external( 'external32', inbuf, insize, MPI_INTEGER, & + & packbuf, aintv(1), aintv(2), ierr ) + if (aintv(2) .le. aintv(3)) then + print *, ' Position decreased after pack of integer!' + endif + aintv(3) = aintv(2) + call mpi_pack_external( 'external32', rbuf, rsize, & + & MPI_DOUBLE_PRECISION, packbuf, aintv(1), & + & aintv(2), ierr ) + if (aintv(2) .le. aintv(3)) then + print *, ' Position decreased after pack of real!' + endif + aintv(3) = aintv(2) + call mpi_pack_external( 'external32', cbuf, csize, & + & MPI_CHARACTER, packbuf, aintv(1), & + & aintv(2), ierr ) + if (aintv(2) .le. aintv(3)) then + print *, ' Position decreased after pack of character!' + endif + aintv(3) = aintv(2) + call mpi_pack_external( 'external32', inbuf2, insize2, & + & MPI_INTEGER, & + & packbuf, aintv(1), aintv(2), ierr ) + if (aintv(2) .le. aintv(3)) then + print *, ' Position decreased after pack of integer (2nd)!' + endif + aintv(3) = aintv(2) +! +! We could try sending this with MPI_BYTE... + aintv(2) = 0 + call mpi_unpack_external( 'external32', packbuf, aintv(1), & + & aintv(2), ioutbuf, insize, MPI_INTEGER, ierr ) + call mpi_unpack_external( 'external32', packbuf, aintv(1), & + & aintv(2), routbuf, rsize, MPI_DOUBLE_PRECISION, ierr ) + call mpi_unpack_external( 'external32', packbuf, aintv(1), & + & aintv(2), coutbuf, csize, MPI_CHARACTER, ierr ) + call mpi_unpack_external( 'external32', packbuf, aintv(1), & + & aintv(2), ioutbuf2, insize2, MPI_INTEGER, ierr ) +! +! Now, test the values +! + do i=1, insize + if (ioutbuf(i) .ne. i) then + errs = errs + 1 + print *, 'ioutbuf(',i,') = ', ioutbuf(i), ' expected ', i + endif + enddo + do i=1, rsize + if (routbuf(i) .ne. 1000.0 * i) then + errs = errs + 1 + print *, 'routbuf(',i,') = ', routbuf(i), ' expected ', & + & 1000.0 * i + endif + enddo + if (coutbuf(1:csize) .ne. 'This is a string') then + errs = errs + 1 + print *, 'coutbuf = ', coutbuf(1:csize), ' expected ', & + & 'This is a string' + endif + do i=1, insize2 + if (ioutbuf2(i) .ne. 5000-i) then + errs = errs + 1 + print *, 'ioutbuf2(',i,') = ', ioutbuf2(i), ' expected ', & + & 5000-i + endif + enddo +! + call mtest_finalize( errs ) + call mpi_finalize( ierr ) + end diff --git a/teshsuite/smpi/mpich3-test/f90/datatype/sizeof.f90 b/teshsuite/smpi/mpich3-test/f90/datatype/sizeof.f90 new file mode 100644 index 0000000000..7ace5f2c4f --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/datatype/sizeof.f90 @@ -0,0 +1,128 @@ +! -*- Mode: Fortran; -*- +! +! (C) 2007 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! +! This program tests that the MPI_SIZEOF routine is implemented for the +! predefined scalar Fortran types. It confirms that the size of these +! types matches the size of the corresponding MPI datatypes. +! + program main + use mpi + integer ierr, errs + integer rank, size, mpisize + logical verbose + real r1,r1v(2) + double precision d1,d1v(3) + complex c1,c1v(4) + integer i1,i1v(5) + character ch1,ch1v(6) + logical l1,l1v(7) + + verbose = .false. + errs = 0 + call mtest_init ( ierr ) + call mpi_comm_rank( MPI_COMM_WORLD, rank, ierr ) + +! Test of scalar types + call mpi_sizeof( r1, size, ierr ) + call mpi_type_size( MPI_REAL, mpisize, ierr ) + if (size .ne. mpisize) then + errs = errs + 1 + print *, "Size of MPI_REAL = ", mpisize, & + & " but MPI_SIZEOF gives ", size + endif + + call mpi_sizeof( d1, size, ierr ) + call mpi_type_size( MPI_DOUBLE_PRECISION, mpisize, ierr ) + if (size .ne. mpisize) then + errs = errs + 1 + print *, "Size of MPI_DOUBLE_PRECISION = ", mpisize, & + " but MPI_SIZEOF gives ", size + endif + + call mpi_sizeof( i1, size, ierr ) + call mpi_type_size( MPI_INTEGER, mpisize, ierr ) + if (size .ne. mpisize) then + errs = errs + 1 + print *, "Size of MPI_INTEGER = ", mpisize, & + & " but MPI_SIZEOF gives ", size + endif + + call mpi_sizeof( c1, size, ierr ) + call mpi_type_size( MPI_COMPLEX, mpisize, ierr ) + if (size .ne. mpisize) then + errs = errs + 1 + print *, "Size of MPI_COMPLEX = ", mpisize, & + & " but MPI_SIZEOF gives ", size + endif + + call mpi_sizeof( ch1, size, ierr ) + call mpi_type_size( MPI_CHARACTER, mpisize, ierr ) + if (size .ne. mpisize) then + errs = errs + 1 + print *, "Size of MPI_CHARACTER = ", mpisize, & + " but MPI_SIZEOF gives ", size + endif + + call mpi_sizeof( l1, size, ierr ) + call mpi_type_size( MPI_LOGICAL, mpisize, ierr ) + if (size .ne. mpisize) then + errs = errs + 1 + print *, "Size of MPI_LOGICAL = ", mpisize, & + & " but MPI_SIZEOF gives ", size + endif +! +! Test of vector types (1-dimensional) + call mpi_sizeof( r1v, size, ierr ) + call mpi_type_size( MPI_REAL, mpisize, ierr ) + if (size .ne. mpisize) then + errs = errs + 1 + print *, "Size of MPI_REAL = ", mpisize, & + & " but MPI_SIZEOF gives ", size + endif + + call mpi_sizeof( d1v, size, ierr ) + call mpi_type_size( MPI_DOUBLE_PRECISION, mpisize, ierr ) + if (size .ne. mpisize) then + errs = errs + 1 + print *, "Size of MPI_DOUBLE_PRECISION = ", mpisize, & + " but MPI_SIZEOF gives ", size + endif + + call mpi_sizeof( i1v, size, ierr ) + call mpi_type_size( MPI_INTEGER, mpisize, ierr ) + if (size .ne. mpisize) then + errs = errs + 1 + print *, "Size of MPI_INTEGER = ", mpisize, & + & " but MPI_SIZEOF gives ", size + endif + + call mpi_sizeof( c1v, size, ierr ) + call mpi_type_size( MPI_COMPLEX, mpisize, ierr ) + if (size .ne. mpisize) then + errs = errs + 1 + print *, "Size of MPI_COMPLEX = ", mpisize, & + & " but MPI_SIZEOF gives ", size + endif + + call mpi_sizeof( ch1v, size, ierr ) + call mpi_type_size( MPI_CHARACTER, mpisize, ierr ) + if (size .ne. mpisize) then + errs = errs + 1 + print *, "Size of MPI_CHARACTER = ", mpisize, & + " but MPI_SIZEOF gives ", size + endif + + call mpi_sizeof( l1v, size, ierr ) + call mpi_type_size( MPI_LOGICAL, mpisize, ierr ) + if (size .ne. mpisize) then + errs = errs + 1 + print *, "Size of MPI_LOGICAL = ", mpisize, & + & " but MPI_SIZEOF gives ", size + endif + + call mtest_finalize( errs ) + call mpi_finalize( ierr ) + + end diff --git a/teshsuite/smpi/mpich3-test/f90/datatype/structf.f90 b/teshsuite/smpi/mpich3-test/f90/datatype/structf.f90 new file mode 100644 index 0000000000..abc17daf16 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/datatype/structf.f90 @@ -0,0 +1,113 @@ +! +! (C) 2004 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! +! Thanks to +! William R. Magro +! for this test +! +! It has been modifiedly slightly to work with the automated MPI +! tests. +! WDG. +! +! It was further modified to use MPI_Get_address instead of MPI_Address +! for MPICH, and to fit in the MPICH test harness - WDG +! + program bustit + implicit none + use mpi + + integer comm + integer newtype + integer me + integer position + integer type(5) + integer length(5) + integer (kind=MPI_ADDRESS_KIND) disp(5) + integer bufsize + integer errs, toterrs + parameter (bufsize=100) + character buf(bufsize) + character name*(10) + integer status(MPI_STATUS_SIZE) + integer i, size + double precision x + integer src, dest + integer ierr + + errs = 0 +! Enroll in MPI + call mpi_init(ierr) + +! get my rank + call mpi_comm_rank(MPI_COMM_WORLD, me, ierr) + call mpi_comm_size(MPI_COMM_WORLD, size, ierr ) + if (size .lt. 2) then + print *, "Must have at least 2 processes" + call MPI_Abort( 1, MPI_COMM_WORLD, ierr ) + endif + + comm = MPI_COMM_WORLD + src = 0 + dest = 1 + + if(me.eq.src) then + i=5 + x=5.1234d0 + name="Hello" + + type(1)=MPI_CHARACTER + length(1)=5 + call mpi_get_address(name,disp(1),ierr) + + type(2)=MPI_DOUBLE_PRECISION + length(2)=1 + call mpi_get_address(x,disp(2),ierr) + + call mpi_type_create_struct(2,length,disp,type,newtype,ierr) + call mpi_type_commit(newtype,ierr) + call mpi_barrier( MPI_COMM_WORLD, ierr ) + call mpi_send(MPI_BOTTOM,1,newtype,dest,1,comm,ierr) + call mpi_type_free(newtype,ierr) +! write(*,*) "Sent ",name(1:5),x + else +! Everyone calls barrier incase size > 2 + call mpi_barrier( MPI_COMM_WORLD, ierr ) + if (me.eq.dest) then + position=0 + + name = " " + x = 0.0d0 + call mpi_recv(buf,bufsize,MPI_PACKED, src, & + & 1, comm, status, ierr) + + call mpi_unpack(buf,bufsize,position, & + & name,5,MPI_CHARACTER, comm,ierr) + call mpi_unpack(buf,bufsize,position, & + & x,1,MPI_DOUBLE_PRECISION, comm,ierr) +! Check the return values (/= is not-equal in F90) + if (name /= "Hello") then + errs = errs + 1 + print *, "Received ", name, " but expected Hello" + endif + if (abs(x-5.1234) .gt. 1.0e-6) then + errs = errs + 1 + print *, "Received ", x, " but expected 5.1234" + endif + endif + endif +! +! Sum up errs and report the result + call mpi_reduce( errs, toterrs, 1, MPI_INTEGER, MPI_SUM, 0, & + & MPI_COMM_WORLD, ierr ) + if (me .eq. 0) then + if (toterrs .eq. 0) then + print *, " No Errors" + else + print *, " Found ", toterrs, " errors" + endif + endif + + call mpi_finalize(ierr) + + end diff --git a/teshsuite/smpi/mpich3-test/f90/datatype/testlist b/teshsuite/smpi/mpich3-test/f90/datatype/testlist new file mode 100644 index 0000000000..715c66a050 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/datatype/testlist @@ -0,0 +1,20 @@ +# This file generated by f77tof90 +#typenamef90 1 +#typename3f90 1 mpiversion=3.0 +#typesnamef90 1 +#typecntsf90 1 +#typem2f90 1 +#typesubf90 1 +#packef90 1 +gaddressf90 1 +#allctypesf90 1 +#hindex1f90 1 +#hindexed_blockf90 1 mpiversion=1.0 +#structf 2 +indtype 2 +#createf90 1 +#sizeof 1 +kinds 2 mpiversion=1.0 +#trf90 1 +#get_elem_d 2 +#get_elem_u 2 diff --git a/teshsuite/smpi/mpich3-test/f90/datatype/trf90.f90 b/teshsuite/smpi/mpich3-test/f90/datatype/trf90.f90 new file mode 100644 index 0000000000..946e4cdd46 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/datatype/trf90.f90 @@ -0,0 +1,25 @@ +! -*- Mode: Fortran; -*- +! +! (C) 2011 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! +! Based on a sample program that triggered a segfault in MPICH +program testf90_mpi + implicit none + use mpi + + integer errs + integer :: rk_mpi, ierr, ctype + + errs = 0 + call mtest_init(ierr) + + call MPI_Type_create_f90_real(15, MPI_UNDEFINED, rk_mpi, ierr) + call MPI_Type_contiguous(19, rk_mpi, ctype, ierr) + call MPI_Type_commit(ctype, ierr) + call MPI_Type_free(ctype, ierr) + + call mtest_finalize(errs) + call MPI_Finalize(ierr) + +end program testf90_mpi diff --git a/teshsuite/smpi/mpich3-test/f90/datatype/typecntsf90.f90 b/teshsuite/smpi/mpich3-test/f90/datatype/typecntsf90.f90 new file mode 100644 index 0000000000..cfe399371c --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/datatype/typecntsf90.f90 @@ -0,0 +1,91 @@ +! This file created from test/mpi/f77/datatype/typecntsf.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2003 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + program main + use mpi + integer errs, ierr + integer ntype1, ntype2 +! +! This is a very simple test that just tests that the contents/envelope +! routines can be called. This should be upgraded to test the new +! MPI-2 datatype routines (which use address-sized integers) +! + + errs = 0 + call mtest_init( ierr ) + + call explore( MPI_INTEGER, MPI_COMBINER_NAMED, errs ) + call explore( MPI_BYTE, MPI_COMBINER_NAMED, errs ) + call mpi_type_vector( 10, 1, 30, MPI_DOUBLE_PRECISION, ntype1, & + & ierr ) + call explore( ntype1, MPI_COMBINER_VECTOR, errs ) + call mpi_type_dup( ntype1, ntype2, ierr ) + call explore( ntype2, MPI_COMBINER_DUP, errs ) + call mpi_type_free( ntype2, ierr ) + call mpi_type_free( ntype1, ierr ) + +! + call mtest_finalize( errs ) + call mpi_finalize( ierr ) + end +! + subroutine explore( dtype, mycomb, errs ) + use mpi + integer dtype, mycomb, errs + integer ierr + integer nints, nadds, ntype, combiner + integer max_nints, max_dtypes, max_asizev + parameter (max_nints = 10, max_dtypes = 10, max_asizev=10) + integer intv(max_nints), dtypesv(max_dtypes) + integer (kind=MPI_ADDRESS_KIND) aint, aintv(max_asizev) + +! + call mpi_type_get_envelope( dtype, nints, nadds, ntype, & + & combiner, ierr ) +! + if (combiner .ne. MPI_COMBINER_NAMED) then + call mpi_type_get_contents( dtype, & + & max_nints, max_asizev, max_dtypes, & + & intv, aintv, dtypesv, ierr ) +! +! dtypesv of constructed types must be free'd now +! + if (combiner .eq. MPI_COMBINER_DUP) then + call mpi_type_free( dtypesv(1), ierr ) + endif + endif + if (combiner .ne. mycomb) then + errs = errs + 1 + print *, ' Expected combiner ', mycomb, ' but got ', & + & combiner + endif +! +! List all combiner types to check that they are defined in mpif.h + if (combiner .eq. MPI_COMBINER_NAMED) then + else if (combiner .eq. MPI_COMBINER_DUP) then + else if (combiner .eq. MPI_COMBINER_CONTIGUOUS) then + else if (combiner .eq. MPI_COMBINER_VECTOR) then + else if (combiner .eq. MPI_COMBINER_HVECTOR_INTEGER) then + else if (combiner .eq. MPI_COMBINER_HVECTOR) then + else if (combiner .eq. MPI_COMBINER_INDEXED) then + else if (combiner .eq. MPI_COMBINER_HINDEXED_INTEGER) then + else if (combiner .eq. MPI_COMBINER_HINDEXED) then + else if (combiner .eq. MPI_COMBINER_INDEXED_BLOCK) then + else if (combiner .eq. MPI_COMBINER_STRUCT_INTEGER) then + else if (combiner .eq. MPI_COMBINER_STRUCT) then + else if (combiner .eq. MPI_COMBINER_SUBARRAY) then + else if (combiner .eq. MPI_COMBINER_DARRAY) then + else if (combiner .eq. MPI_COMBINER_F90_REAL) then + else if (combiner .eq. MPI_COMBINER_F90_COMPLEX) then + else if (combiner .eq. MPI_COMBINER_F90_INTEGER) then + else if (combiner .eq. MPI_COMBINER_RESIZED) then + else + errs = errs + 1 + print *, ' Unknown combiner ', combiner + endif + + return + end diff --git a/teshsuite/smpi/mpich3-test/f90/datatype/typem2f90.f90 b/teshsuite/smpi/mpich3-test/f90/datatype/typem2f90.f90 new file mode 100644 index 0000000000..c5eb8e535e --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/datatype/typem2f90.f90 @@ -0,0 +1,178 @@ +! This file created from test/mpi/f77/datatype/typem2f.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2003 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + program main + use mpi + integer errs, ierr, i, intsize + integer type1, type2, type3, type4, type5 + integer max_asizev + parameter (max_asizev = 10) + integer (kind=MPI_ADDRESS_KIND) aint, aintv(max_asizev) + + integer blocklens(max_asizev), dtypes(max_asizev) + integer displs(max_asizev) + integer recvbuf(6*max_asizev) + integer sendbuf(max_asizev), status(MPI_STATUS_SIZE) + integer rank, size + + errs = 0 + + call mtest_init( ierr ) + + call mpi_comm_size( MPI_COMM_WORLD, size, ierr ) + call mpi_comm_rank( MPI_COMM_WORLD, rank, ierr ) +! + call mpi_type_size( MPI_INTEGER, intsize, ierr ) +! + aintv(1) = 0 + aintv(2) = 3 * intsize + call mpi_type_create_resized( MPI_INTEGER, aintv(1), aintv(2), & + & type1, ierr ) + call mpi_type_commit( type1, ierr ) + aintv(1) = -1 + aintv(2) = -1 + call mpi_type_get_extent( type1, aintv(1), aintv(2), ierr ) + if (aintv(1) .ne. 0) then + errs = errs + 1 + print *, 'Did not get expected lb' + endif + if (aintv(2) .ne. 3*intsize) then + errs = errs + 1 + print *, 'Did not get expected extent' + endif + aintv(1) = -1 + aintv(2) = -1 + call mpi_type_get_true_extent( type1, aintv(1), aintv(2), ierr ) + if (aintv(1) .ne. 0) then + errs = errs + 1 + print *, 'Did not get expected true lb' + endif + if (aintv(2) .ne. intsize) then + errs = errs + 1 + print *, 'Did not get expected true extent (', aintv(2), ') ', & + & ' expected ', intsize + endif +! + do i=1,10 + blocklens(i) = 1 + aintv(i) = (i-1) * 3 * intsize + enddo + call mpi_type_create_hindexed( 10, blocklens, aintv, & + & MPI_INTEGER, type2, ierr ) + call mpi_type_commit( type2, ierr ) +! + aint = 3 * intsize + call mpi_type_create_hvector( 10, 1, aint, MPI_INTEGER, type3, & + & ierr ) + call mpi_type_commit( type3, ierr ) +! + do i=1,10 + blocklens(i) = 1 + dtypes(i) = MPI_INTEGER + aintv(i) = (i-1) * 3 * intsize + enddo + call mpi_type_create_struct( 10, blocklens, aintv, dtypes, & + & type4, ierr ) + call mpi_type_commit( type4, ierr ) + + do i=1,10 + displs(i) = (i-1) * 3 + enddo + call mpi_type_create_indexed_block( 10, 1, displs, & + & MPI_INTEGER, type5, ierr ) + call mpi_type_commit( type5, ierr ) +! +! Using each time, send and receive using these types + do i=1, max_asizev*3 + recvbuf(i) = -1 + enddo + do i=1, max_asizev + sendbuf(i) = i + enddo + call mpi_sendrecv( sendbuf, max_asizev, MPI_INTEGER, rank, 0, & + & recvbuf, max_asizev, type1, rank, 0, & + & MPI_COMM_WORLD, status, ierr ) + do i=1, max_asizev + if (recvbuf(1+(i-1)*3) .ne. i ) then + errs = errs + 1 + print *, 'type1:', i, 'th element = ', recvbuf(1+(i-1)*3) + endif + enddo +! + do i=1, max_asizev*3 + recvbuf(i) = -1 + enddo + do i=1, max_asizev + sendbuf(i) = i + enddo + call mpi_sendrecv( sendbuf, max_asizev, MPI_INTEGER, rank, 0, & + & recvbuf, 1, type2, rank, 0, & + & MPI_COMM_WORLD, status, ierr ) + do i=1, max_asizev + if (recvbuf(1+(i-1)*3) .ne. i ) then + errs = errs + 1 + print *, 'type2:', i, 'th element = ', recvbuf(1+(i-1)*3) + endif + enddo +! + do i=1, max_asizev*3 + recvbuf(i) = -1 + enddo + do i=1, max_asizev + sendbuf(i) = i + enddo + call mpi_sendrecv( sendbuf, max_asizev, MPI_INTEGER, rank, 0, & + & recvbuf, 1, type3, rank, 0, & + & MPI_COMM_WORLD, status, ierr ) + do i=1, max_asizev + if (recvbuf(1+(i-1)*3) .ne. i ) then + errs = errs + 1 + print *, 'type3:', i, 'th element = ', recvbuf(1+(i-1)*3) + endif + enddo +! + do i=1, max_asizev*3 + recvbuf(i) = -1 + enddo + do i=1, max_asizev + sendbuf(i) = i + enddo + call mpi_sendrecv( sendbuf, max_asizev, MPI_INTEGER, rank, 0, & + & recvbuf, 1, type4, rank, 0, & + & MPI_COMM_WORLD, status, ierr ) + do i=1, max_asizev + if (recvbuf(1+(i-1)*3) .ne. i ) then + errs = errs + 1 + print *, 'type4:', i, 'th element = ', recvbuf(1+(i-1)*3) + endif + enddo +! + do i=1, max_asizev*3 + recvbuf(i) = -1 + enddo + do i=1, max_asizev + sendbuf(i) = i + enddo + call mpi_sendrecv( sendbuf, max_asizev, MPI_INTEGER, rank, 0, & + & recvbuf, 1, type5, rank, 0, & + & MPI_COMM_WORLD, status, ierr ) + do i=1, max_asizev + if (recvbuf(1+(i-1)*3) .ne. i ) then + errs = errs + 1 + print *, 'type5:', i, 'th element = ', recvbuf(1+(i-1)*3) + endif + enddo +! + call mpi_type_free( type1, ierr ) + call mpi_type_free( type2, ierr ) + call mpi_type_free( type3, ierr ) + call mpi_type_free( type4, ierr ) + call mpi_type_free( type5, ierr ) + + call mtest_finalize( errs ) + call mpi_finalize( ierr ) + + end diff --git a/teshsuite/smpi/mpich3-test/f90/datatype/typename3f90.f90 b/teshsuite/smpi/mpich3-test/f90/datatype/typename3f90.f90 new file mode 100644 index 0000000000..4e91774ec7 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/datatype/typename3f90.f90 @@ -0,0 +1,41 @@ +! This file created from test/mpi/f77/datatype/typename3f.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! +! (C) 2012 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + program main + use mpi + character*(MPI_MAX_OBJECT_NAME) name + integer namelen + integer ierr, errs + + errs = 0 + + call mtest_init( ierr ) +! +! Check each Fortran datatype, including the size-specific ones +! See the C version (typename.c) for the relevant MPI sections + + call MPI_Type_get_name( MPI_AINT, name, namelen, ierr ) + if (name(1:namelen) .ne. "MPI_AINT") then + errs = errs + 1 + print *, "Expected MPI_AINT but got "//name(1:namelen) + endif + + call MPI_Type_get_name( MPI_OFFSET, name, namelen, ierr ) + if (name(1:namelen) .ne. "MPI_OFFSET") then + errs = errs + 1 + print *, "Expected MPI_OFFSET but got "//name(1:namelen) + endif + + call MPI_Type_get_name( MPI_COUNT, name, namelen, ierr ) + if (name(1:namelen) .ne. "MPI_COUNT") then + errs = errs + 1 + print *, "Expected MPI_COUNT but got "//name(1:namelen) + endif + + call mtest_finalize( errs ) + call MPI_Finalize( ierr ) + end diff --git a/teshsuite/smpi/mpich3-test/f90/datatype/typenamef90.f90 b/teshsuite/smpi/mpich3-test/f90/datatype/typenamef90.f90 new file mode 100644 index 0000000000..eda12ddf49 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/datatype/typenamef90.f90 @@ -0,0 +1,205 @@ +! This file created from test/mpi/f77/datatype/typenamef.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! +! (C) 2003 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + program main + use mpi + character*(MPI_MAX_OBJECT_NAME) name + integer namelen + integer ierr, errs + + errs = 0 + + call mtest_init( ierr ) +! +! Check each Fortran datatype, including the size-specific ones +! See the C version (typename.c) for the relevant MPI sections + + call MPI_Type_get_name( MPI_COMPLEX, name, namelen, ierr ) + if (name(1:namelen) .ne. "MPI_COMPLEX") then + errs = errs + 1 + print *, "Expected MPI_COMPLEX but got "//name(1:namelen) + endif + + call MPI_Type_get_name( MPI_DOUBLE_COMPLEX, name, namelen, ierr ) + if (name(1:namelen) .ne. "MPI_DOUBLE_COMPLEX") then + errs = errs + 1 + print *, "Expected MPI_DOUBLE_COMPLEX but got "// & + & name(1:namelen) + endif + + call MPI_Type_get_name( MPI_LOGICAL, name, namelen, ierr ) + if (name(1:namelen) .ne. "MPI_LOGICAL") then + errs = errs + 1 + print *, "Expected MPI_LOGICAL but got "//name(1:namelen) + endif + + call MPI_Type_get_name( MPI_REAL, name, namelen, ierr ) + if (name(1:namelen) .ne. "MPI_REAL") then + errs = errs + 1 + print *, "Expected MPI_REAL but got "//name(1:namelen) + endif + + call MPI_Type_get_name( MPI_DOUBLE_PRECISION, name, namelen, ierr) + if (name(1:namelen) .ne. "MPI_DOUBLE_PRECISION") then + errs = errs + 1 + print *, "Expected MPI_DOUBLE_PRECISION but got "// & + & name(1:namelen) + endif + + call MPI_Type_get_name( MPI_INTEGER, name, namelen, ierr ) + if (name(1:namelen) .ne. "MPI_INTEGER") then + errs = errs + 1 + print *, "Expected MPI_INTEGER but got "//name(1:namelen) + endif + + call MPI_Type_get_name( MPI_2INTEGER, name, namelen, ierr ) + if (name(1:namelen) .ne. "MPI_2INTEGER") then + errs = errs + 1 + print *, "Expected MPI_2INTEGER but got "//name(1:namelen) + endif + +! 2COMPLEX was present only in MPI 1.0 +! call MPI_Type_get_name( MPI_2COMPLEX, name, namelen, ierr ) +! if (name(1:namelen) .ne. "MPI_2COMPLEX") then +! errs = errs + 1 +! print *, "Expected MPI_2COMPLEX but got "//name(1:namelen) +! endif +! + call MPI_Type_get_name(MPI_2DOUBLE_PRECISION, name, namelen, ierr) + if (name(1:namelen) .ne. "MPI_2DOUBLE_PRECISION") then + errs = errs + 1 + print *, "Expected MPI_2DOUBLE_PRECISION but got "// & + & name(1:namelen) + endif + + call MPI_Type_get_name( MPI_2REAL, name, namelen, ierr ) + if (name(1:namelen) .ne. "MPI_2REAL") then + errs = errs + 1 + print *, "Expected MPI_2REAL but got "//name(1:namelen) + endif + +! 2DOUBLE_COMPLEX isn't in MPI 2.1 +! call MPI_Type_get_name( MPI_2DOUBLE_COMPLEX, name, namelen, ierr ) +! if (name(1:namelen) .ne. "MPI_2DOUBLE_COMPLEX") then +! errs = errs + 1 +! print *, "Expected MPI_2DOUBLE_COMPLEX but got "// +! & name(1:namelen) +! endif + + call MPI_Type_get_name( MPI_CHARACTER, name, namelen, ierr ) + if (name(1:namelen) .ne. "MPI_CHARACTER") then + errs = errs + 1 + print *, "Expected MPI_CHARACTER but got "//name(1:namelen) + endif + + call MPI_Type_get_name( MPI_BYTE, name, namelen, ierr ) + if (name(1:namelen) .ne. "MPI_BYTE") then + errs = errs + 1 + print *, "Expected MPI_BYTE but got "//name(1:namelen) + endif + + if (MPI_REAL4 .ne. MPI_DATATYPE_NULL) then + call MPI_Type_get_name( MPI_REAL4, name, namelen, ierr ) + if (name(1:namelen) .ne. "MPI_REAL4") then + errs = errs + 1 + print *, "Expected MPI_REAL4 but got "//name(1:namelen) + endif + endif + + if (MPI_REAL8 .ne. MPI_DATATYPE_NULL) then + call MPI_Type_get_name( MPI_REAL8, name, namelen, ierr ) + if (name(1:namelen) .ne. "MPI_REAL8") then + errs = errs + 1 + print *, "Expected MPI_REAL8 but got "//name(1:namelen) + endif + endif + + if (MPI_REAL16 .ne. MPI_DATATYPE_NULL) then + call MPI_Type_get_name( MPI_REAL16, name, namelen, ierr ) + if (name(1:namelen) .ne. "MPI_REAL16") then + errs = errs + 1 + print *, "Expected MPI_REAL16 but got "//name(1:namelen) + endif + endif + + if (MPI_COMPLEX8 .ne. MPI_DATATYPE_NULL) then + call MPI_Type_get_name( MPI_COMPLEX8, name, namelen, ierr ) + if (name(1:namelen) .ne. "MPI_COMPLEX8") then + errs = errs + 1 + print *, "Expected MPI_COMPLEX8 but got "// & + & name(1:namelen) + endif + endif + + if (MPI_COMPLEX16 .ne. MPI_DATATYPE_NULL) then + call MPI_Type_get_name( MPI_COMPLEX16, name, namelen, ierr ) + if (name(1:namelen) .ne. "MPI_COMPLEX16") then + errs = errs + 1 + print *, "Expected MPI_COMPLEX16 but got "// & + & name(1:namelen) + endif + endif + + if (MPI_COMPLEX32 .ne. MPI_DATATYPE_NULL) then + call MPI_Type_get_name( MPI_COMPLEX32, name, namelen, ierr ) + if (name(1:namelen) .ne. "MPI_COMPLEX32") then + errs = errs + 1 + print *, "Expected MPI_COMPLEX32 but got "// & + & name(1:namelen) + endif + endif + + if (MPI_INTEGER1 .ne. MPI_DATATYPE_NULL) then + call MPI_Type_get_name( MPI_INTEGER1, name, namelen, ierr ) + if (name(1:namelen) .ne. "MPI_INTEGER1") then + errs = errs + 1 + print *, "Expected MPI_INTEGER1 but got "// & + & name(1:namelen) + endif + endif + + if (MPI_INTEGER2 .ne. MPI_DATATYPE_NULL) then + call MPI_Type_get_name( MPI_INTEGER2, name, namelen, ierr ) + if (name(1:namelen) .ne. "MPI_INTEGER2") then + errs = errs + 1 + print *, "Expected MPI_INTEGER2 but got "// & + & name(1:namelen) + endif + endif + + if (MPI_INTEGER4 .ne. MPI_DATATYPE_NULL) then + call MPI_Type_get_name( MPI_INTEGER4, name, namelen, ierr ) + if (name(1:namelen) .ne. "MPI_INTEGER4") then + errs = errs + 1 + print *, "Expected MPI_INTEGER4 but got "// & + & name(1:namelen) + endif + endif + + if (MPI_INTEGER8 .ne. MPI_DATATYPE_NULL) then + call MPI_Type_get_name( MPI_INTEGER8, name, namelen, ierr ) + if (name(1:namelen) .ne. "MPI_INTEGER8") then + errs = errs + 1 + print *, "Expected MPI_INTEGER8 but got "// & + & name(1:namelen) + endif + endif + +! MPI_INTEGER16 is in MPI 2.1, but it is missing from most tables +! Some MPI implementations may not provide it +! if (MPI_INTEGER16 .ne. MPI_DATATYPE_NULL) then +! call MPI_Type_get_name( MPI_INTEGER16, name, namelen, ierr ) +! if (name(1:namelen) .ne. "MPI_INTEGER16") then +! errs = errs + 1 +! print *, "Expected MPI_INTEGER16 but got "// +! & name(1:namelen) +! endif +! endif + + call mtest_finalize( errs ) + call MPI_Finalize( ierr ) + end diff --git a/teshsuite/smpi/mpich3-test/f90/datatype/typesnamef90.f90 b/teshsuite/smpi/mpich3-test/f90/datatype/typesnamef90.f90 new file mode 100644 index 0000000000..27f6a0335d --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/datatype/typesnamef90.f90 @@ -0,0 +1,67 @@ +! This file created from test/mpi/f77/datatype/typesnamef.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2003 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + program main + use mpi + character*(MPI_MAX_OBJECT_NAME) cname + integer rlen, ln + integer ntype1, ntype2, errs, ierr + + errs = 0 + + call MTest_Init( ierr ) + + call mpi_type_vector( 10, 1, 100, MPI_INTEGER, ntype1, ierr ) + rlen = -1 + cname = 'XXXXXX' + call mpi_type_get_name( ntype1, cname, rlen, ierr ) + if (rlen .ne. 0) then + errs = errs + 1 + print *, ' Expected length 0, got ', rlen + endif + rlen = 0 + do ln=MPI_MAX_OBJECT_NAME,1,-1 + if (cname(ln:ln) .ne. ' ') then + rlen = ln + goto 100 + endif + enddo + 100 continue + if (rlen .ne. 0) then + errs = errs + 1 + print *, 'Datatype name is not all blank' + endif +! +! now add a name, then dup + call mpi_type_set_name( ntype1, 'a vector type', ierr ) + call mpi_type_dup( ntype1, ntype2, ierr ) + rlen = -1 + cname = 'XXXXXX' + call mpi_type_get_name( ntype2, cname, rlen, ierr ) + if (rlen .ne. 0) then + errs = errs + 1 + print *, ' (type2) Expected length 0, got ', rlen + endif + rlen = 0 + do ln=MPI_MAX_OBJECT_NAME,1,-1 + if (cname(ln:ln) .ne. ' ') then + rlen = ln + goto 110 + endif + enddo + 110 continue + if (rlen .ne. 0) then + errs = errs + 1 + print *, ' (type2) Datatype name is not all blank' + endif + + call mpi_type_free( ntype1, ierr ) + call mpi_type_free( ntype2, ierr ) + + call MTest_Finalize( errs ) + call MPI_Finalize( ierr ) + + end diff --git a/teshsuite/smpi/mpich3-test/f90/datatype/typesubf90.f90 b/teshsuite/smpi/mpich3-test/f90/datatype/typesubf90.f90 new file mode 100644 index 0000000000..aea04d9029 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/datatype/typesubf90.f90 @@ -0,0 +1,73 @@ +! This file created from test/mpi/f77/datatype/typesubf.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2003 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + program main + use mpi + integer errs, ierr + integer maxn, maxm + parameter (maxn=10,maxm=15) + integer fullsizes(2), subsizes(2), starts(2) + integer fullarr(maxn,maxm),subarr(maxn-3,maxm-4) + integer i,j, ssize + integer newtype, size, rank, ans + + errs = 0 + call mtest_init( ierr ) + call mpi_comm_size( MPI_COMM_WORLD, size, ierr ) + call mpi_comm_rank( MPI_COMM_WORLD, rank, ierr ) +! +! Create a Fortran-style subarray + fullsizes(1) = maxn + fullsizes(2) = maxm + subsizes(1) = maxn - 3 + subsizes(2) = maxm - 4 +! starts are from zero, even in Fortran + starts(1) = 1 + starts(2) = 2 +! In Fortran 90 notation, the original array is +! integer a(maxn,maxm) +! and the subarray is +! a(1+1:(maxn-3) +(1+1)-1,2+1:(maxm-4)+(2+1)-1) +! i.e., a (start:(len + start - 1),...) + call mpi_type_create_subarray( 2, fullsizes, subsizes, starts, & + & MPI_ORDER_FORTRAN, MPI_INTEGER, newtype, ierr ) + call mpi_type_commit( newtype, ierr ) +! +! Prefill the array + do j=1, maxm + do i=1, maxn + fullarr(i,j) = (i-1) + (j-1) * maxn + enddo + enddo + do j=1, subsizes(2) + do i=1, subsizes(1) + subarr(i,j) = -1 + enddo + enddo + ssize = subsizes(1)*subsizes(2) + call mpi_sendrecv( fullarr, 1, newtype, rank, 0, & + & subarr, ssize, MPI_INTEGER, rank, 0, & + & MPI_COMM_WORLD, MPI_STATUS_IGNORE, ierr ) +! +! Check the data + do j=1, subsizes(2) + do i=1, subsizes(1) + ans = (i+starts(1)-1) + (j+starts(2)-1) * maxn + if (subarr(i,j) .ne. ans) then + errs = errs + 1 + if (errs .le. 10) then + print *, rank, 'subarr(',i,',',j,') = ', subarr(i,j) + endif + endif + enddo + enddo + + call mpi_type_free( newtype, ierr ) + + call mtest_finalize( errs ) + call mpi_finalize( ierr ) + + end diff --git a/teshsuite/smpi/mpich3-test/f90/init/CMakeLists.txt b/teshsuite/smpi/mpich3-test/f90/init/CMakeLists.txt new file mode 100644 index 0000000000..e4d1d8009c --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/init/CMakeLists.txt @@ -0,0 +1,42 @@ +cmake_minimum_required(VERSION 2.6) + +if(enable_smpi) + if(WIN32) + set(CMAKE_C_FLAGS "-include ${CMAKE_HOME_DIRECTORY}/include/smpi/smpi_main.h") + else() + set(CMAKE_C_COMPILER "${CMAKE_BINARY_DIR}/smpi_script/bin/smpicc") + set(CMAKE_Fortran_COMPILER "${CMAKE_BINARY_DIR}/smpi_script/bin/smpif90") + endif() + + set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}") + set(MPICH_FLAGS "-DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DUSE_STDARG=1 -DHAVE_LONG_DOUBLE=1 -DHAVE_PROTOTYPES=1 -DHAVE_SIGNAL_H=1 -DHAVE_SIGACTION=1 -DHAVE_SLEEP=1 -DHAVE_SYSCONF=1 -Wno-error=unused-variable") + include_directories("${CMAKE_HOME_DIRECTORY}/include/smpi") + + add_executable(baseenvf90 baseenvf90.f90 ../util/mtestf90.f90) + target_link_libraries(baseenvf90 simgrid) + set_target_properties(baseenvf90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + +endif() + +set(tesh_files + ${tesh_files} + PARENT_SCOPE + ) +set(xml_files + ${xml_files} + PARENT_SCOPE + ) +set(examples_src + ${examples_src} + ${CMAKE_CURRENT_SOURCE_DIR}/baseenvf90.f90 + PARENT_SCOPE + ) +set(bin_files + ${bin_files} + PARENT_SCOPE + ) +set(txt_files + ${txt_files} + ${CMAKE_CURRENT_SOURCE_DIR}/testlist + PARENT_SCOPE + ) diff --git a/teshsuite/smpi/mpich3-test/f90/init/baseenvf90.f90 b/teshsuite/smpi/mpich3-test/f90/init/baseenvf90.f90 new file mode 100644 index 0000000000..a206c430fb --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/init/baseenvf90.f90 @@ -0,0 +1,90 @@ +! This file created from test/mpi/f77/init/baseenvf.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2003 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + program main + use mpi + integer ierr, provided, errs, rank, size + integer iv, isubv, qprovided + logical flag + + errs = 0 + flag = .true. + call mpi_finalized( flag, ierr ) + if (flag) then + errs = errs + 1 + print *, 'Returned true for finalized before init' + endif + flag = .true. + call mpi_initialized( flag, ierr ) + if (flag) then + errs = errs + 1 + print *, 'Return true for initialized before init' + endif + + provided = -1 + call mpi_init_thread( MPI_THREAD_MULTIPLE, provided, ierr ) + + if (provided .ne. MPI_THREAD_MULTIPLE .and. & + & provided .ne. MPI_THREAD_SERIALIZED .and. & + & provided .ne. MPI_THREAD_FUNNELED .and. & + & provided .ne. MPI_THREAD_SINGLE) then + errs = errs + 1 + print *, ' Unrecognized value for provided = ', provided + endif + + iv = -1 + isubv = -1 + call mpi_get_version( iv, isubv, ierr ) + if (iv .ne. MPI_VERSION .or. isubv .ne. MPI_SUBVERSION) then + errs = errs + 1 + print *, 'Version in mpif.h and get_version do not agree' + print *, 'Version in mpif.h is ', MPI_VERSION, '.', & + & MPI_SUBVERSION + print *, 'Version in get_version is ', iv, '.', isubv + endif + if (iv .lt. 1 .or. iv .gt. 3) then + errs = errs + 1 + print *, 'Version of MPI is invalid (=', iv, ')' + endif + if (isubv.lt.0 .or. isubv.gt.2) then + errs = errs + 1 + print *, 'Subversion of MPI is invalid (=', isubv, ')' + endif + + call mpi_comm_rank( MPI_COMM_WORLD, rank, ierr ) + call mpi_comm_size( MPI_COMM_WORLD, size, ierr ) + + flag = .false. + call mpi_is_thread_main( flag, ierr ) + if (.not.flag) then + errs = errs + 1 + print *, 'is_thread_main returned false for main thread' + endif + + call mpi_query_thread( qprovided, ierr ) + if (qprovided .ne. provided) then + errs = errs + 1 + print *,'query thread and init thread disagree on'// & + & ' thread level' + endif + + call mpi_finalize( ierr ) + flag = .false. + call mpi_finalized( flag, ierr ) + if (.not. flag) then + errs = errs + 1 + print *, 'finalized returned false after finalize' + endif + + if (rank .eq. 0) then + if (errs .eq. 0) then + print *, ' No Errors' + else + print *, ' Found ', errs, ' errors' + endif + endif + + end diff --git a/teshsuite/smpi/mpich3-test/f90/init/testlist b/teshsuite/smpi/mpich3-test/f90/init/testlist new file mode 100644 index 0000000000..bee590b1e3 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/init/testlist @@ -0,0 +1,2 @@ +# This file generated by f77tof90 +baseenvf90 1 diff --git a/teshsuite/smpi/mpich3-test/f90/pt2pt/CMakeLists.txt b/teshsuite/smpi/mpich3-test/f90/pt2pt/CMakeLists.txt new file mode 100644 index 0000000000..3766a83ca2 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/pt2pt/CMakeLists.txt @@ -0,0 +1,55 @@ +cmake_minimum_required(VERSION 2.6) + +if(enable_smpi) + if(WIN32) + set(CMAKE_C_FLAGS "-include ${CMAKE_HOME_DIRECTORY}/include/smpi/smpi_main.h") + else() + set(CMAKE_C_COMPILER "${CMAKE_BINARY_DIR}/smpi_script/bin/smpicc") + set(CMAKE_Fortran_COMPILER "${CMAKE_BINARY_DIR}/smpi_script/bin/smpif90") + endif() + + set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}") + set(MPICH_FLAGS "-DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DUSE_STDARG=1 -DHAVE_LONG_DOUBLE=1 -DHAVE_PROTOTYPES=1 -DHAVE_SIGNAL_H=1 -DHAVE_SIGACTION=1 -DHAVE_SLEEP=1 -DHAVE_SYSCONF=1 -Wno-error=unused-variable") + include_directories("${CMAKE_HOME_DIRECTORY}/include/smpi") + + add_executable(allpairf90 allpairf90.f90 ../util/mtestf90.f90) + add_executable(greqf90 greqf90.f90 dummyf90.f90 ../util/mtestf90.f90) +# add_executable(mprobef90 mprobef90.f90 ../util/mtestf90.f90) + add_executable(statusesf90 statusesf90.f90 ../util/mtestf90.f90) + target_link_libraries(allpairf90 simgrid) + target_link_libraries(greqf90 simgrid) +# target_link_libraries(mprobef90 simgrid) + target_link_libraries(statusesf90 simgrid) + set_target_properties(allpairf90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + set_target_properties(greqf90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") +# set_target_properties(mprobef90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + set_target_properties(statusesf90 PROPERTIES COMPILE_FLAGS "${MPICH_FLAGS}") + +endif() + +set(tesh_files + ${tesh_files} + PARENT_SCOPE + ) +set(xml_files + ${xml_files} + PARENT_SCOPE + ) +set(examples_src + ${examples_src} + ${CMAKE_CURRENT_SOURCE_DIR}/allpairf90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/dummyf90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/greqf90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/mprobef90.f90 + ${CMAKE_CURRENT_SOURCE_DIR}/statusesf90.f90 + PARENT_SCOPE + ) +set(bin_files + ${bin_files} + PARENT_SCOPE + ) +set(txt_files + ${txt_files} + ${CMAKE_CURRENT_SOURCE_DIR}/testlist + PARENT_SCOPE + ) diff --git a/teshsuite/smpi/mpich3-test/f90/pt2pt/allpairf90.f90 b/teshsuite/smpi/mpich3-test/f90/pt2pt/allpairf90.f90 new file mode 100644 index 0000000000..a7726e9c37 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/pt2pt/allpairf90.f90 @@ -0,0 +1,1016 @@ +! This file created from test/mpi/f77/pt2pt/allpairf.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2012 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! +! This program is based on the allpair.f test from the MPICH-1 test +! (test/pt2pt/allpair.f), which in turn was inspired by a bug report from +! fsset@corelli.lerc.nasa.gov (Scott Townsend) + + program allpair + use mpi + integer ierr, errs, comm + logical mtestGetIntraComm + logical verbose + common /flags/ verbose + + errs = 0 + verbose = .false. +! verbose = .true. + call MTest_Init( ierr ) + + do while ( mtestGetIntraComm( comm, 2, .false. ) ) + call test_pair_send( comm, errs ) + call test_pair_ssend( comm, errs ) + !call test_pair_rsend( comm, errs ) + call test_pair_isend( comm, errs ) + !call test_pair_irsend( comm, errs ) + call test_pair_issend( comm, errs ) + call test_pair_psend( comm, errs ) + !call test_pair_prsend( comm, errs ) + call test_pair_pssend( comm, errs ) + call test_pair_sendrecv( comm, errs ) + call test_pair_sendrecvrepl( comm, errs ) + call mtestFreeComm( comm ) + enddo +! + call MTest_Finalize( errs ) + call MPI_Finalize(ierr) +! + end +! + subroutine test_pair_send( comm, errs ) + use mpi + integer comm, errs + integer rank, size, ierr, next, prev, tag, count + integer TEST_SIZE + parameter (TEST_SIZE=2000) + integer status(MPI_STATUS_SIZE) + real send_buf(TEST_SIZE), recv_buf(TEST_SIZE) + logical verbose + common /flags/ verbose +! + if (verbose) then + print *, ' Send and recv' + endif +! + call mpi_comm_rank( comm, rank, ierr ) + call mpi_comm_size( comm, size, ierr ) + next = rank + 1 + if (next .ge. size) next = 0 +! + prev = rank - 1 + if (prev .lt. 0) prev = size - 1 +! + tag = 1123 + count = TEST_SIZE / 5 +! + call clear_test_data(recv_buf,TEST_SIZE) +! + if (rank .eq. 0) then +! + call init_test_data(send_buf,TEST_SIZE) +! + call MPI_Send(send_buf, count, MPI_REAL, next, tag, & + & comm, ierr) +! + call MPI_Recv(recv_buf, TEST_SIZE, MPI_REAL, & + & MPI_ANY_SOURCE, MPI_ANY_TAG, comm, status, ierr) +! + call msg_check( recv_buf, next, tag, count, status, TEST_SIZE, & + & 'send and recv', errs ) + else if (prev .eq. 0) then + call MPI_Recv(recv_buf, TEST_SIZE, MPI_REAL, & + & MPI_ANY_SOURCE, MPI_ANY_TAG, comm, status, ierr) + + call msg_check( recv_buf, prev, tag, count, status, TEST_SIZE, & + & 'send and recv', errs ) +! + call MPI_Send(recv_buf, count, MPI_REAL, prev, tag, comm, ierr) + end if +! + end +! + subroutine test_pair_rsend( comm, errs ) + use mpi + integer comm, errs + integer rank, size, ierr, next, prev, tag, count, i + integer TEST_SIZE + parameter (TEST_SIZE=2000) + integer status(MPI_STATUS_SIZE), requests(1) + real send_buf(TEST_SIZE), recv_buf(TEST_SIZE) + logical verbose + common /flags/ verbose +! + if (verbose) then + print *, ' Rsend and recv' + endif +! +! + call mpi_comm_rank( comm, rank, ierr ) + call mpi_comm_size( comm, size, ierr ) + next = rank + 1 + if (next .ge. size) next = 0 +! + prev = rank - 1 + if (prev .lt. 0) prev = size - 1 +! + tag = 1456 + count = TEST_SIZE / 3 +! + call clear_test_data(recv_buf,TEST_SIZE) +! + if (rank .eq. 0) then +! + call init_test_data(send_buf,TEST_SIZE) +! + call MPI_Recv( MPI_BOTTOM, 0, MPI_INTEGER, next, tag, & + & comm, status, ierr ) +! + call MPI_Rsend(send_buf, count, MPI_REAL, next, tag, & + & comm, ierr) +! + call MPI_Probe(MPI_ANY_SOURCE, tag, comm, status, ierr) +! + if (status(MPI_SOURCE) .ne. next) then + print *, 'Rsend: Incorrect source, expected', next, & + & ', got', status(MPI_SOURCE) + errs = errs + 1 + end if +! + if (status(MPI_TAG) .ne. tag) then + print *, 'Rsend: Incorrect tag, expected', tag, & + & ', got', status(MPI_TAG) + errs = errs + 1 + end if +! + call MPI_Get_count(status, MPI_REAL, i, ierr) +! + if (i .ne. count) then + print *, 'Rsend: Incorrect count, expected', count, & + & ', got', i + errs = errs + 1 + end if +! + call MPI_Recv(recv_buf, TEST_SIZE, MPI_REAL, & + & MPI_ANY_SOURCE, MPI_ANY_TAG, comm, & + & status, ierr) +! + call msg_check( recv_buf, next, tag, count, status, TEST_SIZE, & + & 'rsend and recv', errs ) +! + else if (prev .eq. 0) then +! + call MPI_Irecv(recv_buf, TEST_SIZE, MPI_REAL, & + & MPI_ANY_SOURCE, MPI_ANY_TAG, comm, & + & requests(1), ierr) + call MPI_Send( MPI_BOTTOM, 0, MPI_INTEGER, prev, tag, & + & comm, ierr ) + call MPI_Wait( requests(1), status, ierr ) + call msg_check( recv_buf, prev, tag, count, status, TEST_SIZE, & + & 'rsend and recv', errs ) +! + call MPI_Send(recv_buf, count, MPI_REAL, prev, tag, & + & comm, ierr) + end if +! + end +! + subroutine test_pair_ssend( comm, errs ) + use mpi + integer comm, errs + integer rank, size, ierr, next, prev, tag, count, i + integer TEST_SIZE + parameter (TEST_SIZE=2000) + integer status(MPI_STATUS_SIZE) + logical flag + real send_buf(TEST_SIZE), recv_buf(TEST_SIZE) + logical verbose + common /flags/ verbose +! + if (verbose) then + print *, ' Ssend and recv' + endif +! +! + call mpi_comm_rank( comm, rank, ierr ) + call mpi_comm_size( comm, size, ierr ) + next = rank + 1 + if (next .ge. size) next = 0 +! + prev = rank - 1 + if (prev .lt. 0) prev = size - 1 +! + tag = 1789 + count = TEST_SIZE / 3 +! + call clear_test_data(recv_buf,TEST_SIZE) +! + if (rank .eq. 0) then +! + call init_test_data(send_buf,TEST_SIZE) +! + call MPI_Iprobe(MPI_ANY_SOURCE, tag, & + & comm, flag, status, ierr) +! + if (flag) then + print *, 'Ssend: Iprobe succeeded! source', & + & status(MPI_SOURCE), & + & ', tag', status(MPI_TAG) + errs = errs + 1 + end if +! + call MPI_Ssend(send_buf, count, MPI_REAL, next, tag, & + & comm, ierr) +! + do while (.not. flag) + call MPI_Iprobe(MPI_ANY_SOURCE, tag, & + & comm, flag, status, ierr) + end do +! + if (status(MPI_SOURCE) .ne. next) then + print *, 'Ssend: Incorrect source, expected', next, & + & ', got', status(MPI_SOURCE) + errs = errs + 1 + end if +! + if (status(MPI_TAG) .ne. tag) then + print *, 'Ssend: Incorrect tag, expected', tag, & + & ', got', status(MPI_TAG) + errs = errs + 1 + end if +! + call MPI_Get_count(status, MPI_REAL, i, ierr) +! + if (i .ne. count) then + print *, 'Ssend: Incorrect count, expected', count, & + & ', got', i + errs = errs + 1 + end if +! + call MPI_Recv(recv_buf, TEST_SIZE, MPI_REAL, & + & MPI_ANY_SOURCE, MPI_ANY_TAG, comm, & + & status, ierr) +! + call msg_check( recv_buf, next, tag, count, status, & + & TEST_SIZE, 'ssend and recv', errs ) +! + else if (prev .eq. 0) then +! + call MPI_Recv(recv_buf, TEST_SIZE, MPI_REAL, & + & MPI_ANY_SOURCE, MPI_ANY_TAG, comm, & + & status, ierr) +! + call msg_check( recv_buf, prev, tag, count, status, TEST_SIZE, & + & 'ssend and recv', errs ) +! + call MPI_Ssend(recv_buf, count, MPI_REAL, prev, tag, & + & comm, ierr) + end if +! + end +! + subroutine test_pair_isend( comm, errs ) + use mpi + integer comm, errs + integer rank, size, ierr, next, prev, tag, count + integer TEST_SIZE + parameter (TEST_SIZE=2000) + integer status(MPI_STATUS_SIZE), requests(2) + integer statuses(MPI_STATUS_SIZE,2) + real send_buf(TEST_SIZE), recv_buf(TEST_SIZE) + logical verbose + common /flags/ verbose +! + if (verbose) then + print *, ' isend and irecv' + endif +! +! + call mpi_comm_rank( comm, rank, ierr ) + call mpi_comm_size( comm, size, ierr ) + next = rank + 1 + if (next .ge. size) next = 0 +! + prev = rank - 1 + if (prev .lt. 0) prev = size - 1 +! + tag = 2123 + count = TEST_SIZE / 5 +! + call clear_test_data(recv_buf,TEST_SIZE) +! + if (rank .eq. 0) then +! + call MPI_Irecv(recv_buf, TEST_SIZE, MPI_REAL, & + & MPI_ANY_SOURCE, MPI_ANY_TAG, comm, & + & requests(1), ierr) +! + call init_test_data(send_buf,TEST_SIZE) +! + call MPI_Isend(send_buf, count, MPI_REAL, next, tag, & + & comm, requests(2), ierr) +! + call MPI_Waitall(2, requests, statuses, ierr) +! + call rq_check( requests, 2, 'isend and irecv' ) +! + call msg_check( recv_buf, next, tag, count, statuses(1,1), & + & TEST_SIZE, 'isend and irecv', errs ) +! + else if (prev .eq. 0) then +! + call MPI_Recv(recv_buf, TEST_SIZE, MPI_REAL, & + & MPI_ANY_SOURCE, MPI_ANY_TAG, comm, & + & status, ierr) +! + call msg_check( recv_buf, prev, tag, count, status, TEST_SIZE, & + & 'isend and irecv', errs ) +! + call MPI_Isend(recv_buf, count, MPI_REAL, prev, tag, & + & comm, requests(1), ierr) +! + call MPI_Wait(requests(1), status, ierr) +! + call rq_check( requests(1), 1, 'isend and irecv' ) +! + end if +! + end +! + subroutine test_pair_irsend( comm, errs ) + use mpi + integer comm, errs + integer rank, size, ierr, next, prev, tag, count, index, i + integer TEST_SIZE + integer dupcom + parameter (TEST_SIZE=2000) + integer status(MPI_STATUS_SIZE), requests(2) + integer statuses(MPI_STATUS_SIZE,2) + logical flag + real send_buf(TEST_SIZE), recv_buf(TEST_SIZE) + logical verbose + common /flags/ verbose +! + if (verbose) then + print *, ' Irsend and irecv' + endif +! + call mpi_comm_rank( comm, rank, ierr ) + call mpi_comm_size( comm, size, ierr ) + next = rank + 1 + if (next .ge. size) next = 0 +! + prev = rank - 1 + if (prev .lt. 0) prev = size - 1 +! + call mpi_comm_dup( comm, dupcom, ierr ) +! + tag = 2456 + count = TEST_SIZE / 3 +! + call clear_test_data(recv_buf,TEST_SIZE) +! + if (rank .eq. 0) then +! + call MPI_Irecv(recv_buf, TEST_SIZE, MPI_REAL, & + & MPI_ANY_SOURCE, MPI_ANY_TAG, comm, & + & requests(1), ierr) +! + call init_test_data(send_buf,TEST_SIZE) +! + call MPI_Sendrecv( MPI_BOTTOM, 0, MPI_INTEGER, next, 0, & + & MPI_BOTTOM, 0, MPI_INTEGER, next, 0, & + & dupcom, status, ierr ) +! + call MPI_Irsend(send_buf, count, MPI_REAL, next, tag, & + & comm, requests(2), ierr) +! + index = -1 + do while (index .ne. 1) + call MPI_Waitany(2, requests, index, statuses, ierr) + end do +! + call rq_check( requests(1), 1, 'irsend and irecv' ) +! + call msg_check( recv_buf, next, tag, count, statuses, & + & TEST_SIZE, 'irsend and irecv', errs ) +! + else if (prev .eq. 0) then +! + call MPI_Irecv(recv_buf, TEST_SIZE, MPI_REAL, & + & MPI_ANY_SOURCE, MPI_ANY_TAG, comm, & + & requests(1), ierr) +! + call MPI_Sendrecv( MPI_BOTTOM, 0, MPI_INTEGER, prev, 0, & + & MPI_BOTTOM, 0, MPI_INTEGER, prev, 0, & + & dupcom, status, ierr ) +! + flag = .FALSE. + do while (.not. flag) + call MPI_Test(requests(1), flag, status, ierr) + end do +! + call rq_check( requests, 1, 'irsend and irecv (test)' ) +! + call msg_check( recv_buf, prev, tag, count, status, TEST_SIZE, & + & 'irsend and irecv', errs ) +! + call MPI_Irsend(recv_buf, count, MPI_REAL, prev, tag, & + & comm, requests(1), ierr) +! + call MPI_Waitall(1, requests, statuses, ierr) +! + call rq_check( requests, 1, 'irsend and irecv' ) +! + end if +! + call mpi_comm_free( dupcom, ierr ) +! + end +! + subroutine test_pair_issend( comm, errs ) + use mpi + integer comm, errs + integer rank, size, ierr, next, prev, tag, count, index + integer TEST_SIZE + parameter (TEST_SIZE=2000) + integer status(MPI_STATUS_SIZE), requests(2) + integer statuses(MPI_STATUS_SIZE,2) + logical flag + real send_buf(TEST_SIZE), recv_buf(TEST_SIZE) + logical verbose + common /flags/ verbose +! + if (verbose) then + print *, ' issend and irecv (testall)' + endif +! +! + call mpi_comm_rank( comm, rank, ierr ) + call mpi_comm_size( comm, size, ierr ) + next = rank + 1 + if (next .ge. size) next = 0 +! + prev = rank - 1 + if (prev .lt. 0) prev = size - 1 +! + tag = 2789 + count = TEST_SIZE / 3 +! + call clear_test_data(recv_buf,TEST_SIZE) +! + if (rank .eq. 0) then +! + call MPI_Irecv(recv_buf, TEST_SIZE, MPI_REAL, & + & MPI_ANY_SOURCE, MPI_ANY_TAG, comm, & + & requests(1), ierr) +! + call init_test_data(send_buf,TEST_SIZE) +! + call MPI_Issend(send_buf, count, MPI_REAL, next, tag, & + & comm, requests(2), ierr) +! + flag = .FALSE. + do while (.not. flag) + call MPI_Testall(2, requests, flag, statuses, ierr) + end do +! + call rq_check( requests, 2, 'issend and irecv (testall)' ) +! + call msg_check( recv_buf, next, tag, count, statuses(1,1), & + & TEST_SIZE, 'issend and recv (testall)', errs ) +! + else if (prev .eq. 0) then +! + call MPI_Recv(recv_buf, TEST_SIZE, MPI_REAL, & + & MPI_ANY_SOURCE, MPI_ANY_TAG, comm, & + & status, ierr) + + call msg_check( recv_buf, prev, tag, count, status, TEST_SIZE, & + & 'issend and recv', errs ) + + call MPI_Issend(recv_buf, count, MPI_REAL, prev, tag, & + & comm, requests(1), ierr) +! + flag = .FALSE. + do while (.not. flag) + call MPI_Testany(1, requests(1), index, flag, & + & statuses(1,1), ierr) + end do +! + call rq_check( requests, 1, 'issend and recv (testany)' ) +! + end if +! + end +! + subroutine test_pair_psend( comm, errs ) + use mpi + integer comm, errs + integer rank, size, ierr, next, prev, tag, count, i + integer TEST_SIZE + parameter (TEST_SIZE=2000) + integer status(MPI_STATUS_SIZE) + integer statuses(MPI_STATUS_SIZE,2), requests(2) + real send_buf(TEST_SIZE), recv_buf(TEST_SIZE) + logical verbose + common /flags/ verbose +! + if (verbose) then + print *, ' Persistent send and recv' + endif +! + call mpi_comm_rank( comm, rank, ierr ) + call mpi_comm_size( comm, size, ierr ) + next = rank + 1 + if (next .ge. size) next = 0 +! + prev = rank - 1 + if (prev .lt. 0) prev = size - 1 +! + tag = 3123 + count = TEST_SIZE / 5 +! + call clear_test_data(recv_buf,TEST_SIZE) + call MPI_Recv_init(recv_buf, TEST_SIZE, MPI_REAL, & + & MPI_ANY_SOURCE, MPI_ANY_TAG, comm, & + & requests(2), ierr) +! + if (rank .eq. 0) then +! + call init_test_data(send_buf,TEST_SIZE) +! + call MPI_Send_init(send_buf, count, MPI_REAL, next, tag, & + & comm, requests(1), ierr) +! + call MPI_Startall(2, requests, ierr) + call MPI_Waitall(2, requests, statuses, ierr) +! + call msg_check( recv_buf, next, tag, count, statuses(1,2), & + & TEST_SIZE, 'persistent send/recv', errs ) +! + call MPI_Request_free(requests(1), ierr) +! + else if (prev .eq. 0) then +! + call MPI_Send_init(send_buf, count, MPI_REAL, prev, tag, & + & comm, requests(1), ierr) + call MPI_Start(requests(2), ierr) + call MPI_Wait(requests(2), status, ierr) +! + call msg_check( recv_buf, prev, tag, count, status, TEST_SIZE, & + & 'persistent send/recv', errs ) +! + do i = 1,count + send_buf(i) = recv_buf(i) + end do +! + call MPI_Start(requests(1), ierr) + call MPI_Wait(requests(1), status, ierr) +! + call MPI_Request_free(requests(1), ierr) + end if +! + call dummyRef( send_buf, count, ierr ) + call MPI_Request_free(requests(2), ierr) +! + end +! + subroutine test_pair_prsend( comm, errs ) + use mpi + integer comm, errs + integer rank, size, ierr, next, prev, tag, count, index, i + integer outcount, indices(2) + integer TEST_SIZE + parameter (TEST_SIZE=2000) + integer statuses(MPI_STATUS_SIZE,2), requests(2) + integer status(MPI_STATUS_SIZE) + logical flag + real send_buf(TEST_SIZE), recv_buf(TEST_SIZE) + logical verbose + common /flags/ verbose +! + if (verbose) then + print *, ' Persistent Rsend and recv' + endif +! + call mpi_comm_rank( comm, rank, ierr ) + call mpi_comm_size( comm, size, ierr ) + next = rank + 1 + if (next .ge. size) next = 0 +! + prev = rank - 1 + if (prev .lt. 0) prev = size - 1 +! + tag = 3456 + count = TEST_SIZE / 3 +! + call clear_test_data(recv_buf,TEST_SIZE) +! + call MPI_Recv_init(recv_buf, TEST_SIZE, MPI_REAL, & + & MPI_ANY_SOURCE, MPI_ANY_TAG, comm, & + & requests(2), ierr) +! + if (rank .eq. 0) then +! + call MPI_Rsend_init(send_buf, count, MPI_REAL, next, tag, & + & comm, requests(1), ierr) +! + call init_test_data(send_buf,TEST_SIZE) +! + call MPI_Recv( MPI_BOTTOM, 0, MPI_INTEGER, next, tag, & + & comm, status, ierr ) +! + call MPI_Startall(2, requests, ierr) +! + index = -1 +! + do while (index .ne. 2) + call MPI_Waitsome(2, requests, outcount, & + & indices, statuses, ierr) + do i = 1,outcount + if (indices(i) .eq. 2) then + call msg_check( recv_buf, next, tag, count, & + & statuses(1,i), TEST_SIZE, 'waitsome', errs ) + index = 2 + end if + end do + end do +! + call MPI_Request_free(requests(1), ierr) + else if (prev .eq. 0) then +! + call MPI_Rsend_init(send_buf, count, MPI_REAL, prev, tag, & + & comm, requests(1), ierr) +! + call MPI_Start(requests(2), ierr) +! + call MPI_Send( MPI_BOTTOM, 0, MPI_INTEGER, prev, tag, & + & comm, ierr ) +! + flag = .FALSE. + do while (.not. flag) + call MPI_Test(requests(2), flag, status, ierr) + end do + call msg_check( recv_buf, prev, tag, count, status, TEST_SIZE, & + & 'test', errs ) +! + do i = 1,count + send_buf(i) = recv_buf(i) + end do +! + call MPI_Start(requests(1), ierr) + call MPI_Wait(requests(1), status, ierr) +! + call MPI_Request_free(requests(1), ierr) + end if +! + call dummyRef( send_buf, count, ierr ) + call MPI_Request_free(requests(2), ierr) +! + end +! + subroutine test_pair_pssend( comm, errs ) + use mpi + integer comm, errs + integer rank, size, ierr, next, prev, tag, count, index, i + integer outcount, indices(2) + integer TEST_SIZE + parameter (TEST_SIZE=2000) + integer statuses(MPI_STATUS_SIZE,2), requests(2) + integer status(MPI_STATUS_SIZE) + logical flag + real send_buf(TEST_SIZE), recv_buf(TEST_SIZE) + logical verbose + common /flags/ verbose +! + if (verbose) then + print *, ' Persistent Ssend and recv' + endif +! + call mpi_comm_rank( comm, rank, ierr ) + call mpi_comm_size( comm, size, ierr ) + next = rank + 1 + if (next .ge. size) next = 0 +! + prev = rank - 1 + if (prev .lt. 0) prev = size - 1 +! + tag = 3789 + count = TEST_SIZE / 3 +! + call clear_test_data(recv_buf,TEST_SIZE) +! + call MPI_Recv_init(recv_buf, TEST_SIZE, MPI_REAL, & + & MPI_ANY_SOURCE, MPI_ANY_TAG, comm, & + & requests(1), ierr) +! + if (rank .eq. 0) then +! + call MPI_Ssend_init(send_buf, count, MPI_REAL, next, tag, & + & comm, requests(2), ierr) +! + call init_test_data(send_buf,TEST_SIZE) +! + call MPI_Startall(2, requests, ierr) +! + index = -1 + do while (index .ne. 1) + call MPI_Testsome(2, requests, outcount, & + & indices, statuses, ierr) + do i = 1,outcount + if (indices(i) .eq. 1) then + call msg_check( recv_buf, next, tag, count, & + & statuses(1,i), TEST_SIZE, 'testsome', errs ) + index = 1 + end if + end do + end do +! + call MPI_Request_free(requests(2), ierr) +! + else if (prev .eq. 0) then +! + call MPI_Ssend_init(send_buf, count, MPI_REAL, prev, tag, & + & comm, requests(2), ierr) +! + call MPI_Start(requests(1), ierr) +! + flag = .FALSE. + do while (.not. flag) + call MPI_Testany(1, requests(1), index, flag, & + & statuses(1,1), ierr) + end do + call msg_check( recv_buf, prev, tag, count, statuses(1,1), & + & TEST_SIZE, 'testany', errs ) + + do i = 1,count + send_buf(i) = recv_buf(i) + end do +! + call MPI_Start(requests(2), ierr) + call MPI_Wait(requests(2), status, ierr) +! + call MPI_Request_free(requests(2), ierr) +! + end if +! + call dummyRef( send_buf, count, ierr ) + call MPI_Request_free(requests(1), ierr) +! + end +! + subroutine test_pair_sendrecv( comm, errs ) + use mpi + integer comm, errs + integer rank, size, ierr, next, prev, tag, count + integer TEST_SIZE + parameter (TEST_SIZE=2000) + integer status(MPI_STATUS_SIZE) + real send_buf(TEST_SIZE), recv_buf(TEST_SIZE) + logical verbose + common /flags/ verbose +! + if (verbose) then + print *, ' Sendrecv' + endif +! +! + call mpi_comm_rank( comm, rank, ierr ) + call mpi_comm_size( comm, size, ierr ) + next = rank + 1 + if (next .ge. size) next = 0 +! + prev = rank - 1 + if (prev .lt. 0) prev = size - 1 +! + tag = 4123 + count = TEST_SIZE / 5 + + call clear_test_data(recv_buf,TEST_SIZE) + + if (rank .eq. 0) then + + call init_test_data(send_buf,TEST_SIZE) + + call MPI_Sendrecv(send_buf, count, MPI_REAL, next, tag, & + & recv_buf, count, MPI_REAL, next, tag, & + & comm, status, ierr) + + call msg_check( recv_buf, next, tag, count, status, TEST_SIZE, & + & 'sendrecv', errs ) + + else if (prev .eq. 0) then + + call MPI_Recv(recv_buf, TEST_SIZE, MPI_REAL, & + & MPI_ANY_SOURCE, MPI_ANY_TAG, comm, & + & status, ierr) + + call msg_check( recv_buf, prev, tag, count, status, TEST_SIZE, & + & 'recv/send', errs ) + + call MPI_Send(recv_buf, count, MPI_REAL, prev, tag, & + & comm, ierr) + end if +! + end +! + subroutine test_pair_sendrecvrepl( comm, errs ) + use mpi + integer comm, errs + integer rank, size, ierr, next, prev, tag, count, i + integer TEST_SIZE + parameter (TEST_SIZE=2000) + integer status(MPI_STATUS_SIZE) + real send_buf(TEST_SIZE), recv_buf(TEST_SIZE) + logical verbose + common /flags/ verbose +! + if (verbose) then + print *, ' Sendrecv replace' + endif +! + call mpi_comm_rank( comm, rank, ierr ) + call mpi_comm_size( comm, size, ierr ) + next = rank + 1 + if (next .ge. size) next = 0 +! + prev = rank - 1 + if (prev .lt. 0) prev = size - 1 +! + tag = 4456 + count = TEST_SIZE / 3 + + if (rank .eq. 0) then +! + call init_test_data(recv_buf, TEST_SIZE) +! + do 11 i = count+1,TEST_SIZE + recv_buf(i) = 0.0 + 11 continue +! + call MPI_Sendrecv_replace(recv_buf, count, MPI_REAL, & + & next, tag, next, tag, & + & comm, status, ierr) + + call msg_check( recv_buf, next, tag, count, status, TEST_SIZE, & + & 'sendrecvreplace', errs ) + + else if (prev .eq. 0) then + + call clear_test_data(recv_buf,TEST_SIZE) + + call MPI_Recv(recv_buf, TEST_SIZE, MPI_REAL, & + & MPI_ANY_SOURCE, MPI_ANY_TAG, comm, & + & status, ierr) + + call msg_check( recv_buf, prev, tag, count, status, TEST_SIZE, & + & 'recv/send for replace', errs ) + + call MPI_Send(recv_buf, count, MPI_REAL, prev, tag, & + & comm, ierr) + end if +! + end +! +!------------------------------------------------------------------------------ +! +! Check for correct source, tag, count, and data in test message. +! +!------------------------------------------------------------------------------ + subroutine msg_check( recv_buf, source, tag, count, status, n, & + & name, errs ) + use mpi + integer n, errs + real recv_buf(n) + integer source, tag, count, rank, status(MPI_STATUS_SIZE) + character*(*) name + logical foundError + + integer ierr, recv_src, recv_tag, recv_count + + foundError = .false. + recv_src = status(MPI_SOURCE) + recv_tag = status(MPI_TAG) + call MPI_Comm_rank( MPI_COMM_WORLD, rank, ierr ) + call MPI_Get_count(status, MPI_REAL, recv_count, ierr) + + if (recv_src .ne. source) then + print *, '[', rank, '] Unexpected source:', recv_src, & + & ' in ', name + errs = errs + 1 + foundError = .true. + end if + + if (recv_tag .ne. tag) then + print *, '[', rank, '] Unexpected tag:', recv_tag, ' in ', name + errs = errs + 1 + foundError = .true. + end if + + if (recv_count .ne. count) then + print *, '[', rank, '] Unexpected count:', recv_count, & + & ' in ', name + errs = errs + 1 + foundError = .true. + end if + + call verify_test_data(recv_buf, count, n, name, errs ) + + end +!------------------------------------------------------------------------------ +! +! Check that requests have been set to null +! +!------------------------------------------------------------------------------ + subroutine rq_check( requests, n, msg ) + use mpi + integer n, requests(n) + character*(*) msg + integer i +! + do 10 i=1, n + if (requests(i) .ne. MPI_REQUEST_NULL) then + print *, 'Nonnull request in ', msg + endif + 10 continue +! + end +!------------------------------------------------------------------------------ +! +! Initialize test data buffer with integral sequence. +! +!------------------------------------------------------------------------------ + subroutine init_test_data(buf,n) + integer n + real buf(n) + integer i + + do 10 i = 1, n + buf(i) = REAL(i) + 10 continue + end + +!------------------------------------------------------------------------------ +! +! Clear test data buffer +! +!------------------------------------------------------------------------------ + subroutine clear_test_data(buf, n) + integer n + real buf(n) + integer i + + do 10 i = 1, n + buf(i) = 0. + 10 continue + + end + +!------------------------------------------------------------------------------ +! +! Verify test data buffer +! +!------------------------------------------------------------------------------ + subroutine verify_test_data( buf, count, n, name, errs ) + use mpi + integer n, errs + real buf(n) + character *(*) name + integer count, ierr, i +! + do 10 i = 1, count + if (buf(i) .ne. REAL(i)) then + print 100, buf(i), i, count, name + errs = errs + 1 + endif + 10 continue +! + do 20 i = count + 1, n + if (buf(i) .ne. 0.) then + print 100, buf(i), i, n, name + errs = errs + 1 + endif + 20 continue +! +100 format('Invalid data', f6.1, ' at ', i4, ' of ', i4, ' in ', a) +! + end +! +! This routine is used to prevent the compiler from deallocating the +! array "a", which may happen in some of the tests (see the text in +! the MPI standard about why this may be a problem in valid Fortran +! codes). Without this, for example, tests fail with the Cray ftn +! compiler. +! + subroutine dummyRef( a, n, ie ) + integer n, ie + real a(n) +! This condition will never be true, but the compile won't know that + if (ie .eq. -1) then + print *, a(n) + endif + return + end diff --git a/teshsuite/smpi/mpich3-test/f90/pt2pt/dummyf90.f90 b/teshsuite/smpi/mpich3-test/f90/pt2pt/dummyf90.f90 new file mode 100644 index 0000000000..957ed25d5f --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/pt2pt/dummyf90.f90 @@ -0,0 +1,20 @@ +! This file created from test/mpi/f77/pt2pt/dummyf.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2010 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! +! +! This file is used to disable certain compiler optimizations that +! can cause incorrect results with the test in greqf.f. It provides a +! point where extrastate may be modified, limiting the compilers ability +! to move code around. +! The include of mpif.h is not needed in the F77 case but in the +! F90 case it is, because in that case, extrastate is defined as an +! integer (kind=MPI_ADDRESS_KIND), and the script that creates the +! F90 tests from the F77 tests looks for mpif.h + subroutine dummyupdate( extrastate ) + use mpi + integer (kind=MPI_ADDRESS_KIND) extrastate, valin, valout, val + + end diff --git a/teshsuite/smpi/mpich3-test/f90/pt2pt/greqf90.f90 b/teshsuite/smpi/mpich3-test/f90/pt2pt/greqf90.f90 new file mode 100644 index 0000000000..8844ce7294 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/pt2pt/greqf90.f90 @@ -0,0 +1,112 @@ +! This file created from test/mpi/f77/pt2pt/greqf.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2003 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + subroutine query_fn( extrastate, status, ierr ) + use mpi + integer status(MPI_STATUS_SIZE), ierr + integer (kind=MPI_ADDRESS_KIND) extrastate, valin, valout, val + +! +! set a default status + status(MPI_SOURCE) = MPI_UNDEFINED + status(MPI_TAG) = MPI_UNDEFINED + call mpi_status_set_cancelled( status, .false., ierr) + call mpi_status_set_elements( status, MPI_BYTE, 0, ierr ) + ierr = MPI_SUCCESS + end +! + subroutine free_fn( extrastate, ierr ) + use mpi + integer value, ierr + integer (kind=MPI_ADDRESS_KIND) extrastate, valin, valout, val + + integer freefncall + common /fnccalls/ freefncall +! +! For testing purposes, the following print can be used to check whether +! the free_fn is called +! print *, 'Free_fn called' +! + extrastate = extrastate - 1 +! The value returned by the free function is the error code +! returned by the wait/test function + ierr = MPI_SUCCESS + end +! + subroutine cancel_fn( extrastate, complete, ierr ) + use mpi + integer ierr + logical complete + integer (kind=MPI_ADDRESS_KIND) extrastate, valin, valout, val + + + ierr = MPI_SUCCESS + end +! +! +! This is a very simple test of generalized requests. Normally, the +! MPI_Grequest_complete function would be called from another routine, +! often running in a separate thread. This simple code allows us to +! check that requests can be created, tested, and waited on in the +! case where the request is complete before the wait is called. +! +! Note that MPI did *not* define a routine that can be called within +! test or wait to advance the state of a generalized request. +! Most uses of generalized requests will need to use a separate thread. +! + program main + use mpi + integer errs, ierr + logical flag + integer status(MPI_STATUS_SIZE) + integer request + external query_fn, free_fn, cancel_fn + integer (kind=MPI_ADDRESS_KIND) extrastate, valin, valout, val + + integer freefncall + common /fnccalls/ freefncall + + errs = 0 + freefncall = 0 + + call MTest_Init( ierr ) + + extrastate = 0 + call mpi_grequest_start( query_fn, free_fn, cancel_fn, & + & extrastate, request, ierr ) + call mpi_test( request, flag, status, ierr ) + if (flag) then + errs = errs + 1 + print *, 'Generalized request marked as complete' + endif + + call mpi_grequest_complete( request, ierr ) + + call MPI_Wait( request, status, ierr ) + + extrastate = 1 + call mpi_grequest_start( query_fn, free_fn, cancel_fn, & + & extrastate, request, ierr ) + call mpi_grequest_complete( request, ierr ) + call mpi_wait( request, MPI_STATUS_IGNORE, ierr ) +! +! The following routine may prevent an optimizing compiler from +! just remembering that extrastate was set in grequest_start + call dummyupdate(extrastate) + if (extrastate .ne. 0) then + errs = errs + 1 + if (freefncall .eq. 0) then + print *, 'Free routine not called' + else + print *, 'Free routine did not update extra_data' + print *, 'extrastate = ', extrastate + endif + endif +! + call MTest_Finalize( errs ) + call mpi_finalize( ierr ) + end +! diff --git a/teshsuite/smpi/mpich3-test/f90/pt2pt/mprobef90.f90 b/teshsuite/smpi/mpich3-test/f90/pt2pt/mprobef90.f90 new file mode 100644 index 0000000000..0ba759b0a1 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/pt2pt/mprobef90.f90 @@ -0,0 +1,667 @@ +! This file created from test/mpi/f77/pt2pt/mprobef.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2012 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + program main + use mpi + integer idx, ierr, rank, size, count + integer sendbuf(8), recvbuf(8) + integer s1(MPI_STATUS_SIZE), s2(MPI_STATUS_SIZE) + integer msg, errs + integer rreq + logical found, flag + + ierr = -1 + errs = 0 + call mpi_init( ierr ) + if (ierr .ne. MPI_SUCCESS) then + errs = errs + 1 + print *, ' Unexpected return from MPI_INIT', ierr + endif + + call mpi_comm_rank( MPI_COMM_WORLD, rank, ierr ) + call mpi_comm_size( MPI_COMM_WORLD, size, ierr ) + if (size .lt. 2) then + errs = errs + 1 + print *, ' This test requires at least 2 processes' +! Abort now - do not continue in this case. + call mpi_abort( MPI_COMM_WORLD, 1, ierr ) + endif + if (size .gt. 2) then + print *, ' This test is running with ', size, ' processes,' + print *, ' only 2 processes are used.' + endif + +! Test 0: simple Send and Mprobe+Mrecv. + if (rank .eq. 0) then + sendbuf(1) = 1735928559 + sendbuf(2) = 1277009102 + call MPI_Send(sendbuf, 2, MPI_INTEGER, & + & 1, 5, MPI_COMM_WORLD, ierr) + else + do idx = 1, MPI_STATUS_SIZE + s1(idx) = 0 + s2(idx) = 0 + enddo +! the error fields are initialized for modification check. + s1(MPI_ERROR) = MPI_ERR_DIMS + s2(MPI_ERROR) = MPI_ERR_OTHER + + msg = MPI_MESSAGE_NULL + call MPI_Mprobe(0, 5, MPI_COMM_WORLD, msg, s1, ierr) + if (s1(MPI_SOURCE) .ne. 0) then + errs = errs + 1 + print *, 's1(MPI_SOURCE) != 0 at T0 Mprobe().' + endif + if (s1(MPI_TAG) .ne. 5) then + errs = errs + 1 + print *, 's1(MPI_TAG) != 5 at T0 Mprobe().' + endif + if (s1(MPI_ERROR) .ne. MPI_ERR_DIMS) then + errs = errs + 1 + print *, 's1(MPI_ERROR) != MPI_ERR_DIMS at T0 Mprobe().' + endif + if (msg .eq. MPI_MESSAGE_NULL) then + errs = errs + 1 + print *, 'msg == MPI_MESSAGE_NULL at T0 Mprobe().' + endif + + count = -1 + call MPI_Get_count(s1, MPI_INTEGER, count, ierr) + if (count .ne. 2) then + errs = errs + 1 + print *, 'probed buffer does not have 2 MPI_INTEGERs.' + endif + + recvbuf(1) = 19088743 + recvbuf(2) = 1309737967 + call MPI_Mrecv(recvbuf, count, MPI_INTEGER, msg, s2, ierr) + if (recvbuf(1) .ne. 1735928559) then + errs = errs + 1 + print *, 'recvbuf(1) is corrupted at T0 Mrecv().' + endif + if (recvbuf(2) .ne. 1277009102) then + errs = errs + 1 + print *, 'recvbuf(2) is corrupted at T0 Mrecv().' + endif + if (s2(MPI_SOURCE) .ne. 0) then + errs = errs + 1 + print *, 's2(MPI_SOURCE) != 0 at T0 Mrecv().' + endif + if (s2(MPI_TAG) .ne. 5) then + errs = errs + 1 + print *, 's2(MPI_TAG) != 5 at T0 Mrecv().' + endif + if (s2(MPI_ERROR) .ne. MPI_ERR_OTHER) then + errs = errs + 1 + print *, 's2(MPI_ERROR) != MPI_ERR_OTHER at T0 Mrecv().' + endif + if (msg .ne. MPI_MESSAGE_NULL) then + errs = errs + 1 + print *, 'msg != MPI_MESSAGE_NULL at T0 Mrecv().' + endif + endif + +! Test 1: simple Send and Mprobe+Imrecv. + if (rank .eq. 0) then + sendbuf(1) = 1735928559 + sendbuf(2) = 1277009102 + call MPI_Send(sendbuf, 2, MPI_INTEGER, & + & 1, 5, MPI_COMM_WORLD, ierr) + else + do idx = 1, MPI_STATUS_SIZE + s1(idx) = 0 + s2(idx) = 0 + enddo +! the error fields are initialized for modification check. + s1(MPI_ERROR) = MPI_ERR_DIMS + s2(MPI_ERROR) = MPI_ERR_OTHER + + msg = MPI_MESSAGE_NULL + call MPI_Mprobe(0, 5, MPI_COMM_WORLD, msg, s1, ierr) + if (s1(MPI_SOURCE) .ne. 0) then + errs = errs + 1 + print *, 's1(MPI_SOURCE) != 0 at T1 Mprobe().' + endif + if (s1(MPI_TAG) .ne. 5) then + errs = errs + 1 + print *, 's1(MPI_TAG) != 5 at T1 Mprobe().' + endif + if (s1(MPI_ERROR) .ne. MPI_ERR_DIMS) then + errs = errs + 1 + print *, 's1(MPI_ERROR) != MPI_ERR_DIMS at T1 Mprobe().' + endif + if (msg .eq. MPI_MESSAGE_NULL) then + errs = errs + 1 + print *, 'msg == MPI_MESSAGE_NULL at T1 Mprobe().' + endif + + count = -1 + call MPI_Get_count(s1, MPI_INTEGER, count, ierr) + if (count .ne. 2) then + errs = errs + 1 + print *, 'probed buffer does not have 2 MPI_INTEGERs.' + endif + + rreq = MPI_REQUEST_NULL + recvbuf(1) = 19088743 + recvbuf(2) = 1309737967 + call MPI_Imrecv(recvbuf, count, MPI_INTEGER, msg, rreq, ierr) + if (rreq .eq. MPI_REQUEST_NULL) then + errs = errs + 1 + print *, 'rreq is unmodified at T1 Imrecv().' + endif + call MPI_Wait(rreq, s2, ierr) + if (recvbuf(1) .ne. 1735928559) then + errs = errs + 1 + print *, 'recvbuf(1) is corrupted at T1 Imrecv().' + endif + if (recvbuf(2) .ne. 1277009102) then + errs = errs + 1 + print *, 'recvbuf(2) is corrupted at T1 Imrecv().' + endif + if (s2(MPI_SOURCE) .ne. 0) then + errs = errs + 1 + print *, 's2(MPI_SOURCE) != 0 at T1 Imrecv().' + endif + if (s2(MPI_TAG) .ne. 5) then + errs = errs + 1 + print *, 's2(MPI_TAG) != 5 at T1 Imrecv().' + endif + if (s2(MPI_ERROR) .ne. MPI_ERR_OTHER) then + errs = errs + 1 + print *, 's2(MPI_ERROR) != MPI_ERR_OTHER at T1 Imrecv().' + endif + if (msg .ne. MPI_MESSAGE_NULL) then + errs = errs + 1 + print *, 'msg != MPI_MESSAGE_NULL at T1 Imrecv().' + endif + endif + +! Test 2: simple Send and Improbe+Mrecv. + if (rank .eq. 0) then + sendbuf(1) = 1735928559 + sendbuf(2) = 1277009102 + call MPI_Send(sendbuf, 2, MPI_INTEGER, & + & 1, 5, MPI_COMM_WORLD, ierr) + else + do idx = 1, MPI_STATUS_SIZE + s1(idx) = 0 + s2(idx) = 0 + enddo +! the error fields are initialized for modification check. + s1(MPI_ERROR) = MPI_ERR_DIMS + s2(MPI_ERROR) = MPI_ERR_OTHER + + msg = MPI_MESSAGE_NULL + call MPI_Improbe(0, 5, MPI_COMM_WORLD, found, msg, s1, ierr) + do while (.not. found) + call MPI_Improbe(0, 5, MPI_COMM_WORLD, & + & found, msg, s1, ierr) + enddo + if (msg .eq. MPI_MESSAGE_NULL) then + errs = errs + 1 + print *, 'msg == MPI_MESSAGE_NULL at T2 Improbe().' + endif + if (s1(MPI_SOURCE) .ne. 0) then + errs = errs + 1 + print *, 's1(MPI_SOURCE) != 0 at T2 Improbe().' + endif + if (s1(MPI_TAG) .ne. 5) then + errs = errs + 1 + print *, 's1(MPI_TAG) != 5 at T2 Improbe().' + endif + if (s1(MPI_ERROR) .ne. MPI_ERR_DIMS) then + errs = errs + 1 + print *, 's1(MPI_ERROR) != MPI_ERR_DIMS at T2 Improbe().' + endif + + count = -1 + call MPI_Get_count(s1, MPI_INTEGER, count, ierr) + if (count .ne. 2) then + errs = errs + 1 + print *, 'probed buffer does not have 2 MPI_INTEGERs.' + endif + + recvbuf(1) = 19088743 + recvbuf(2) = 1309737967 + call MPI_Mrecv(recvbuf, count, MPI_INTEGER, msg, s2, ierr) + if (recvbuf(1) .ne. 1735928559) then + errs = errs + 1 + print *, 'recvbuf(1) is corrupted at T2 Mrecv().' + endif + if (recvbuf(2) .ne. 1277009102) then + errs = errs + 1 + print *, 'recvbuf(2) is corrupted at T2 Mrecv().' + endif + if (s2(MPI_SOURCE) .ne. 0) then + errs = errs + 1 + print *, 's2(MPI_SOURCE) != 0 at T2 Mrecv().' + endif + if (s2(MPI_TAG) .ne. 5) then + errs = errs + 1 + print *, 's2(MPI_TAG) != 5 at T2 Mrecv().' + endif + if (s2(MPI_ERROR) .ne. MPI_ERR_OTHER) then + errs = errs + 1 + print *, 's2(MPI_ERROR) != MPI_ERR_OTHER at T2 Mrecv().' + endif + if (msg .ne. MPI_MESSAGE_NULL) then + errs = errs + 1 + print *, 'msg != MPI_MESSAGE_NULL at T2 Mrecv().' + endif + endif + +! Test 3: simple Send and Improbe+Imrecv. + if (rank .eq. 0) then + sendbuf(1) = 1735928559 + sendbuf(2) = 1277009102 + call MPI_Send(sendbuf, 2, MPI_INTEGER, & + & 1, 5, MPI_COMM_WORLD, ierr) + else + do idx = 1, MPI_STATUS_SIZE + s1(idx) = 0 + s2(idx) = 0 + enddo +! the error fields are initialized for modification check. + s1(MPI_ERROR) = MPI_ERR_DIMS + s2(MPI_ERROR) = MPI_ERR_OTHER + + msg = MPI_MESSAGE_NULL + call MPI_Improbe(0, 5, MPI_COMM_WORLD, found, msg, s1, ierr) + do while (.not. found) + call MPI_Improbe(0, 5, MPI_COMM_WORLD, & + & found, msg, s1, ierr) + enddo + if (msg .eq. MPI_MESSAGE_NULL) then + errs = errs + 1 + print *, 'msg == MPI_MESSAGE_NULL at T3 Improbe().' + endif + if (s1(MPI_SOURCE) .ne. 0) then + errs = errs + 1 + print *, 's1(MPI_SOURCE) != 0 at T3 Improbe().' + endif + if (s1(MPI_TAG) .ne. 5) then + errs = errs + 1 + print *, 's1(MPI_TAG) != 5 at T3 Improbe().' + endif + if (s1(MPI_ERROR) .ne. MPI_ERR_DIMS) then + errs = errs + 1 + print *, 's1(MPI_ERROR) != MPI_ERR_DIMS at T3 Improbe().' + endif + + count = -1 + call MPI_Get_count(s1, MPI_INTEGER, count, ierr) + if (count .ne. 2) then + errs = errs + 1 + print *, 'probed buffer does not have 2 MPI_INTEGERs.' + endif + + rreq = MPI_REQUEST_NULL + recvbuf(1) = 19088743 + recvbuf(2) = 1309737967 + call MPI_Imrecv(recvbuf, count, MPI_INTEGER, msg, rreq, ierr) + if (rreq .eq. MPI_REQUEST_NULL) then + errs = errs + 1 + print *, 'rreq is unmodified at T3 Imrecv().' + endif + call MPI_Wait(rreq, s2, ierr) + if (recvbuf(1) .ne. 1735928559) then + errs = errs + 1 + print *, 'recvbuf(1) is corrupted at T3 Imrecv().' + endif + if (recvbuf(2) .ne. 1277009102) then + errs = errs + 1 + print *, 'recvbuf(2) is corrupted at T3 Imrecv().' + endif + if (s2(MPI_SOURCE) .ne. 0) then + errs = errs + 1 + print *, 's2(MPI_SOURCE) != 0 at T3 Imrecv().' + endif + if (s2(MPI_TAG) .ne. 5) then + errs = errs + 1 + print *, 's2(MPI_TAG) != 5 at T3 Imrecv().' + endif + if (s2(MPI_ERROR) .ne. MPI_ERR_OTHER) then + errs = errs + 1 + print *, 's2(MPI_ERROR) != MPI_ERR_OTHER at T3 Imrecv().' + endif + if (msg .ne. MPI_MESSAGE_NULL) then + errs = errs + 1 + print *, 'msg != MPI_MESSAGE_NULL at T3 Imrecv().' + endif + endif + +! Test 4: Mprobe+Mrecv with MPI_PROC_NULL + if (.true.) then + do idx = 1, MPI_STATUS_SIZE + s1(idx) = 0 + s2(idx) = 0 + enddo +! the error fields are initialized for modification check. + s1(MPI_ERROR) = MPI_ERR_DIMS + s2(MPI_ERROR) = MPI_ERR_OTHER + + msg = MPI_MESSAGE_NULL + call MPI_Mprobe(MPI_PROC_NULL, 5, MPI_COMM_WORLD, & + & msg, s1, ierr) + if (s1(MPI_SOURCE) .ne. MPI_PROC_NULL) then + errs = errs + 1 + print *, 's1(MPI_SOURCE) != MPI_PROC_NULL at T4 Mprobe().' + endif + if (s1(MPI_TAG) .ne. MPI_ANY_TAG) then + errs = errs + 1 + print *, 's1(MPI_TAG) != MPI_ANY_TAG at T4 Mprobe().' + endif + if (s1(MPI_ERROR) .ne. MPI_ERR_DIMS) then + errs = errs + 1 + print *, 's1(MPI_ERROR) != MPI_ERR_DIMS at T4 Mprobe().' + endif + if (msg .ne. MPI_MESSAGE_NO_PROC) then + errs = errs + 1 + print *, 'msg != MPI_MESSAGE_NO_PROC at T4 Mprobe().' + endif + + count = -1 + call MPI_Get_count(s1, MPI_INTEGER, count, ierr) + if (count .ne. 0) then + errs = errs + 1 + print *, 'probed buffer does not have 0 MPI_INTEGER.' + endif + + recvbuf(1) = 19088743 + recvbuf(2) = 1309737967 + call MPI_Mrecv(recvbuf, count, MPI_INTEGER, msg, s2, ierr) +! recvbuf() should remain unmodified + if (recvbuf(1) .ne. 19088743) then + errs = errs + 1 + print *, 'recvbuf(1) is corrupted at T4 Mrecv().' + endif + if (recvbuf(2) .ne. 1309737967) then + errs = errs + 1 + print *, 'recvbuf(2) is corrupted at T4 Mrecv().' + endif + if (s2(MPI_SOURCE) .ne. MPI_PROC_NULL) then + errs = errs + 1 + print *, 's2(MPI_SOURCE) != MPI_PROC_NULL at T4 Mrecv().' + endif + if (s2(MPI_TAG) .ne. MPI_ANY_TAG) then + errs = errs + 1 + print *, 's2(MPI_TAG) != MPI_ANY_TAG at T4 Mrecv().' + endif + if (s2(MPI_ERROR) .ne. MPI_ERR_OTHER) then + errs = errs + 1 + print *, 's2(MPI_ERROR) != MPI_ERR_OTHER at T4 Mrecv().' + endif + if (msg .ne. MPI_MESSAGE_NULL) then + errs = errs + 1 + print *, 'msg != MPI_MESSAGE_NULL at T4 Mrecv().' + endif + + count = -1 + call MPI_Get_count(s2, MPI_INTEGER, count, ierr) + if (count .ne. 0) then + errs = errs + 1 + print *, 'recv buffer does not have 0 MPI_INTEGER.' + endif + endif + +! Test 5: Mprobe+Imrecv with MPI_PROC_NULL + if (.true.) then + do idx = 1, MPI_STATUS_SIZE + s1(idx) = 0 + s2(idx) = 0 + enddo +! the error fields are initialized for modification check. + s1(MPI_ERROR) = MPI_ERR_DIMS + s2(MPI_ERROR) = MPI_ERR_OTHER + + msg = MPI_MESSAGE_NULL + call MPI_Mprobe(MPI_PROC_NULL, 5, MPI_COMM_WORLD, & + & msg, s1, ierr) + if (s1(MPI_SOURCE) .ne. MPI_PROC_NULL) then + errs = errs + 1 + print *, 's1(MPI_SOURCE) != MPI_PROC_NULL at T5 Mprobe().' + endif + if (s1(MPI_TAG) .ne. MPI_ANY_TAG) then + errs = errs + 1 + print *, 's1(MPI_TAG) != MPI_ANY_TAG at T5 Mprobe().' + endif + if (s1(MPI_ERROR) .ne. MPI_ERR_DIMS) then + errs = errs + 1 + print *, 's1(MPI_ERROR) != MPI_ERR_DIMS at T5 Mprobe().' + endif + if (msg .ne. MPI_MESSAGE_NO_PROC) then + errs = errs + 1 + print *, 'msg != MPI_MESSAGE_NO_PROC at T5 Mprobe().' + endif + + count = -1 + call MPI_Get_count(s1, MPI_INTEGER, count, ierr) + if (count .ne. 0) then + errs = errs + 1 + print *, 'probed buffer does not have 0 MPI_INTEGER.' + endif + + rreq = MPI_REQUEST_NULL + recvbuf(1) = 19088743 + recvbuf(2) = 1309737967 + call MPI_Imrecv(recvbuf, count, MPI_INTEGER, msg, rreq, ierr) + if (rreq .eq. MPI_REQUEST_NULL) then + errs = errs + 1 + print *, 'rreq == MPI_REQUEST_NULL at T5 Imrecv().' + endif + flag = .false. + call MPI_Test(rreq, flag, s2, ierr) + if (.not. flag) then + errs = errs + 1 + print *, 'flag is false at T5 Imrecv().' + endif +! recvbuf() should remain unmodified + if (recvbuf(1) .ne. 19088743) then + errs = errs + 1 + print *, 'recvbuf(1) is corrupted at T5 Imrecv().' + endif + if (recvbuf(2) .ne. 1309737967) then + errs = errs + 1 + print *, 'recvbuf(2) is corrupted at T5 Imrecv().' + endif + if (s2(MPI_SOURCE) .ne. MPI_PROC_NULL) then + errs = errs + 1 + print *, 's2(MPI_SOURCE) != MPI_PROC_NULL at T5 Imrecv().' + endif + if (s2(MPI_TAG) .ne. MPI_ANY_TAG) then + errs = errs + 1 + print *, 's2(MPI_TAG) != MPI_ANY_TAG at T5 Imrecv().' + endif + if (s2(MPI_ERROR) .ne. MPI_ERR_OTHER) then + errs = errs + 1 + print *, 's2(MPI_ERROR) != MPI_ERR_OTHER at T5 Imrecv().' + endif + if (msg .ne. MPI_MESSAGE_NULL) then + errs = errs + 1 + print *, 'msg != MPI_MESSAGE_NULL at T5 Imrecv().' + endif + + count = -1 + call MPI_Get_count(s2, MPI_INTEGER, count, ierr) + if (count .ne. 0) then + errs = errs + 1 + print *, 'recv buffer does not have 0 MPI_INTEGER.' + endif + endif + +! Test 6: Improbe+Mrecv with MPI_PROC_NULL + if (.true.) then + do idx = 1, MPI_STATUS_SIZE + s1(idx) = 0 + s2(idx) = 0 + enddo +! the error fields are initialized for modification check. + s1(MPI_ERROR) = MPI_ERR_DIMS + s2(MPI_ERROR) = MPI_ERR_OTHER + + found = .false. + msg = MPI_MESSAGE_NULL + call MPI_Improbe(MPI_PROC_NULL, 5, MPI_COMM_WORLD, & + & found, msg, s1, ierr) + if (.not. found) then + errs = errs + 1 + print *, 'found is false at T6 Improbe().' + endif + if (s1(MPI_SOURCE) .ne. MPI_PROC_NULL) then + errs = errs + 1 + print *, 's1(MPI_SOURCE) != MPI_PROC_NULL at T6 Improbe()' + endif + if (s1(MPI_TAG) .ne. MPI_ANY_TAG) then + errs = errs + 1 + print *, 's1(MPI_TAG) != MPI_ANY_TAG at T6 Improbe().' + endif + if (s1(MPI_ERROR) .ne. MPI_ERR_DIMS) then + errs = errs + 1 + print *, 's1(MPI_ERROR) != MPI_ERR_DIMS at T6 Improbe().' + endif + if (msg .ne. MPI_MESSAGE_NO_PROC) then + errs = errs + 1 + print *, 'msg != MPI_MESSAGE_NO_PROC at T6 Improbe().' + endif + + count = -1 + call MPI_Get_count(s1, MPI_INTEGER, count, ierr) + if (count .ne. 0) then + errs = errs + 1 + print *, 'probed buffer does not have 0 MPI_INTEGER.' + endif + + recvbuf(1) = 19088743 + recvbuf(2) = 1309737967 + call MPI_Mrecv(recvbuf, count, MPI_INTEGER, msg, s2, ierr) +! recvbuf() should remain unmodified + if (recvbuf(1) .ne. 19088743) then + errs = errs + 1 + print *, 'recvbuf(1) is corrupted at T6 Mrecv().' + endif + if (recvbuf(2) .ne. 1309737967) then + errs = errs + 1 + print *, 'recvbuf(2) is corrupted at T6 Mrecv().' + endif + if (s2(MPI_SOURCE) .ne. MPI_PROC_NULL) then + errs = errs + 1 + print *, 's2(MPI_SOURCE) != MPI_PROC_NULL at T6 Mrecv().' + endif + if (s2(MPI_TAG) .ne. MPI_ANY_TAG) then + errs = errs + 1 + print *, 's2(MPI_TAG) != MPI_ANY_TAG at T6 Mrecv().' + endif + if (s2(MPI_ERROR) .ne. MPI_ERR_OTHER) then + errs = errs + 1 + print *, 's2(MPI_ERROR) != MPI_ERR_OTHER at T6 Mrecv().' + endif + if (msg .ne. MPI_MESSAGE_NULL) then + errs = errs + 1 + print *, 'msg != MPI_MESSAGE_NULL at T6 Mrecv().' + endif + + count = -1 + call MPI_Get_count(s2, MPI_INTEGER, count, ierr) + if (count .ne. 0) then + errs = errs + 1 + print *, 'recv buffer does not have 0 MPI_INTEGER.' + endif + endif + +! Test 7: Improbe+Imrecv with MPI_PROC_NULL + if (.true.) then + do idx = 1, MPI_STATUS_SIZE + s1(idx) = 0 + s2(idx) = 0 + enddo +! the error fields are initialized for modification check. + s1(MPI_ERROR) = MPI_ERR_DIMS + s2(MPI_ERROR) = MPI_ERR_OTHER + + found = .false. + msg = MPI_MESSAGE_NULL + call MPI_Improbe(MPI_PROC_NULL, 5, MPI_COMM_WORLD, & + & found, msg, s1, ierr) + if (.not. found) then + errs = errs + 1 + print *, 'found is false at T7 Improbe().' + endif + if (s1(MPI_SOURCE) .ne. MPI_PROC_NULL) then + errs = errs + 1 + print *, 's1(MPI_SOURCE) != MPI_PROC_NULL at T7 Improbe()' + endif + if (s1(MPI_TAG) .ne. MPI_ANY_TAG) then + errs = errs + 1 + print *, 's1(MPI_TAG) != MPI_ANY_TAG at T7 Improbe().' + endif + if (s1(MPI_ERROR) .ne. MPI_ERR_DIMS) then + errs = errs + 1 + print *, 's1(MPI_ERROR) != MPI_ERR_DIMS at T7 Improbe().' + endif + if (msg .ne. MPI_MESSAGE_NO_PROC) then + errs = errs + 1 + print *, 'msg != MPI_MESSAGE_NO_PROC at T7 Improbe().' + endif + + count = -1 + call MPI_Get_count(s1, MPI_INTEGER, count, ierr) + if (count .ne. 0) then + errs = errs + 1 + print *, 'probed buffer does not have 0 MPI_INTEGER.' + endif + + rreq = MPI_REQUEST_NULL + recvbuf(1) = 19088743 + recvbuf(2) = 1309737967 + call MPI_Imrecv(recvbuf, count, MPI_INTEGER, msg, rreq, ierr) + if (rreq .eq. MPI_REQUEST_NULL) then + errs = errs + 1 + print *, 'rreq == MPI_REQUEST_NULL at T7 Imrecv().' + endif + flag = .false. + call MPI_Test(rreq, flag, s2, ierr) + if (.not. flag) then + errs = errs + 1 + print *, 'flag is false at T7 Imrecv().' + endif +! recvbuf() should remain unmodified + if (recvbuf(1) .ne. 19088743) then + errs = errs + 1 + print *, 'recvbuf(1) is corrupted at T7 Imrecv().' + endif + if (recvbuf(2) .ne. 1309737967) then + errs = errs + 1 + print *, 'recvbuf(2) is corrupted at T7 Imrecv().' + endif + if (s2(MPI_SOURCE) .ne. MPI_PROC_NULL) then + errs = errs + 1 + print *, 's2(MPI_SOURCE) != MPI_PROC_NULL at T7 Imrecv().' + endif + if (s2(MPI_TAG) .ne. MPI_ANY_TAG) then + errs = errs + 1 + print *, 's2(MPI_TAG) != MPI_ANY_TAG at T7 Imrecv().' + endif + if (s2(MPI_ERROR) .ne. MPI_ERR_OTHER) then + errs = errs + 1 + print *, 's2(MPI_ERROR) != MPI_ERR_OTHER at T7 Imrecv().' + endif + if (msg .ne. MPI_MESSAGE_NULL) then + errs = errs + 1 + print *, 'msg != MPI_MESSAGE_NULL at T7 Imrecv().' + endif + + count = -1 + call MPI_Get_count(s2, MPI_INTEGER, count, ierr) + if (count .ne. 0) then + errs = errs + 1 + print *, 'recv buffer does not have 0 MPI_INTEGER.' + endif + endif + + call mtest_finalize( errs ) + call mpi_finalize( ierr ) + end diff --git a/teshsuite/smpi/mpich3-test/f90/pt2pt/statusesf90.f90 b/teshsuite/smpi/mpich3-test/f90/pt2pt/statusesf90.f90 new file mode 100644 index 0000000000..940555464a --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/pt2pt/statusesf90.f90 @@ -0,0 +1,56 @@ +! This file created from test/mpi/f77/pt2pt/statusesf.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2003 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + program main +! Test support for MPI_STATUS_IGNORE and MPI_STATUSES_IGNORE + use mpi + integer nreqs + parameter (nreqs = 100) + integer reqs(nreqs) + integer ierr, rank, i + integer errs + + ierr = -1 + errs = 0 + call mpi_init( ierr ) + if (ierr .ne. MPI_SUCCESS) then + errs = errs + 1 + print *, 'Unexpected return from MPI_INIT', ierr + endif + + ierr = -1 + call mpi_comm_rank( MPI_COMM_WORLD, rank, ierr ) + if (ierr .ne. MPI_SUCCESS) then + errs = errs + 1 + print *, 'Unexpected return from MPI_COMM_WORLD', ierr + endif + do i=1, nreqs, 2 + ierr = -1 + call mpi_isend( MPI_BOTTOM, 0, MPI_BYTE, rank, i, & + & MPI_COMM_WORLD, reqs(i), ierr ) + if (ierr .ne. MPI_SUCCESS) then + errs = errs + 1 + print *, 'Unexpected return from MPI_ISEND', ierr + endif + ierr = -1 + call mpi_irecv( MPI_BOTTOM, 0, MPI_BYTE, rank, i, & + & MPI_COMM_WORLD, reqs(i+1), ierr ) + if (ierr .ne. MPI_SUCCESS) then + errs = errs + 1 + print *, 'Unexpected return from MPI_IRECV', ierr + endif + enddo + + ierr = -1 + call mpi_waitall( nreqs, reqs, MPI_STATUSES_IGNORE, ierr ) + if (ierr .ne. MPI_SUCCESS) then + errs = errs + 1 + print *, 'Unexpected return from MPI_WAITALL', ierr + endif + + call mtest_finalize( errs ) + call mpi_finalize( ierr ) + end diff --git a/teshsuite/smpi/mpich3-test/f90/pt2pt/testlist b/teshsuite/smpi/mpich3-test/f90/pt2pt/testlist new file mode 100644 index 0000000000..b39a1a0462 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/pt2pt/testlist @@ -0,0 +1,5 @@ +# This file generated by f77tof90 +statusesf90 1 +#greqf90 1 +#allpairf90 2 +mprobef90 2 mpiversion=3.0 diff --git a/teshsuite/smpi/mpich3-test/f90/testlist b/teshsuite/smpi/mpich3-test/f90/testlist new file mode 100644 index 0000000000..bfe6f299d3 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/testlist @@ -0,0 +1,15 @@ +#attr +coll +#comm +#ext +#info +init +#io +#misc +pt2pt +datatype +#f90types +# +#spawn +#timer +#topo diff --git a/teshsuite/smpi/mpich3-test/f90/util/mtestf90.f90 b/teshsuite/smpi/mpich3-test/f90/util/mtestf90.f90 new file mode 100644 index 0000000000..ea6f4138d3 --- /dev/null +++ b/teshsuite/smpi/mpich3-test/f90/util/mtestf90.f90 @@ -0,0 +1,124 @@ +! This file created from test/mpi/f77/util/mtestf.f with f77tof90 +! -*- Mode: Fortran; -*- +! +! (C) 2003 by Argonne National Laboratory. +! See COPYRIGHT in top-level directory. +! + subroutine MTest_Init( ierr ) +! Place the include first so that we can automatically create a +! Fortran 90 version that uses the mpi module instead. If +! the module is in a different place, the compiler can complain +! about out-of-order statements + use mpi + integer ierr + logical flag + logical dbgflag + integer wrank + common /mtest/ dbgflag, wrank + + call MPI_Initialized( flag, ierr ) + if (.not. flag) then + call MPI_Init( ierr ) + endif + + dbgflag = .false. + call MPI_Comm_rank( MPI_COMM_WORLD, wrank, ierr ) + end +! + subroutine MTest_Finalize( errs ) + use mpi + integer errs + integer rank, toterrs, ierr + + call MPI_Comm_rank( MPI_COMM_WORLD, rank, ierr ) + + call MPI_Allreduce( errs, toterrs, 1, MPI_INTEGER, MPI_SUM, & + & MPI_COMM_WORLD, ierr ) + + if (rank .eq. 0) then + if (toterrs .gt. 0) then + print *, " Found ", toterrs, " errors" + else + print *, " No Errors" + endif + endif + end + +module array + integer, dimension(:), allocatable :: myindex +end module + +! +! A simple get intracomm for now + logical function MTestGetIntracomm( comm, min_size, qsmaller ) + use array + use mpi + + integer ierr + integer comm, min_size, size, rank + logical qsmaller + + integer status + call mpi_comm_size( MPI_COMM_WORLD, size, ierr ) + + if(.not. allocated(myindex)) then + allocate(myindex(size), STAT=status) + call mpi_comm_rank( MPI_COMM_WORLD, rank, ierr ) + myindex(rank+1)=0 + endif + + !data myindex /0/ + + + + if (myindex(rank+1) .eq. 0) then + comm = MPI_COMM_WORLD + else if (myindex(rank+1) .eq. 1) then + call mpi_comm_dup( MPI_COMM_WORLD, comm, ierr ) + else if (myindex(rank+1) .eq. 2) then + call mpi_comm_size( MPI_COMM_WORLD, size, ierr ) + call mpi_comm_rank( MPI_COMM_WORLD, rank, ierr ) + call mpi_comm_split( MPI_COMM_WORLD, 0, size - rank, comm, & + & ierr ) + else + if (min_size .eq. 1 .and. myindex(rank+1) .eq. 3) then + comm = MPI_COMM_SELF + endif + endif + myindex(rank+1) = mod( myindex(rank+1), 4 ) + 1 + MTestGetIntracomm = comm .ne. MPI_COMM_NULL + end +! + subroutine MTestFreeComm( comm ) + use mpi + integer comm, ierr + if (comm .ne. MPI_COMM_WORLD .and. & + & comm .ne. MPI_COMM_SELF .and. & + & comm .ne. MPI_COMM_NULL) then + call mpi_comm_free( comm, ierr ) + endif + end +! + subroutine MTestPrintError( errcode ) + use mpi + integer errcode + integer errclass, slen, ierr + character*(MPI_MAX_ERROR_STRING) string + + call MPI_Error_class( errcode, errclass, ierr ) + call MPI_Error_string( errcode, string, slen, ierr ) + print *, "Error class ", errclass, "(", string(1:slen), ")" + end +! + subroutine MTestPrintErrorMsg( msg, errcode ) + use mpi + character*(*) msg + integer errcode + integer errclass, slen, ierr + character*(MPI_MAX_ERROR_STRING) string + + call MPI_Error_class( errcode, errclass, ierr ) + call MPI_Error_string( errcode, string, slen, ierr ) + print *, msg, ": Error class ", errclass, " & + & (", string(1:slen), ")" + end