1
1

Correctly generate the raw description in the convertor. Advance

by the extent and not by the length of the contiguous segment.

This commit was SVN r25550.
Этот коммит содержится в:
George Bosilca 2011-11-30 00:14:47 +00:00
родитель 25476c7e54
Коммит 4b7e3b0af8

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

@ -109,7 +109,7 @@ opal_convertor_raw( opal_convertor_t* pConvertor,
index, source_base, (unsigned long)blength ); );
iov[index].iov_base = (IOVBASE_TYPE *) source_base;
iov[index].iov_len = blength;
source_base += blength;
source_base += pElem->elem.extent;
raw_data += blength;
count_desc--;
}