Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 196972
b: refs/heads/master
c: c6fcf0b
h: refs/heads/master
v: v3
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed May 11, 2010
1 parent a864e7b commit 28afd75
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 10 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: a5729c005c35ce5b7b8cdbe407c0d0dedf4991dd
refs/heads/master: c6fcf0baa6367fecd3e025253700b64ccff8c1eb
25 changes: 16 additions & 9 deletions trunk/drivers/staging/hv/NetVsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1288,28 +1288,33 @@ static void NetVscOnReceiveCompletion(void *Context)

void NetVscOnChannelCallback(void *Context)
{
const int netPacketSize = 2048;
int ret;
struct hv_device *device = Context;
struct netvsc_device *netDevice;
u32 bytesRecvd;
u64 requestId;
unsigned char packet[netPacketSize];
unsigned char *packet;
struct vmpacket_descriptor *desc;
unsigned char *buffer = packet;
int bufferlen = netPacketSize;
unsigned char *buffer;
int bufferlen = NETVSC_PACKET_SIZE;


DPRINT_ENTER(NETVSC);

ASSERT(device);

packet = kzalloc(NETVSC_PACKET_SIZE * sizeof(unsigned char),
GFP_KERNEL);
if (!packet)
return;
buffer = packet;

netDevice = GetInboundNetDevice(device);
if (!netDevice) {
DPRINT_ERR(NETVSC, "net device (%p) shutting down..."
"ignoring inbound packets", netDevice);
DPRINT_EXIT(NETVSC);
return;
goto out;
}

do {
Expand Down Expand Up @@ -1341,17 +1346,17 @@ void NetVscOnChannelCallback(void *Context)
}

/* reset */
if (bufferlen > netPacketSize) {
if (bufferlen > NETVSC_PACKET_SIZE) {
kfree(buffer);
buffer = packet;
bufferlen = netPacketSize;
bufferlen = NETVSC_PACKET_SIZE;
}
} else {
/* reset */
if (bufferlen > netPacketSize) {
if (bufferlen > NETVSC_PACKET_SIZE) {
kfree(buffer);
buffer = packet;
bufferlen = netPacketSize;
bufferlen = NETVSC_PACKET_SIZE;
}

break;
Expand All @@ -1375,5 +1380,7 @@ void NetVscOnChannelCallback(void *Context)

PutNetDevice(device);
DPRINT_EXIT(NETVSC);
out:
kfree(buffer);
return;
}
1 change: 1 addition & 0 deletions trunk/drivers/staging/hv/NetVsc.h
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ struct nvsp_message {
/* Preallocated receive packets */
#define NETVSC_RECEIVE_PACKETLIST_COUNT 256

#define NETVSC_PACKET_SIZE 2048

/* Per netvsc channel-specific */
struct netvsc_device {
Expand Down

0 comments on commit 28afd75

Please sign in to comment.