diff options
| author | 2014-02-16 16:38:45 -0800 | |
|---|---|---|
| committer | 2014-02-17 16:32:32 -0500 | |
| commit | ee0c4c39c577d07c05749a5f5b960b4c0fdd8097 (patch) | |
| tree | 42a97ee254d656633279282567286397652bc935 /drivers/net/hyperv/hyperv_net.h | |
| parent | Drivers: net: hyperv: Cleanup the receive path (diff) | |
| download | wireguard-linux-ee0c4c39c577d07c05749a5f5b960b4c0fdd8097.tar.xz wireguard-linux-ee0c4c39c577d07c05749a5f5b960b4c0fdd8097.zip | |
Drivers: net: hyperv: Cleanup the netvsc receive callback functio
Get rid of the buffer allocation in the receive path for normal packets.
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/hyperv/hyperv_net.h')
| -rw-r--r-- | drivers/net/hyperv/hyperv_net.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/hyperv/hyperv_net.h b/drivers/net/hyperv/hyperv_net.h index 7645ba38bde8..01a16ea77a5a 100644 --- a/drivers/net/hyperv/hyperv_net.h +++ b/drivers/net/hyperv/hyperv_net.h @@ -506,6 +506,8 @@ struct netvsc_device { /* Holds rndis device info */ void *extension; + /* The recive buffer for this device */ + unsigned char cb_buffer[NETVSC_PACKET_SIZE]; }; /* NdisInitialize message */ |
