Skip to content

Commit

Permalink
Drivers: net: hyperv: Cleanup the receive path
Browse files Browse the repository at this point in the history
Make the receive path a little more efficient by parameterizing the
required state rather than re-establishing that state.

Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Reviewed-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
KY Srinivasan authored and David S. Miller committed Feb 17, 2014
1 parent 86eedac commit 97c1723
Showing 1 changed file with 13 additions and 16 deletions.
29 changes: 13 additions & 16 deletions drivers/net/hyperv/netvsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -432,17 +432,14 @@ static inline u32 hv_ringbuf_avail_percent(
return avail_write * 100 / ring_info->ring_datasize;
}

static void netvsc_send_completion(struct hv_device *device,
static void netvsc_send_completion(struct netvsc_device *net_device,
struct hv_device *device,
struct vmpacket_descriptor *packet)
{
struct netvsc_device *net_device;
struct nvsp_message *nvsp_packet;
struct hv_netvsc_packet *nvsc_packet;
struct net_device *ndev;

net_device = get_inbound_net_device(device);
if (!net_device)
return;
ndev = net_device->ndev;

nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
Expand Down Expand Up @@ -561,13 +558,13 @@ int netvsc_send(struct hv_device *device,
}

static void netvsc_send_recv_completion(struct hv_device *device,
struct netvsc_device *net_device,
u64 transaction_id, u32 status)
{
struct nvsp_message recvcompMessage;
int retries = 0;
int ret;
struct net_device *ndev;
struct netvsc_device *net_device = hv_get_drvdata(device);

ndev = net_device->ndev;

Expand Down Expand Up @@ -653,14 +650,15 @@ static void netvsc_receive_completion(void *context)

/* Send a receive completion for the xfer page packet */
if (fsend_receive_comp)
netvsc_send_recv_completion(device, transaction_id, status);
netvsc_send_recv_completion(device, net_device, transaction_id,
status);

}

static void netvsc_receive(struct hv_device *device,
struct vmpacket_descriptor *packet)
static void netvsc_receive(struct netvsc_device *net_device,
struct hv_device *device,
struct vmpacket_descriptor *packet)
{
struct netvsc_device *net_device;
struct vmtransfer_page_packet_header *vmxferpage_packet;
struct nvsp_message *nvsp_packet;
struct hv_netvsc_packet *netvsc_packet = NULL;
Expand All @@ -673,9 +671,6 @@ static void netvsc_receive(struct hv_device *device,

LIST_HEAD(listHead);

net_device = get_inbound_net_device(device);
if (!net_device)
return;
ndev = net_device->ndev;

/*
Expand Down Expand Up @@ -741,7 +736,7 @@ static void netvsc_receive(struct hv_device *device,
spin_unlock_irqrestore(&net_device->recv_pkt_list_lock,
flags);

netvsc_send_recv_completion(device,
netvsc_send_recv_completion(device, net_device,
vmxferpage_packet->d.trans_id,
NVSP_STAT_FAIL);

Expand Down Expand Up @@ -825,11 +820,13 @@ static void netvsc_channel_cb(void *context)
desc = (struct vmpacket_descriptor *)buffer;
switch (desc->type) {
case VM_PKT_COMP:
netvsc_send_completion(device, desc);
netvsc_send_completion(net_device,
device, desc);
break;

case VM_PKT_DATA_USING_XFER_PAGES:
netvsc_receive(device, desc);
netvsc_receive(net_device,
device, desc);
break;

default:
Expand Down

0 comments on commit 97c1723

Please sign in to comment.