Home
last modified time | relevance | path

Searched refs:intrType (Results 1 – 8 of 8) sorted by relevance

/illumos-gate/usr/src/uts/common/io/bnxe/
H A Dbnxe_intr.c67 static inline char * BnxeIntrTypeName(int intrType) in BnxeIntrTypeName() argument
69 return (intrType == DDI_INTR_TYPE_MSIX) ? "MSIX" : in BnxeIntrTypeName()
70 (intrType == DDI_INTR_TYPE_MSI) ? "MSI" : in BnxeIntrTypeName()
71 (intrType == DDI_INTR_TYPE_FIXED) ? "FIXED" : in BnxeIntrTypeName()
841 pUM->intrType, in BnxeIntrBlockAlloc()
974 switch (pUM->intrType) in BnxeIntrAddHandlers()
1059 pUM->intrType); in BnxeIntrAddHandlers()
1312 BnxeIntrTypeName(pUM->intrType)); in BnxeIntrInit()
1318 if (pUM->intrType == DDI_INTR_TYPE_FIXED) in BnxeIntrInit()
1397 if (pUM->intrType == DDI_INTR_TYPE_FIXED) in BnxeIntrInit()
[all …]
H A Dbnxe_main.c727 (pUM->intrType == DDI_INTR_TYPE_FIXED) ? 1 : (pUM->defIntr.intrCount + in BnxeAttachDevice()
730 (pUM->intrType == DDI_INTR_TYPE_MSIX) ? "MSIX" : in BnxeAttachDevice()
731 (pUM->intrType == DDI_INTR_TYPE_MSI) ? "MSI" : in BnxeAttachDevice()
H A Dbnxe.h641 int intrType; member
/illumos-gate/usr/src/uts/common/io/bnx/
H A Dbnxint.c362 umdevice->intrType = (umdevice->dev_var.disableMsix) ? in bnxIntrInit()
367 umdevice->intrType, 0, 1, &intrActual, in bnxIntrInit()
371 (umdevice->intrType == DDI_INTR_TYPE_MSIX) ? in bnxIntrInit()
374 if (umdevice->intrType == DDI_INTR_TYPE_MSIX) { in bnxIntrInit()
378 umdevice->intrType = DDI_INTR_TYPE_FIXED; in bnxIntrInit()
428 (umdevice->intrType == DDI_INTR_TYPE_FIXED) ? in bnxIntrInit()
H A Dbnxmod.c293 "1 %s", (umdevice->intrType == DDI_INTR_TYPE_MSIX) ? "MSIX" : in bnx_attach_attach()
294 (umdevice->intrType == DDI_INTR_TYPE_MSI) ? "MSI" : in bnx_attach_attach()
H A Dbnx.h270 int intrType; member
/illumos-gate/usr/src/uts/intel/io/vmxnet3s/
H A Dvmxnet3_main.c1146 if (dp->intrType == DDI_INTR_TYPE_FIXED && in vmxnet3_intr()
1377 dp->intrType = DDI_INTR_TYPE_MSIX; in vmxnet3_attach()
1378 err = ddi_intr_alloc(dip, &dp->intrHandle, dp->intrType, 0, 1, in vmxnet3_attach()
1386 dp->intrType = DDI_INTR_TYPE_MSI; in vmxnet3_attach()
1387 if (ddi_intr_alloc(dip, &dp->intrHandle, dp->intrType, 0, 1, in vmxnet3_attach()
1393 dp->intrType = DDI_INTR_TYPE_FIXED; in vmxnet3_attach()
1394 if (ddi_intr_alloc(dip, &dp->intrHandle, dp->intrType, 0, 1, in vmxnet3_attach()
1416 dp->intrType, dp->intrMaskMode, uret); in vmxnet3_attach()
H A Dvmxnet3.h137 int intrType; member