2006-07-04 05:20:20 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004-2006 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2006-07-26 01:46:04 +04:00
|
|
|
* Copyright (c) 2006 Cisco Systems, Inc. All rights reserved.
|
2006-07-04 05:20:20 +04:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
|
|
|
|
#include "ompi/request/request.h"
|
|
|
|
#include "ompi/mca/pml/base/pml_base_request.h"
|
|
|
|
|
|
|
|
#include "pml_cm.h"
|
|
|
|
#include "pml_cm_sendreq.h"
|
|
|
|
#include "pml_cm_recvreq.h"
|
|
|
|
|
|
|
|
int
|
2006-08-16 01:12:03 +04:00
|
|
|
mca_pml_cm_cancel(struct ompi_request_t *ompi_req, int flag)
|
2006-07-04 05:20:20 +04:00
|
|
|
{
|
2006-08-16 01:12:03 +04:00
|
|
|
int ret;
|
|
|
|
mca_pml_cm_request_t *base_request =
|
|
|
|
(mca_pml_cm_request_t*) ompi_req;
|
|
|
|
mca_mtl_request_t *mtl_req = NULL;
|
|
|
|
|
|
|
|
switch (base_request->req_pml_type) {
|
|
|
|
case MCA_PML_CM_REQUEST_SEND_HEAVY:
|
|
|
|
{
|
|
|
|
mca_pml_cm_hvy_send_request_t *request =
|
|
|
|
(mca_pml_cm_hvy_send_request_t*) base_request;
|
2006-12-15 20:54:14 +03:00
|
|
|
mtl_req = &request->req_mtl;
|
2006-08-16 01:12:03 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MCA_PML_CM_REQUEST_SEND_THIN:
|
|
|
|
{
|
|
|
|
mca_pml_cm_thin_send_request_t *request =
|
|
|
|
(mca_pml_cm_thin_send_request_t*) base_request;
|
2006-12-15 20:54:14 +03:00
|
|
|
mtl_req = &request->req_mtl;
|
2006-08-16 01:12:03 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MCA_PML_CM_REQUEST_RECV_HEAVY:
|
|
|
|
{
|
|
|
|
mca_pml_cm_hvy_recv_request_t *request =
|
|
|
|
(mca_pml_cm_hvy_recv_request_t*) base_request;
|
2006-12-15 20:54:14 +03:00
|
|
|
mtl_req = &request->req_mtl;
|
2006-08-16 01:12:03 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MCA_PML_CM_REQUEST_RECV_THIN:
|
|
|
|
{
|
|
|
|
mca_pml_cm_thin_recv_request_t *request =
|
|
|
|
(mca_pml_cm_thin_recv_request_t*) base_request;
|
2006-12-15 20:54:14 +03:00
|
|
|
mtl_req = &request->req_mtl;
|
2006-08-16 01:12:03 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
abort();
|
|
|
|
|
|
|
|
ret = OMPI_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = OMPI_MTL_CALL(cancel(ompi_mtl,
|
|
|
|
mtl_req,
|
|
|
|
flag));
|
|
|
|
|
2006-07-04 05:20:20 +04:00
|
|
|
return ret;
|
|
|
|
}
|