1
1

Once we compute the local offset use it (instead of the global one).

This commit was SVN r13634.
Этот коммит содержится в:
George Bosilca 2007-02-13 09:34:04 +00:00
родитель 22eca30b45
Коммит 2e042c91cf

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

@ -289,8 +289,8 @@ do {
if(offset >= segment->seg_len) { \
offset -= segment->seg_len; \
} else { \
iov[iov_count].iov_len = segment->seg_len - seg_offset; \
iov[iov_count].iov_base = (IOVBASE_TYPE*)((unsigned char*)segment->seg_addr.pval + seg_offset); \
iov[iov_count].iov_len = segment->seg_len - offset; \
iov[iov_count].iov_base = (IOVBASE_TYPE*)((unsigned char*)segment->seg_addr.pval + offset); \
iov_count++; \
} \
} \