diff options
Diffstat (limited to 'drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c')
| -rw-r--r-- | drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c | 40 | 
1 files changed, 23 insertions, 17 deletions
diff --git a/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c b/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c index 4c8e19951d5..891162d1610 100644 --- a/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c +++ b/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c @@ -29,6 +29,9 @@  /******************************************************************************   Copyright (c)2006 - 2007 Myricom, Inc. for some LRO specific code  ******************************************************************************/ + +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt +  #include <linux/types.h>  #include <linux/bitops.h>  #include <linux/module.h> @@ -363,7 +366,7 @@ static void ixgbevf_alloc_rx_buffers(struct ixgbevf_adapter *adapter,  		if (!bi->page_dma &&  		    (adapter->flags & IXGBE_FLAG_RX_PS_ENABLED)) {  			if (!bi->page) { -				bi->page = netdev_alloc_page(adapter->netdev); +				bi->page = alloc_page(GFP_ATOMIC | __GFP_COLD);  				if (!bi->page) {  					adapter->alloc_rx_page_failed++;  					goto no_buffers; @@ -1400,7 +1403,7 @@ static void ixgbevf_configure_rx(struct ixgbevf_adapter *adapter)  	}  } -static void ixgbevf_vlan_rx_add_vid(struct net_device *netdev, u16 vid) +static int ixgbevf_vlan_rx_add_vid(struct net_device *netdev, u16 vid)  {  	struct ixgbevf_adapter *adapter = netdev_priv(netdev);  	struct ixgbe_hw *hw = &adapter->hw; @@ -1409,9 +1412,11 @@ static void ixgbevf_vlan_rx_add_vid(struct net_device *netdev, u16 vid)  	if (hw->mac.ops.set_vfta)  		hw->mac.ops.set_vfta(hw, vid, 0, true);  	set_bit(vid, adapter->active_vlans); + +	return 0;  } -static void ixgbevf_vlan_rx_kill_vid(struct net_device *netdev, u16 vid) +static int ixgbevf_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)  {  	struct ixgbevf_adapter *adapter = netdev_priv(netdev);  	struct ixgbe_hw *hw = &adapter->hw; @@ -1420,6 +1425,8 @@ static void ixgbevf_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)  	if (hw->mac.ops.set_vfta)  		hw->mac.ops.set_vfta(hw, vid, 0, false);  	clear_bit(vid, adapter->active_vlans); + +	return 0;  }  static void ixgbevf_restore_vlan(struct ixgbevf_adapter *adapter) @@ -1437,7 +1444,7 @@ static int ixgbevf_write_uc_addr_list(struct net_device *netdev)  	int count = 0;  	if ((netdev_uc_count(netdev)) > 10) { -		printk(KERN_ERR "Too many unicast filters - No Space\n"); +		pr_err("Too many unicast filters - No Space\n");  		return -ENOSPC;  	} @@ -2135,7 +2142,7 @@ static int ixgbevf_init_interrupt_scheme(struct ixgbevf_adapter *adapter)  	err = ixgbevf_alloc_queues(adapter);  	if (err) { -		printk(KERN_ERR "Unable to allocate memory for queues\n"); +		pr_err("Unable to allocate memory for queues\n");  		goto err_alloc_queues;  	} @@ -2189,7 +2196,7 @@ static int __devinit ixgbevf_sw_init(struct ixgbevf_adapter *adapter)  	} else {  		err = hw->mac.ops.init_hw(hw);  		if (err) { -			printk(KERN_ERR "init_shared_code failed: %d\n", err); +			pr_err("init_shared_code failed: %d\n", err);  			goto out;  		}  	} @@ -2630,8 +2637,8 @@ static int ixgbevf_open(struct net_device *netdev)  		 * the vf can't start. */  		if (hw->adapter_stopped) {  			err = IXGBE_ERR_MBX; -			printk(KERN_ERR "Unable to start - perhaps the PF" -			       " Driver isn't up yet\n"); +			pr_err("Unable to start - perhaps the PF Driver isn't " +			       "up yet\n");  			goto err_setup_reset;  		}  	} @@ -2842,10 +2849,8 @@ static bool ixgbevf_tx_csum(struct ixgbevf_adapter *adapter,  				break;  			default:  				if (unlikely(net_ratelimit())) { -					printk(KERN_WARNING -					       "partial checksum but " -					       "proto=%x!\n", -					       skb->protocol); +					pr_warn("partial checksum but " +						"proto=%x!\n", skb->protocol);  				}  				break;  			} @@ -3249,7 +3254,8 @@ static struct rtnl_link_stats64 *ixgbevf_get_stats(struct net_device *netdev,  	return stats;  } -static int ixgbevf_set_features(struct net_device *netdev, u32 features) +static int ixgbevf_set_features(struct net_device *netdev, +	netdev_features_t features)  {  	struct ixgbevf_adapter *adapter = netdev_priv(netdev); @@ -3414,7 +3420,7 @@ static int __devinit ixgbevf_probe(struct pci_dev *pdev,  	memcpy(netdev->perm_addr, adapter->hw.mac.addr, netdev->addr_len);  	if (!is_valid_ether_addr(netdev->dev_addr)) { -		printk(KERN_ERR "invalid MAC address\n"); +		pr_err("invalid MAC address\n");  		err = -EIO;  		goto err_sw_init;  	} @@ -3535,10 +3541,10 @@ static struct pci_driver ixgbevf_driver = {  static int __init ixgbevf_init_module(void)  {  	int ret; -	printk(KERN_INFO "ixgbevf: %s - version %s\n", ixgbevf_driver_string, -	       ixgbevf_driver_version); +	pr_info("%s - version %s\n", ixgbevf_driver_string, +		ixgbevf_driver_version); -	printk(KERN_INFO "%s\n", ixgbevf_copyright); +	pr_info("%s\n", ixgbevf_copyright);  	ret = pci_register_driver(&ixgbevf_driver);  	return ret;  |