search for: ixgbe_param

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

2009 Feb 10
1
[PATCH 1/2] Fix ixgbe RSS operation
...if (rx_ring->queue_index) { + if ((adapter->flags & IXGBE_FLAG_VMDQ_ENABLED) && + rx_ring->queue_index) { pci_unmap_page(pdev, rx_buffer_info->dma, PAGE_SIZE, PCI_DMA_FROMDEVICE); diff -r fcc044a90d40 drivers/net/ixgbe/ixgbe_param.c --- a/drivers/net/ixgbe/ixgbe_param.c Thu Jan 29 10:46:35 2009 +0000 +++ b/drivers/net/ixgbe/ixgbe_param.c Tue Feb 10 10:13:32 2009 -0800 @@ -724,8 +724,9 @@ } #endif #ifdef CONFIG_XEN_NETDEV2_BACKEND - if (adapter->flags & - (IXGBE_FLAG_RX_PS_CAPABLE | IXGBE_FLAG_VMDQ_ENABLED)) {...
2009 Feb 10
3
[PATCH 2/2] Use correct config option for ixgbe VMDq
..._XEN_NETDEV2_VMQ if (netdev->vmq) { free_vmq(netdev->vmq); netdev->vmq = 0; } #endif -#ifndef CONFIG_XEN_NETDEV2_BACKEND +#ifndef CONFIG_XEN_NETDEV2_VMQ if (adapter->flags & IXGBE_FLAG_VMDQ_ENABLED) ixgbe_sysfs_remove(adapter); #endif diff -urpN a/drivers/net/ixgbe/ixgbe_param.c b/drivers/net/ixgbe/ixgbe_param.c --- a/drivers/net/ixgbe/ixgbe_param.c 2009-02-10 14:15:35.000000000 -0800 +++ b/drivers/net/ixgbe/ixgbe_param.c 2009-02-10 14:32:40.000000000 -0800 @@ -723,7 +723,7 @@ void __devinit ixgbe_check_options(struc adapter->flags |= IXGBE_FLAG_RX_PS_CAPABLE;...
2009 Jan 27
5
[PATCH 2/2] Add VMDq support to ixgbe
...gt;vmq); + netdev->vmq = 0; + } +#endif + +#ifndef CONFIG_XEN_NETDEV2_BACKEND if (adapter->flags & IXGBE_FLAG_VMDQ_ENABLED) ixgbe_sysfs_remove(adapter); +#endif if (netdev->reg_state == NETREG_REGISTERED) unregister_netdev(netdev); diff -urpN -X dontdiff a/drivers/net/ixgbe/ixgbe_param.c b/drivers/net/ixgbe/ixgbe_param.c --- a/drivers/net/ixgbe/ixgbe_param.c 2009-01-23 11:27:18.000000000 -0800 +++ b/drivers/net/ixgbe/ixgbe_param.c 2009-01-23 11:27:40.000000000 -0800 @@ -723,6 +723,13 @@ void __devinit ixgbe_check_options(struc adapter->flags |= IXGBE_FLAG_RX_PS_CAPABLE;...