Searched refs:msix_count (Results 1 - 10 of 10) sorted by relevance

/freebsd-10.2-release/sys/dev/qlxgb/
H A Dqla_os.c280 ha->msix_count = pci_msix_count(dev);
282 if (ha->msix_count < qla_get_msix_count(ha)) {
283 device_printf(dev, "%s: msix_count[%d] not enough\n", __func__,
284 ha->msix_count);
289 " msix_count 0x%x pci_reg %p\n", __func__, ha,
290 ha->irq, ha->pci_func, rsrc_len, ha->msix_count, ha->pci_reg));
292 ha->msix_count = qla_get_msix_count(ha);
294 if (pci_alloc_msix(dev, &ha->msix_count)) {
296 ha->msix_count);
297 ha->msix_count
[all...]
H A Dqla_def.h139 int msix_count; member in struct:qla_host
/freebsd-10.2-release/sys/dev/qlxge/
H A Dqls_os.c385 ha->msix_count = pci_msix_count(dev);
387 if (ha->msix_count < qls_get_msix_count(ha)) {
388 device_printf(dev, "%s: msix_count[%d] not enough\n", __func__,
389 ha->msix_count);
393 ha->msix_count = qls_get_msix_count(ha);
395 device_printf(dev, "\n%s: ha %p pci_func 0x%x msix_count 0x%x"
397 ha->pci_func, ha->msix_count, ha->pci_reg, ha->pci_reg1);
399 if (pci_alloc_msix(dev, &ha->msix_count)) {
401 ha->msix_count);
402 ha->msix_count
[all...]
H A Dqls_def.h280 int msix_count; member in struct:qla_host
/freebsd-10.2-release/sys/dev/qlxgbe/
H A Dql_os.c337 ha->msix_count = pci_msix_count(dev);
339 if (ha->msix_count < (ha->hw.num_sds_rings + 1)) {
340 device_printf(dev, "%s: msix_count[%d] not enough\n", __func__,
341 ha->msix_count);
346 " msix_count 0x%x pci_reg %p\n", __func__, ha,
347 ha->pci_func, rsrc_len, ha->msix_count, ha->pci_reg));
368 " msix_count 0x%x pci_reg %p num_rcvq = %d\n", __func__, ha,
369 ha->pci_func, rsrc_len, ha->msix_count, ha->pci_reg, num_rcvq);
373 if ((ha->msix_count < 64) || (num_rcvq != 32)) {
380 ha->msix_count
[all...]
H A Dql_def.h156 int msix_count; member in struct:qla_host
H A Dql_hw.c2384 if (ha->msix_count == 2) {
2504 if (ha->msix_count == 2) {
/freebsd-10.2-release/sys/dev/vxge/
H A Dvxge.c1789 int msix_vec_reqd, intr_count, msix_count; local
1836 msix_count = 0;
1840 vdev->config.isr_info[msix_count].irq_rid = irq_rid + 2;
1841 vdev->config.isr_info[msix_count].irq_res =
1843 &vdev->config.isr_info[msix_count].irq_rid,
1846 if (vdev->config.isr_info[msix_count].irq_res == NULL) {
1849 vdev->config.isr_info[msix_count].irq_rid);
1856 vdev->config.isr_info[msix_count].irq_res,
1861 msix_count++;
1864 vdev->config.isr_info[msix_count]
[all...]
/freebsd-10.2-release/sys/dev/ixgbe/
H A Dixgbe_common.c3564 u16 msix_count = 1; local
3581 return msix_count;
3585 msix_count = IXGBE_READ_PCIE_WORD(hw, pcie_offset);
3587 msix_count = 0;
3588 msix_count &= IXGBE_PCIE_MSIX_TBL_SZ_MASK;
3591 msix_count++;
3593 if (msix_count > max_msix_count)
3594 msix_count = max_msix_count;
3596 return msix_count;
/freebsd-10.2-release/sys/dev/bxe/
H A Dbxe.c9356 int msix_count = 0; local
9366 msix_count = pci_msix_count(sc->dev);
9374 msi_count, msix_count);
9383 (msix_count < 2)) {
9389 num_requested = min((sc->num_queues + 1), msix_count);

Completed in 219 milliseconds