diff --git a/lnet/lnet/lib-move.c b/lnet/lnet/lib-move.c index 6e904ba7e330ccabc9e40c5bbc0713fb454d5bfd..d844a7a9a8f720aedd214cc61c6e2f6c6054b99c 100644 --- a/lnet/lnet/lib-move.c +++ b/lnet/lnet/lib-move.c @@ -744,6 +744,9 @@ static int parse_get(nal_cb_t * nal, ptl_hdr_t * hdr, void *private) reply.msg.reply.dst_wmd = hdr->msg.get.return_wmd; + /* NB call lib_send() _BEFORE_ lib_recv() completes the incoming + * message. Some NALs _require_ this to implement optimized GET */ + rc = lib_send (nal, private, msg, &reply, PTL_MSG_REPLY, hdr->src_nid, hdr->src_pid, md, offset, mlength); if (rc != PTL_OK) { diff --git a/lustre/portals/portals/lib-move.c b/lustre/portals/portals/lib-move.c index 6e904ba7e330ccabc9e40c5bbc0713fb454d5bfd..d844a7a9a8f720aedd214cc61c6e2f6c6054b99c 100644 --- a/lustre/portals/portals/lib-move.c +++ b/lustre/portals/portals/lib-move.c @@ -744,6 +744,9 @@ static int parse_get(nal_cb_t * nal, ptl_hdr_t * hdr, void *private) reply.msg.reply.dst_wmd = hdr->msg.get.return_wmd; + /* NB call lib_send() _BEFORE_ lib_recv() completes the incoming + * message. Some NALs _require_ this to implement optimized GET */ + rc = lib_send (nal, private, msg, &reply, PTL_MSG_REPLY, hdr->src_nid, hdr->src_pid, md, offset, mlength); if (rc != PTL_OK) {