Triton Repository branch, master, updated. c4d8ed95019f857d7e9416b053e1738b295762e7
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Triton Repository". The branch, master has been updated via c4d8ed95019f857d7e9416b053e1738b295762e7 (commit) from e06bcf8166d1d2437aff14a0d3096dfff3ae45f3 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit c4d8ed95019f857d7e9416b053e1738b295762e7 Author: Phil Carns <[email protected]> Date: Wed Sep 22 12:53:49 2010 -0400 fix some warnings ----------------------------------------------------------------------- Summary of changes: code/src/replicated-osd/tests/rosd3.aer | 9 +++++++-- 1 files changed, 7 insertions(+), 2 deletions(-) Diff of changes: diff --git a/code/src/replicated-osd/tests/rosd3.aer b/code/src/replicated-osd/tests/rosd3.aer index df1ddcf..b51847e 100644 --- a/code/src/replicated-osd/tests/rosd3.aer +++ b/code/src/replicated-osd/tests/rosd3.aer @@ -21,6 +21,7 @@ #include "src/remote/service.hae" #include "src/fakess/fakess.hae" +#include "src/placement/placement.hae" #include "src/replicated-osd/replicated-osd.haer" #include "src/versioned-osd/prototype/versioned-osd.hae" @@ -93,6 +94,8 @@ __blocking triton_ret_t create_objects(int rank, int n) uint128_t oid; int32_t out; struct rosd_create_req req; + char oid_str[TRITON_UINT128_STRLEN]; + char svr_str[TRITON_UINT128_STRLEN]; for (i = 0; i < n; i++) { @@ -103,8 +106,10 @@ __blocking triton_ret_t create_objects(int rank, int n) printf("results:\n"); dump_nodes(1, &svr); - printf("lookup (%i.%i) -> (%i.%i)\n", - oid.u, oid.l, svr.u, svr.l); + triton_uint128_to_string(oid_str, TRITON_UINT128_STRLEN, oid); + triton_uint128_to_string(svr_str, TRITON_UINT128_STRLEN, svr); + + printf("lookup (%s) -> (%s)\n", oid_str, svr_str); req.oid = oid; req.flags = 0; hooks/post-receive -- Triton Repository
participants (1)
-
noreply@mcs.anl.gov