1
1

No functionality changes (yet).

Just fix the indentation to meet the coding standard.

This commit was SVN r14300.
Этот коммит содержится в:
Josh Hursey 2007-04-11 15:19:51 +00:00
родитель e9e8dc2765
Коммит 5efae25390

Просмотреть файл

@ -74,9 +74,9 @@ struct mca_pml_base_modex_cb_t {
typedef struct mca_pml_base_modex_cb_t mca_pml_base_modex_cb_t; typedef struct mca_pml_base_modex_cb_t mca_pml_base_modex_cb_t;
OBJ_CLASS_INSTANCE(mca_pml_base_modex_cb_t, OBJ_CLASS_INSTANCE(mca_pml_base_modex_cb_t,
opal_list_item_t, opal_list_item_t,
NULL, NULL,
NULL); NULL);
/** /**
@ -113,9 +113,9 @@ mca_pml_base_modex_module_destruct(mca_pml_base_modex_module_t * module)
} }
OBJ_CLASS_INSTANCE(mca_pml_base_modex_module_t, OBJ_CLASS_INSTANCE(mca_pml_base_modex_module_t,
opal_list_item_t, opal_list_item_t,
mca_pml_base_modex_module_construct, mca_pml_base_modex_module_construct,
mca_pml_base_modex_module_destruct); mca_pml_base_modex_module_destruct);
/** /**
@ -146,9 +146,9 @@ mca_pml_base_modex_destruct(mca_pml_base_modex_t * modex)
} }
OBJ_CLASS_INSTANCE(mca_pml_base_modex_t, OBJ_CLASS_INSTANCE(mca_pml_base_modex_t,
opal_object_t, opal_object_t,
mca_pml_base_modex_construct, mca_pml_base_modex_construct,
mca_pml_base_modex_destruct); mca_pml_base_modex_destruct);
/** /**
@ -163,9 +163,9 @@ struct mca_pml_base_modex_subscription_t {
typedef struct mca_pml_base_modex_subscription_t mca_pml_base_modex_subscription_t; typedef struct mca_pml_base_modex_subscription_t mca_pml_base_modex_subscription_t;
OBJ_CLASS_INSTANCE(mca_pml_base_modex_subscription_t, OBJ_CLASS_INSTANCE(mca_pml_base_modex_subscription_t,
opal_list_item_t, opal_list_item_t,
NULL, NULL,
NULL); NULL);
/** /**
@ -204,7 +204,7 @@ mca_pml_base_modex_finalize(void)
OBJ_DESTRUCT(&mca_pml_base_modex_data); OBJ_DESTRUCT(&mca_pml_base_modex_data);
while (NULL != (item = opal_list_remove_first(&mca_pml_base_modex_subscriptions))) while (NULL != (item = opal_list_remove_first(&mca_pml_base_modex_subscriptions)))
OBJ_RELEASE(item); OBJ_RELEASE(item);
OBJ_DESTRUCT(&mca_pml_base_modex_subscriptions); OBJ_DESTRUCT(&mca_pml_base_modex_subscriptions);
OBJ_DESTRUCT(&mca_pml_base_modex_lock); OBJ_DESTRUCT(&mca_pml_base_modex_lock);
@ -218,15 +218,15 @@ mca_pml_base_modex_finalize(void)
*/ */
static mca_pml_base_modex_module_t * static mca_pml_base_modex_module_t *
mca_pml_base_modex_lookup_module(mca_pml_base_modex_t * modex, mca_pml_base_modex_lookup_module(mca_pml_base_modex_t * modex,
mca_base_component_t * component) mca_base_component_t * component)
{ {
mca_pml_base_modex_module_t *modex_module; mca_pml_base_modex_module_t *modex_module;
for (modex_module = (mca_pml_base_modex_module_t *) opal_list_get_first(&modex->modex_modules); for (modex_module = (mca_pml_base_modex_module_t *) opal_list_get_first(&modex->modex_modules);
modex_module != (mca_pml_base_modex_module_t *) opal_list_get_end(&modex->modex_modules); modex_module != (mca_pml_base_modex_module_t *) opal_list_get_end(&modex->modex_modules);
modex_module = (mca_pml_base_modex_module_t *) opal_list_get_next(modex_module)) { modex_module = (mca_pml_base_modex_module_t *) opal_list_get_next(modex_module)) {
if (mca_base_component_compatible(&modex_module->component, component) == 0) { if (mca_base_component_compatible(&modex_module->component, component) == 0) {
return modex_module; return modex_module;
} }
} }
return NULL; return NULL;
} }
@ -237,15 +237,15 @@ mca_pml_base_modex_lookup_module(mca_pml_base_modex_t * modex,
*/ */
static mca_pml_base_modex_module_t * static mca_pml_base_modex_module_t *
mca_pml_base_modex_create_module(mca_pml_base_modex_t * modex, mca_pml_base_modex_create_module(mca_pml_base_modex_t * modex,
mca_base_component_t * component) mca_base_component_t * component)
{ {
mca_pml_base_modex_module_t *modex_module; mca_pml_base_modex_module_t *modex_module;
if (NULL == (modex_module = mca_pml_base_modex_lookup_module(modex, component))) { if (NULL == (modex_module = mca_pml_base_modex_lookup_module(modex, component))) {
modex_module = OBJ_NEW(mca_pml_base_modex_module_t); modex_module = OBJ_NEW(mca_pml_base_modex_module_t);
if (NULL != modex_module) { if (NULL != modex_module) {
modex_module->component = *component; modex_module->component = *component;
opal_list_append(&modex->modex_modules, (opal_list_item_t *) modex_module); opal_list_append(&modex->modex_modules, (opal_list_item_t *) modex_module);
} }
} }
return modex_module; return modex_module;
} }
@ -256,7 +256,7 @@ mca_pml_base_modex_create_module(mca_pml_base_modex_t * modex,
*/ */
static void static void
mca_pml_base_modex_registry_callback(orte_gpr_notify_data_t * data, mca_pml_base_modex_registry_callback(orte_gpr_notify_data_t * data,
void *cbdata) void *cbdata)
{ {
orte_std_cntr_t i, j, k; orte_std_cntr_t i, j, k;
orte_gpr_value_t **values, *value; orte_gpr_value_t **values, *value;
@ -271,7 +271,7 @@ mca_pml_base_modex_registry_callback(orte_gpr_notify_data_t * data,
/* process the callback */ /* process the callback */
values = (orte_gpr_value_t **) (data->values)->addr; values = (orte_gpr_value_t **) (data->values)->addr;
for (i = 0, k = 0; k < data->cnt && for (i = 0, k = 0; k < data->cnt &&
i < (data->values)->size; i++) { i < (data->values)->size; i++) {
if (NULL != values[i]) { if (NULL != values[i]) {
k++; k++;
value = values[i]; value = values[i];
@ -290,7 +290,7 @@ mca_pml_base_modex_registry_callback(orte_gpr_notify_data_t * data,
opal_output(0, "mca_pml_base_modex_registry_callback: unable to find process name in notify message\n"); opal_output(0, "mca_pml_base_modex_registry_callback: unable to find process name in notify message\n");
return; /* if the name wasn't here, there is nothing we can do */ return; /* if the name wasn't here, there is nothing we can do */
GOTNAME: GOTNAME:
/* look up the modex data structure */ /* look up the modex data structure */
OPAL_THREAD_LOCK(&mca_pml_base_modex_lock); OPAL_THREAD_LOCK(&mca_pml_base_modex_lock);
modex = (mca_pml_base_modex_t*)orte_hash_table_get_proc(&mca_pml_base_modex_data, proc_name); modex = (mca_pml_base_modex_t*)orte_hash_table_get_proc(&mca_pml_base_modex_data, proc_name);
@ -354,13 +354,13 @@ GOTNAME:
cnt = 1; cnt = 1;
if (ORTE_SUCCESS != (rc = orte_dss.unpack(&buffer, if (ORTE_SUCCESS != (rc = orte_dss.unpack(&buffer,
&component.mca_component_major_version, &cnt, ORTE_INT32))) { &component.mca_component_major_version, &cnt, ORTE_INT32))) {
ORTE_ERROR_LOG(rc); ORTE_ERROR_LOG(rc);
continue; continue;
} }
cnt = 1; cnt = 1;
if (ORTE_SUCCESS != (rc = orte_dss.unpack(&buffer, if (ORTE_SUCCESS != (rc = orte_dss.unpack(&buffer,
&component.mca_component_minor_version, &cnt, ORTE_INT32))) { &component.mca_component_minor_version, &cnt, ORTE_INT32))) {
ORTE_ERROR_LOG(rc); ORTE_ERROR_LOG(rc);
continue; continue;
} }
@ -445,15 +445,15 @@ mca_pml_base_modex_subscribe(orte_process_name_t * name)
/* check for an existing subscription */ /* check for an existing subscription */
OPAL_LOCK(&mca_pml_base_modex_lock); OPAL_LOCK(&mca_pml_base_modex_lock);
if (!opal_list_is_empty(&mca_pml_base_modex_subscriptions)) { if (!opal_list_is_empty(&mca_pml_base_modex_subscriptions)) {
for (item = opal_list_get_first(&mca_pml_base_modex_subscriptions); for (item = opal_list_get_first(&mca_pml_base_modex_subscriptions);
item != opal_list_get_end(&mca_pml_base_modex_subscriptions); item != opal_list_get_end(&mca_pml_base_modex_subscriptions);
item = opal_list_get_next(item)) { item = opal_list_get_next(item)) {
subscription = (mca_pml_base_modex_subscription_t *) item; subscription = (mca_pml_base_modex_subscription_t *) item;
if (subscription->jobid == name->jobid) { if (subscription->jobid == name->jobid) {
OPAL_UNLOCK(&mca_pml_base_modex_lock); OPAL_UNLOCK(&mca_pml_base_modex_lock);
return OMPI_SUCCESS; return OMPI_SUCCESS;
} }
} }
} }
OPAL_UNLOCK(&mca_pml_base_modex_lock); OPAL_UNLOCK(&mca_pml_base_modex_lock);
@ -461,36 +461,36 @@ mca_pml_base_modex_subscribe(orte_process_name_t * name)
jobid = name->jobid; jobid = name->jobid;
if (ORTE_SUCCESS != (rc = orte_schema.get_std_subscription_name(&sub_name, if (ORTE_SUCCESS != (rc = orte_schema.get_std_subscription_name(&sub_name,
OMPI_MODEX_SUBSCRIPTION, jobid))) { OMPI_MODEX_SUBSCRIPTION, jobid))) {
ORTE_ERROR_LOG(rc); ORTE_ERROR_LOG(rc);
return rc; return rc;
} }
/* attach to the stage-1 standard trigger */ /* attach to the stage-1 standard trigger */
if (ORTE_SUCCESS != (rc = orte_schema.get_std_trigger_name(&trig_name, if (ORTE_SUCCESS != (rc = orte_schema.get_std_trigger_name(&trig_name,
ORTE_STG1_TRIGGER, jobid))) { ORTE_STG1_TRIGGER, jobid))) {
ORTE_ERROR_LOG(rc); ORTE_ERROR_LOG(rc);
free(sub_name); free(sub_name);
return rc; return rc;
} }
/* define the segment */ /* define the segment */
if (ORTE_SUCCESS != (rc = orte_schema.get_job_segment_name(&segment, jobid))) { if (ORTE_SUCCESS != (rc = orte_schema.get_job_segment_name(&segment, jobid))) {
ORTE_ERROR_LOG(rc); ORTE_ERROR_LOG(rc);
free(sub_name); free(sub_name);
free(trig_name); free(trig_name);
return rc; return rc;
} }
if (jobid != orte_process_info.my_name->jobid) { if (jobid != orte_process_info.my_name->jobid) {
if (ORTE_SUCCESS != (rc = orte_gpr.subscribe_N(&sub_id, NULL, NULL, if (ORTE_SUCCESS != (rc = orte_gpr.subscribe_N(&sub_id, NULL, NULL,
ORTE_GPR_NOTIFY_ADD_ENTRY | ORTE_GPR_NOTIFY_ADD_ENTRY |
ORTE_GPR_NOTIFY_VALUE_CHG | ORTE_GPR_NOTIFY_VALUE_CHG |
ORTE_GPR_NOTIFY_PRE_EXISTING, ORTE_GPR_NOTIFY_PRE_EXISTING,
ORTE_GPR_KEYS_OR | ORTE_GPR_TOKENS_OR | ORTE_GPR_STRIPPED, ORTE_GPR_KEYS_OR | ORTE_GPR_TOKENS_OR | ORTE_GPR_STRIPPED,
segment, segment,
NULL, /* look at all NULL, /* look at all
* containers on this * containers on this
* segment */ * segment */
2, keys, 2, keys,
mca_pml_base_modex_registry_callback, NULL))) { mca_pml_base_modex_registry_callback, NULL))) {
ORTE_ERROR_LOG(rc); ORTE_ERROR_LOG(rc);
free(sub_name); free(sub_name);
free(trig_name); free(trig_name);
@ -499,16 +499,16 @@ mca_pml_base_modex_subscribe(orte_process_name_t * name)
} }
} else { } else {
if (ORTE_SUCCESS != (rc = orte_gpr.subscribe_N(&sub_id, trig_name, sub_name, if (ORTE_SUCCESS != (rc = orte_gpr.subscribe_N(&sub_id, trig_name, sub_name,
ORTE_GPR_NOTIFY_ADD_ENTRY | ORTE_GPR_NOTIFY_ADD_ENTRY |
ORTE_GPR_NOTIFY_VALUE_CHG | ORTE_GPR_NOTIFY_VALUE_CHG |
ORTE_GPR_NOTIFY_STARTS_AFTER_TRIG, ORTE_GPR_NOTIFY_STARTS_AFTER_TRIG,
ORTE_GPR_KEYS_OR | ORTE_GPR_TOKENS_OR | ORTE_GPR_STRIPPED, ORTE_GPR_KEYS_OR | ORTE_GPR_TOKENS_OR | ORTE_GPR_STRIPPED,
segment, segment,
NULL, /* look at all NULL, /* look at all
* containers on this * containers on this
* segment */ * segment */
2, keys, 2, keys,
mca_pml_base_modex_registry_callback, NULL))) { mca_pml_base_modex_registry_callback, NULL))) {
ORTE_ERROR_LOG(rc); ORTE_ERROR_LOG(rc);
free(sub_name); free(sub_name);
free(trig_name); free(trig_name);
@ -539,8 +539,8 @@ mca_pml_base_modex_subscribe(orte_process_name_t * name)
int int
mca_pml_base_modex_send(mca_base_component_t * source_component, mca_pml_base_modex_send(mca_base_component_t * source_component,
const void *data, const void *data,
size_t size) size_t size)
{ {
orte_jobid_t jobid; orte_jobid_t jobid;
int rc; int rc;
@ -553,66 +553,66 @@ mca_pml_base_modex_send(mca_base_component_t * source_component,
jobid = ORTE_PROC_MY_NAME->jobid; jobid = ORTE_PROC_MY_NAME->jobid;
if (ORTE_SUCCESS != (rc = orte_schema.get_job_segment_name(&segment, jobid))) { if (ORTE_SUCCESS != (rc = orte_schema.get_job_segment_name(&segment, jobid))) {
ORTE_ERROR_LOG(rc); ORTE_ERROR_LOG(rc);
return rc; return rc;
} }
if (ORTE_SUCCESS != (rc = orte_schema.get_proc_tokens(&tokens, if (ORTE_SUCCESS != (rc = orte_schema.get_proc_tokens(&tokens,
&num_tokens, orte_process_info.my_name))) { &num_tokens, orte_process_info.my_name))) {
ORTE_ERROR_LOG(rc); ORTE_ERROR_LOG(rc);
free(segment); free(segment);
return rc; return rc;
} }
OBJ_CONSTRUCT(&buffer, orte_buffer_t); OBJ_CONSTRUCT(&buffer, orte_buffer_t);
ptr = source_component->mca_type_name; ptr = source_component->mca_type_name;
if (ORTE_SUCCESS != (rc = orte_dss.pack(&buffer, &ptr, 1, ORTE_STRING))) { if (ORTE_SUCCESS != (rc = orte_dss.pack(&buffer, &ptr, 1, ORTE_STRING))) {
ORTE_ERROR_LOG(rc); ORTE_ERROR_LOG(rc);
goto cleanup; goto cleanup;
} }
ptr = source_component->mca_component_name; ptr = source_component->mca_component_name;
if (ORTE_SUCCESS != (rc = orte_dss.pack(&buffer, &ptr, 1, ORTE_STRING))) { if (ORTE_SUCCESS != (rc = orte_dss.pack(&buffer, &ptr, 1, ORTE_STRING))) {
ORTE_ERROR_LOG(rc); ORTE_ERROR_LOG(rc);
goto cleanup; goto cleanup;
} }
if (ORTE_SUCCESS != (rc = orte_dss.pack(&buffer, &source_component->mca_component_major_version, 1, ORTE_INT32))) { if (ORTE_SUCCESS != (rc = orte_dss.pack(&buffer, &source_component->mca_component_major_version, 1, ORTE_INT32))) {
ORTE_ERROR_LOG(rc); ORTE_ERROR_LOG(rc);
goto cleanup; goto cleanup;
} }
if (ORTE_SUCCESS != (rc = orte_dss.pack(&buffer, &source_component->mca_component_minor_version, 1, ORTE_INT32))) { if (ORTE_SUCCESS != (rc = orte_dss.pack(&buffer, &source_component->mca_component_minor_version, 1, ORTE_INT32))) {
ORTE_ERROR_LOG(rc); ORTE_ERROR_LOG(rc);
goto cleanup; goto cleanup;
} }
if (ORTE_SUCCESS != (rc = orte_dss.pack(&buffer, &size, 1, ORTE_SIZE))) { if (ORTE_SUCCESS != (rc = orte_dss.pack(&buffer, &size, 1, ORTE_SIZE))) {
ORTE_ERROR_LOG(rc); ORTE_ERROR_LOG(rc);
goto cleanup; goto cleanup;
} }
if (0 != size) { if (0 != size) {
if (ORTE_SUCCESS != (rc = orte_dss.pack(&buffer, (void *) data, size, ORTE_BYTE))) { if (ORTE_SUCCESS != (rc = orte_dss.pack(&buffer, (void *) data, size, ORTE_BYTE))) {
ORTE_ERROR_LOG(rc); ORTE_ERROR_LOG(rc);
goto cleanup; goto cleanup;
} }
} }
if (ORTE_SUCCESS != (rc = orte_dss.unload(&buffer, (void **) &(bo.bytes), &(bo.size)))) { if (ORTE_SUCCESS != (rc = orte_dss.unload(&buffer, (void **) &(bo.bytes), &(bo.size)))) {
ORTE_ERROR_LOG(rc); ORTE_ERROR_LOG(rc);
goto cleanup; goto cleanup;
} }
OBJ_DESTRUCT(&buffer); OBJ_DESTRUCT(&buffer);
/* setup the data_value structure to hold the byte object */ /* setup the data_value structure to hold the byte object */
if (ORTE_SUCCESS != (rc = orte_dss.set(&value, (void *) &bo, ORTE_BYTE_OBJECT))) { if (ORTE_SUCCESS != (rc = orte_dss.set(&value, (void *) &bo, ORTE_BYTE_OBJECT))) {
ORTE_ERROR_LOG(rc); ORTE_ERROR_LOG(rc);
goto cleanup; goto cleanup;
} }
rc = orte_gpr.put_1(ORTE_GPR_TOKENS_AND | ORTE_GPR_KEYS_OR, rc = orte_gpr.put_1(ORTE_GPR_TOKENS_AND | ORTE_GPR_KEYS_OR,
segment, tokens, OMPI_MODEX_KEY, &value); segment, tokens, OMPI_MODEX_KEY, &value);
cleanup: cleanup:
free(segment); free(segment);
for (i = 0; i < num_tokens; i++) { for (i = 0; i < num_tokens; i++) {
free(tokens[i]); free(tokens[i]);
tokens[i] = NULL; tokens[i] = NULL;
} }
if (NULL != tokens) if (NULL != tokens)
free(tokens); free(tokens);
return rc; return rc;
} }
@ -624,9 +624,9 @@ cleanup:
int int
mca_pml_base_modex_recv(mca_base_component_t * component, mca_pml_base_modex_recv(mca_base_component_t * component,
ompi_proc_t * proc, ompi_proc_t * proc,
void **buffer, void **buffer,
size_t * size) size_t * size)
{ {
mca_pml_base_modex_t *modex; mca_pml_base_modex_t *modex;
mca_pml_base_modex_module_t *modex_module; mca_pml_base_modex_module_t *modex_module;
@ -667,26 +667,26 @@ mca_pml_base_modex_recv(mca_base_component_t * component,
/* lookup/create the module */ /* lookup/create the module */
if (NULL == (modex_module = mca_pml_base_modex_create_module(modex, component))) { if (NULL == (modex_module = mca_pml_base_modex_create_module(modex, component))) {
OPAL_THREAD_UNLOCK(&modex->modex_lock); OPAL_THREAD_UNLOCK(&modex->modex_lock);
return OMPI_ERR_OUT_OF_RESOURCE; return OMPI_ERR_OUT_OF_RESOURCE;
} }
/* wait until data is available */ /* wait until data is available */
while (modex_module->module_data_avail == false) { while (modex_module->module_data_avail == false) {
opal_condition_wait(&modex_module->module_data_cond, &modex->modex_lock); opal_condition_wait(&modex_module->module_data_cond, &modex->modex_lock);
} }
/* copy the data out to the user */ /* copy the data out to the user */
if (modex_module->module_data_size == 0) { if (modex_module->module_data_size == 0) {
*buffer = NULL; *buffer = NULL;
*size = 0; *size = 0;
} else { } else {
void *copy = malloc(modex_module->module_data_size); void *copy = malloc(modex_module->module_data_size);
if (copy == NULL) { if (copy == NULL) {
return OMPI_ERR_OUT_OF_RESOURCE; return OMPI_ERR_OUT_OF_RESOURCE;
} }
memcpy(copy, modex_module->module_data, modex_module->module_data_size); memcpy(copy, modex_module->module_data, modex_module->module_data_size);
*buffer = copy; *buffer = copy;
*size = modex_module->module_data_size; *size = modex_module->module_data_size;
} }
OPAL_THREAD_UNLOCK(&modex->modex_lock); OPAL_THREAD_UNLOCK(&modex->modex_lock);
return OMPI_SUCCESS; return OMPI_SUCCESS;
@ -699,9 +699,9 @@ mca_pml_base_modex_recv(mca_base_component_t * component,
int int
mca_pml_base_modex_recv_nb(mca_base_component_t * component, mca_pml_base_modex_recv_nb(mca_base_component_t * component,
ompi_proc_t * proc, ompi_proc_t * proc,
mca_pml_base_modex_cb_fn_t cbfunc, mca_pml_base_modex_cb_fn_t cbfunc,
void *cbdata) void *cbdata)
{ {
mca_pml_base_modex_t *modex; mca_pml_base_modex_t *modex;
mca_pml_base_modex_module_t *module; mca_pml_base_modex_module_t *module;
@ -737,8 +737,8 @@ mca_pml_base_modex_recv_nb(mca_base_component_t * component,
/* lookup/create the module */ /* lookup/create the module */
if (NULL == (module = mca_pml_base_modex_create_module(modex, component))) { if (NULL == (module = mca_pml_base_modex_create_module(modex, component))) {
OPAL_THREAD_UNLOCK(&modex->modex_lock); OPAL_THREAD_UNLOCK(&modex->modex_lock);
return OMPI_ERR_OUT_OF_RESOURCE; return OMPI_ERR_OUT_OF_RESOURCE;
} }
/* register the callback */ /* register the callback */
cb = OBJ_NEW(mca_pml_base_modex_cb_t); cb = OBJ_NEW(mca_pml_base_modex_cb_t);