diff options
| author | Greg Kroah-Hartman <[email protected]> | 2017-03-23 22:05:10 +0100 | 
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2017-03-23 22:05:10 +0100 | 
| commit | 5617c05d44ebd7b75973b5b31a9f2e55e5882d3f (patch) | |
| tree | 7250f4b5690c141115a13afdb21c12cc720ae79c /drivers/net/hyperv/hyperv_net.h | |
| parent | 22db87ba6bbefcb12493ae9c7be2037f5f12639d (diff) | |
| parent | 25cd9721c2b16ee0d775e36ec3af31f392003f80 (diff) | |
Merge tag 'fixes-for-v4.11-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb into usb-linus
Felipe writes:
usb: fixes for v4.11-rc4
f_acm got an endianness fix by Oliver Neukum. This has been around for a
long time but it's finally fixed.
f_hid learned that it should never access hidg->req without first
grabbing the spinlock.
Roger Quadros fixed two bugs in the f_uvc function driver.
Janusz Dziedzic fixed a very peculiar bug with EP0, one that's rather
difficult to trigger. When we're dealing with bounced EP0 requests, we
should delay unmap until after ->complete() is called.
UDC class got a use-after-free fix.
Diffstat (limited to 'drivers/net/hyperv/hyperv_net.h')
| -rw-r--r-- | drivers/net/hyperv/hyperv_net.h | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/drivers/net/hyperv/hyperv_net.h b/drivers/net/hyperv/hyperv_net.h index d3e73ac158ae..f9f3dba7a588 100644 --- a/drivers/net/hyperv/hyperv_net.h +++ b/drivers/net/hyperv/hyperv_net.h @@ -700,6 +700,8 @@ struct net_device_context {  	u32 tx_checksum_mask; +	u32 tx_send_table[VRSS_SEND_TAB_SIZE]; +  	/* Ethtool settings */  	u8 duplex;  	u32 speed; @@ -757,7 +759,6 @@ struct netvsc_device {  	struct nvsp_message revoke_packet; -	u32 send_table[VRSS_SEND_TAB_SIZE];  	u32 max_chn;  	u32 num_chn;  	spinlock_t sc_lock; /* Protects num_sc_offered variable */ |