diff options
Diffstat (limited to 'drivers/net/ixgb/ixgb_main.c')
| -rw-r--r-- | drivers/net/ixgb/ixgb_main.c | 12 | 
1 files changed, 7 insertions, 5 deletions
diff --git a/drivers/net/ixgb/ixgb_main.c b/drivers/net/ixgb/ixgb_main.c index 45fc89b9ba6..666207a9c03 100644 --- a/drivers/net/ixgb/ixgb_main.c +++ b/drivers/net/ixgb/ixgb_main.c @@ -446,8 +446,10 @@ ixgb_probe(struct pci_dev *pdev, const struct pci_device_id *ent)  			   NETIF_F_HW_VLAN_FILTER;  	netdev->features |= NETIF_F_TSO; -	if (pci_using_dac) +	if (pci_using_dac) {  		netdev->features |= NETIF_F_HIGHDMA; +		netdev->vlan_features |= NETIF_F_HIGHDMA; +	}  	/* make sure the EEPROM is good */ @@ -470,7 +472,7 @@ ixgb_probe(struct pci_dev *pdev, const struct pci_device_id *ent)  	adapter->part_num = ixgb_get_ee_pba_number(&adapter->hw);  	init_timer(&adapter->watchdog_timer); -	adapter->watchdog_timer.function = &ixgb_watchdog; +	adapter->watchdog_timer.function = ixgb_watchdog;  	adapter->watchdog_timer.data = (unsigned long)adapter;  	INIT_WORK(&adapter->tx_timeout_task, ixgb_tx_timeout_task); @@ -1905,7 +1907,7 @@ ixgb_rx_checksum(struct ixgb_adapter *adapter,  	 */  	if ((rx_desc->status & IXGB_RX_DESC_STATUS_IXSM) ||  	   (!(rx_desc->status & IXGB_RX_DESC_STATUS_TCPCS))) { -		skb->ip_summed = CHECKSUM_NONE; +		skb_checksum_none_assert(skb);  		return;  	} @@ -1913,7 +1915,7 @@ ixgb_rx_checksum(struct ixgb_adapter *adapter,  	/* now look at the TCP checksum error bit */  	if (rx_desc->errors & IXGB_RX_DESC_ERRORS_TCPE) {  		/* let the stack verify checksum errors */ -		skb->ip_summed = CHECKSUM_NONE; +		skb_checksum_none_assert(skb);  		adapter->hw_csum_rx_error++;  	} else {  		/* TCP checksum is good */ @@ -2221,7 +2223,7 @@ ixgb_restore_vlan(struct ixgb_adapter *adapter)  	if (adapter->vlgrp) {  		u16 vid; -		for (vid = 0; vid < VLAN_GROUP_ARRAY_LEN; vid++) { +		for (vid = 0; vid < VLAN_N_VID; vid++) {  			if (!vlan_group_get_device(adapter->vlgrp, vid))  				continue;  			ixgb_vlan_rx_add_vid(adapter->netdev, vid);  |