Fix partial packing of non data elements.
There was a bug allowing for partial packing of non-data elements (such as loop and end_loop markers) during the exit condition of a pack/unpack call. This has basically no meaning. Prevent this bug from happening by making sure the element point to a data before trying to partially pack it. Signed-off-by: George Bosilca <bosilca@icl.utk.edu>
Этот коммит содержится в:
родитель
16b49dc5b3
Коммит
cc6432b4a2
@ -380,7 +380,7 @@ opal_generic_simple_unpack_function( opal_convertor_t* pConvertor,
|
|||||||
}
|
}
|
||||||
complete_loop:
|
complete_loop:
|
||||||
assert( pElem->elem.common.type < OPAL_DATATYPE_MAX_PREDEFINED );
|
assert( pElem->elem.common.type < OPAL_DATATYPE_MAX_PREDEFINED );
|
||||||
if( 0 != iov_len_local ) {
|
if( (pElem->elem.common.flags & OPAL_DATATYPE_FLAG_DATA) && (0 != iov_len_local) ) {
|
||||||
unsigned char* temp = conv_ptr;
|
unsigned char* temp = conv_ptr;
|
||||||
/* We have some partial data here. Let's copy it into the convertor
|
/* We have some partial data here. Let's copy it into the convertor
|
||||||
* and keep it hot until the next round.
|
* and keep it hot until the next round.
|
||||||
@ -391,7 +391,7 @@ opal_generic_simple_unpack_function( opal_convertor_t* pConvertor,
|
|||||||
opal_unpack_partial_datatype( pConvertor, pElem,
|
opal_unpack_partial_datatype( pConvertor, pElem,
|
||||||
iov_ptr, 0, iov_len_local,
|
iov_ptr, 0, iov_len_local,
|
||||||
&temp );
|
&temp );
|
||||||
|
|
||||||
pConvertor->partial_length = iov_len_local;
|
pConvertor->partial_length = iov_len_local;
|
||||||
iov_len_local = 0;
|
iov_len_local = 0;
|
||||||
}
|
}
|
||||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user