Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 220422
b: refs/heads/master
c: 50ea95d
h: refs/heads/master
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Oct 21, 2010
1 parent 3925749 commit ebb8afc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 559f816e13b1e40e274d1aeeaaa7468986f997c0
refs/heads/master: 50ea95dfa2c3d4e99223867dfa2bfc8b17a890c1
8 changes: 4 additions & 4 deletions trunk/drivers/staging/hv/storvsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
#include "storvsc_api.h"
#include "vmbus_packet_format.h"
#include "vstorage.h"
#include "channel.h"


struct storvsc_request_extension {
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit ebb8afc

Please sign in to comment.