Lines Matching refs:queues

664 	struct ix_queue *que = adapter->queues;  in ixgbe_detach()
2107 struct ix_queue *que = adapter->queues; in ixgbe_local_timer()
2108 u64 queues = 0; in ixgbe_local_timer() local
2129 queues |= ((u64)1 << que->me); in ixgbe_local_timer()
2157 else if (queues != 0) { /* Force an IRQ on queues with work */ in ixgbe_local_timer()
2158 ixgbe_rearm_queues(adapter, queues); in ixgbe_local_timer()
2361 struct ix_queue *que = adapter->queues; in ixgbe_allocate_legacy()
2433 struct ix_queue *que = adapter->queues; in ixgbe_allocate_msix()
2586 int rid, want, queues, msgs; in ixgbe_setup_msix() local
2612 queues = (mp_ncpus > (msgs - 1)) ? (msgs - 1) : mp_ncpus; in ixgbe_setup_msix()
2616 if (queues > rss_getnumbuckets()) in ixgbe_setup_msix()
2617 queues = rss_getnumbuckets(); in ixgbe_setup_msix()
2621 queues = ixgbe_num_queues; in ixgbe_setup_msix()
2623 else if ((ixgbe_num_queues == 0) && (queues > 8)) in ixgbe_setup_msix()
2624 queues = 8; in ixgbe_setup_msix()
2627 ixgbe_num_queues = queues; in ixgbe_setup_msix()
2633 want = queues + 1; in ixgbe_setup_msix()
2646 adapter->num_queues = queues; in ixgbe_setup_msix()
2710 struct ix_queue *que = adapter->queues; in ixgbe_free_pci_resources()
3403 struct ix_queue *que = adapter->queues; in ixgbe_enable_intr()
3666 struct ix_queue *que = adapter->queues; in ixgbe_configure_ivars()
4417 CTLTYPE_UINT | CTLFLAG_RW, &adapter->queues[i], in ixgbe_add_hw_stats()
4418 sizeof(&adapter->queues[i]), in ixgbe_add_hw_stats()
4422 CTLFLAG_RD, &(adapter->queues[i].irqs), in ixgbe_add_hw_stats()
5201 ixgbe_rearm_queues(struct adapter *adapter, u64 queues) in ixgbe_rearm_queues() argument
5207 mask = (IXGBE_EIMS_RTX_QUEUE & queues); in ixgbe_rearm_queues()
5214 mask = (queues & 0xFFFFFFFF); in ixgbe_rearm_queues()
5216 mask = (queues >> 32); in ixgbe_rearm_queues()