ceph: support multiple class method calls in one ceph_msg
Messages are received from the wire directly into destination buffers.
A short read could result in corruption of the following destination
buffers. Allocate a single message buffer for all class method calls
and split them at the osd_client level. This only applies to ceph_msgs
containing multiple op call and may break support for ceph_msgs
containing a mix of class method calls that return data and other ops.
Signed-off-by: Douglas Fuller <dfuller@redhat.com>