diff options
author | Haiyang Zhang <haiyangz@microsoft.com> | 2012-10-02 07:30:22 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-10-02 20:39:30 +0200 |
commit | 6562640bd3b368a7ffb1caa61c82abe6e9d54b3b (patch) | |
tree | 3add1f3f656ec7505abd84aaea3355c4c22b60bd /drivers/net/hyperv/netvsc.c | |
parent | hyperv: Fix page buffer handling in rndis_filter_send_request() (diff) | |
download | linux-6562640bd3b368a7ffb1caa61c82abe6e9d54b3b.tar.xz linux-6562640bd3b368a7ffb1caa61c82abe6e9d54b3b.zip |
hyperv: Remove extra allocated space for recv_pkt_list elements
The receive code path doesn't use the page buffer, so remove the
extra allocated space here.
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Reviewed-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r-- | drivers/net/hyperv/netvsc.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/net/hyperv/netvsc.c b/drivers/net/hyperv/netvsc.c index 4a1a5f58fa73..d9c4c0399c88 100644 --- a/drivers/net/hyperv/netvsc.c +++ b/drivers/net/hyperv/netvsc.c @@ -904,9 +904,7 @@ int netvsc_device_add(struct hv_device *device, void *additional_info) INIT_LIST_HEAD(&net_device->recv_pkt_list); for (i = 0; i < NETVSC_RECEIVE_PACKETLIST_COUNT; i++) { - packet = kzalloc(sizeof(struct hv_netvsc_packet) + - (NETVSC_RECEIVE_SG_COUNT * - sizeof(struct hv_page_buffer)), GFP_KERNEL); + packet = kzalloc(sizeof(struct hv_netvsc_packet), GFP_KERNEL); if (!packet) break; |