Please report new issues athttps://github.com/DOCGroup
If all the arguments to an operation are fixed size then the header can be sent before the rest of the data, if the data is big enoug this can represent a performance improvement (because we increase overlapping between client and server); further if the arguments also have the proper layout they can be sent without copying to a temporary buffer. If the arguments are not fixed size the header could be sent before, but two passes over the data will be required.
Another problem that should be considered in the next round of optimizations.