Triton Repository branch, master, updated. 8580fe89a4ae01bc718f7210ae3b38bb078704fa
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 8580fe89a4ae01bc718f7210ae3b38bb078704fa (commit) from 8c230b8ed2448fc8ebd96df05be6a16e4dd7bc22 (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 8580fe89a4ae01bc718f7210ae3b38bb078704fa Author: Phil Carns <[email protected]> Date: Thu Oct 28 12:30:30 2010 -0400 fix missing addr assignment in rosd functions ----------------------------------------------------------------------- Summary of changes: code/src/replicated-osd/replicated-osd.aer | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) Diff of changes: diff --git a/code/src/replicated-osd/replicated-osd.aer b/code/src/replicated-osd/replicated-osd.aer index f28862e..377bb15 100644 --- a/code/src/replicated-osd/replicated-osd.aer +++ b/code/src/replicated-osd/replicated-osd.aer @@ -324,6 +324,7 @@ __remote __blocking triton_ret_t rosd_remove( triton_uint128_to_string(oid_str, TRITON_UINT128_STRLEN, req->oid); triton_debug(rosd_dbg_mask, "ROSD forwarding remove of oid %s to %d'th server.\n", oid_str, my_position+1); req->flags |= ROSD_FLAG_S2S; + peer_addr = closest[my_position+1]; remote_tret = remote_rosd_remove(rctx, peer_addr, req, &out); } } @@ -475,6 +476,7 @@ __remote __blocking triton_ret_t rosd_write( triton_uint128_to_string(oid_str, TRITON_UINT128_STRLEN, req->oid); triton_debug(rosd_dbg_mask, "ROSD forwarding write of oid %s to %d'th server.\n", oid_str, my_position+1); req->flags |= ROSD_FLAG_S2S; + peer_addr = closest[my_position+1]; remote_tret = remote_rosd_write(rctx, peer_addr, req, &out); } } hooks/post-receive -- Triton Repository
participants (1)
-
noreply@mcs.anl.gov