mirror of
https://github.com/torvalds/linux.git
synced 2024-12-25 12:21:37 +00:00
Staging: hv: storvsc: call vmbus_recvpacket directly
Don't do the interface indirection, it's not needed at all. Cc: Haiyang Zhang <haiyangz@microsoft.com> Cc: Hank Janssen <hjanssen@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
559f816e13
commit
50ea95dfa2
@ -28,6 +28,7 @@
|
||||
#include "storvsc_api.h"
|
||||
#include "vmbus_packet_format.h"
|
||||
#include "vstorage.h"
|
||||
#include "channel.h"
|
||||
|
||||
|
||||
struct storvsc_request_extension {
|
||||
@ -451,10 +452,9 @@ static void StorVscOnChannelCallback(void *context)
|
||||
}
|
||||
|
||||
do {
|
||||
ret = device->Driver->VmbusChannelInterface.RecvPacket(device,
|
||||
packet,
|
||||
ALIGN_UP(sizeof(struct vstor_packet), 8),
|
||||
&bytesRecvd, &requestId);
|
||||
ret = vmbus_recvpacket(device->channel, packet,
|
||||
ALIGN_UP(sizeof(struct vstor_packet), 8),
|
||||
&bytesRecvd, &requestId);
|
||||
if (ret == 0 && bytesRecvd > 0) {
|
||||
DPRINT_DBG(STORVSC, "receive %d bytes - tid %llx",
|
||||
bytesRecvd, requestId);
|
||||
|
Loading…
Reference in New Issue
Block a user