Searched refs:IntrCount (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Additions/solaris/Virtio/
H A DVirtioPci-solaris.c524 int IntrCount = 0; local
525 rc = ddi_intr_get_nintrs(pDip, IntrType, &IntrCount);
527 && IntrCount > 0)
535 g_pIntr = RTMemAllocZ(IntrCount * sizeof(ddi_intr_handle_t));
539 rc = ddi_intr_alloc(pDip, g_pIntr, IntrType, 0, IntrCount, &IntrAllocated, DDI_INTR_ALLOC_NORMAL);
584 LogRel((VIRTIOLOGNAME ":VirtioPciSetupIRQ: failed to allocated IRQs. count=%d\n", IntrCount));
588 LogRel((VIRTIOLOGNAME ":VirtioPciSetupIRQ: failed to allocated IRQs. count=%d\n", IntrCount));
598 LogRel((VIRTIOLOGNAME ":VirtioPciSetupIRQ: failed to get or insufficient number of IRQs. rc=%d IntrCount=%d\n", rc,
599 IntrCount));
/vbox/src/VBox/Additions/common/VBoxGuest/
H A DVBoxGuest-solaris.c783 int IntrCount = 0; local
784 rc = ddi_intr_get_nintrs(pDip, IntrType, &IntrCount);
786 && IntrCount > 0)
794 g_pIntr = RTMemAlloc(IntrCount * sizeof(ddi_intr_handle_t));
798 rc = ddi_intr_alloc(pDip, g_pIntr, IntrType, 0, IntrCount, &IntrAllocated, DDI_INTR_ALLOC_NORMAL);
840 LogRel((DEVICE_NAME "::AddIRQ: failed to allocated IRQs. count=%d\n", IntrCount));
844 LogRel((DEVICE_NAME "::AddIRQ: failed to allocated IRQs. count=%d\n", IntrCount));
850 LogRel((DEVICE_NAME "::AddIRQ: failed to get or insufficient number of IRQs. rc=%d IntrCount=%d\n", rc, IntrCount));

Completed in 307 milliseconds