search for: ixgbe_prob

Displaying 3 results from an estimated 3 matches for "ixgbe_prob".

Did you mean: ixgbe_probe
2011 Apr 06
5
Intel 82599 driver?
Which version of the ixgbe driver is included in 5.6? I went through all the RHEL5 release notes, but they only ever state that the driver was updated, not which devices was added. This device is not supported up to CentOS 5.5 (2.0.44-k2), but the latest driver from the Intel web site works fine (3.2.10). 05:00.0 Ethernet controller: Intel Corporation Unknown device 151c (rev 01) 05:00.0
2009 Jan 27
5
[PATCH 2/2] Add VMDq support to ixgbe
...mq->nvmq = adapter->num_rx_queues; + adapter->netdev->vmq = vmq; + } +} +#endif /* CONFIG_XEN_NETDEV2_BACKEND */ + #ifdef CONFIG_NET_POLL_CONTROLLER /* * Polling ''interrupt'' - used by things like netconsole to send skbs @@ -5152,12 +5443,18 @@ static int __devinit ixgbe_probe(struct #endif strcpy(netdev->name, "eth%d"); +#ifdef CONFIG_XEN_NETDEV2_BACKEND + if (adapter->flags & IXGBE_FLAG_VMDQ_ENABLED) + ixgbe_setup_vmq(adapter); +#endif err = register_netdev(netdev); if (err) goto err_register; +#ifndef CONFIG_XEN_NETDEV2_BACKEND if (...
2009 Feb 10
3
[PATCH 2/2] Use correct config option for ixgbe VMDq
...*adapter = netdev_priv(netdev); @@ -5142,7 +5142,7 @@ static void ixgbe_setup_vmq(struct ixgbe adapter->netdev->vmq = vmq; } } -#endif /* CONFIG_XEN_NETDEV2_BACKEND */ +#endif /* CONFIG_XEN_NETDEV2_VMQ */ #ifdef CONFIG_NET_POLL_CONTROLLER /* @@ -5442,7 +5442,7 @@ static int __devinit ixgbe_probe(struct #endif strcpy(netdev->name, "eth%d"); -#ifdef CONFIG_XEN_NETDEV2_BACKEND +#ifdef CONFIG_XEN_NETDEV2_VMQ if (adapter->flags & IXGBE_FLAG_VMDQ_ENABLED) ixgbe_setup_vmq(adapter); #endif @@ -5450,7 +5450,7 @@ static int __devinit ixgbe_probe(struct if (err) go...