Changeset 7826 for branches/as-branch/src/server/pipeline.sm
- Timestamp:
- 06/16/09 16:08:34 (4 years ago)
- Files:
-
- 1 modified
-
branches/as-branch/src/server/pipeline.sm (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/as-branch/src/server/pipeline.sm
r7825 r7826 124 124 125 125 gossip_debug(GOSSIP_IO_DEBUG, "smcb->base_frame=%d, frame_count=%d\n", smcb->base_frame, smcb->frame_count); 126 gossip_debug(GOSSIP_IO_DEBUG, "smcb=%p, smcb->parent_smcb=%p\n", smcb, smcb->parent_smcb);127 126 s_op->u.pipeline.buffer_used = 0; 128 127 bytes = s_op->u.pipeline.buffer_size; … … 221 220 job_id_t tmp_id; 222 221 struct server_configuration_s *user_opts = get_server_config_struct(); 223 struct PINT_server_op *parent_s_op = s_op->u.pipeline.parent;222 struct PINT_server_op *parent_s_op = PINT_sm_frame(smcb->parent_smcb, 0); 224 223 225 224 if(s_op->u.pipeline.segs == 0) { … … 310 309 { 311 310 struct PINT_server_op *s_op = PINT_sm_frame(smcb, PINT_FRAME_CURRENT); 312 struct PINT_server_op *parent_s_op = s_op->u.pipeline.parent;311 struct PINT_server_op *parent_s_op = PINT_sm_frame(smcb->parent_smcb, 0); 313 312 js_p->error_code = 0; 314 313 PVFS_size file_req_offset = parent_s_op->u.io.file_req_offset; … … 366 365 { 367 366 struct PINT_server_op *s_op = PINT_sm_frame(smcb, PINT_FRAME_CURRENT); 368 struct PINT_server_op *parent_s_op = s_op->u.pipeline.parent;367 struct PINT_server_op *parent_s_op = PINT_sm_frame(smcb->parent_smcb, 0); 369 368 PINT_sm_msgpair_state *msg_p = NULL; 370 369 struct server_configuration_s *user_opts = get_server_config_struct(); … … 504 503 { 505 504 struct PINT_server_op *s_op = PINT_sm_frame(smcb, PINT_FRAME_CURRENT); 506 struct PINT_server_op *parent_s_op = s_op->u.pipeline.parent;505 struct PINT_server_op *parent_s_op = PINT_sm_frame(smcb->parent_smcb, 0); 507 506 js_p->error_code = 0; 508 507 … … 754 753 { 755 754 struct PINT_server_op *s_op = PINT_sm_frame(smcb, PINT_FRAME_CURRENT); 756 struct PINT_server_op *parent_s_op = s_op->u.pipeline.parent;755 struct PINT_server_op *parent_s_op = PINT_sm_frame(smcb->parent_smcb, 0); 757 756 int ret, tmp_id; 758 757 struct server_configuration_s *user_opts = get_server_config_struct(); … … 808 807 { 809 808 struct PINT_server_op *s_op = PINT_sm_frame(smcb, PINT_FRAME_CURRENT); 810 struct PINT_server_op *parent_s_op = s_op->u.pipeline.parent;809 struct PINT_server_op *parent_s_op = PINT_sm_frame(smcb->parent_smcb, 0); 811 810 PINT_segpool_handle_t h = s_op->u.pipeline.seg_handle; 812 811 js_p->error_code = 0;
