Searched defs:IntrAllocated (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Additions/solaris/Virtio/
H A DVirtioPci-solaris.c538 int IntrAllocated; local
539 rc = ddi_intr_alloc(pDip, g_pIntr, IntrType, 0, IntrCount, &IntrAllocated, DDI_INTR_ALLOC_NORMAL);
541 && IntrAllocated > 0)
543 g_cIntrAllocated = IntrAllocated;
552 for (int i = 0; i < IntrAllocated; i++)
560 /* Changing local IntrAllocated to hold so-far allocated handles for freeing. */
561 IntrAllocated = i;
572 LogRel((VIRTIOLOGNAME ":VirtioPciSetupIRQ failed to assign IRQs allocated=%d\n", IntrAllocated));
573 for (int x = 0; x < IntrAllocated; x++)
/vbox/src/VBox/Additions/common/VBoxGuest/
H A DVBoxGuest-solaris.c797 int IntrAllocated; local
798 rc = ddi_intr_alloc(pDip, g_pIntr, IntrType, 0, IntrCount, &IntrAllocated, DDI_INTR_ALLOC_NORMAL);
800 && IntrAllocated > 0)
802 g_cIntrAllocated = IntrAllocated;
811 for (int i = 0; i < IntrAllocated; i++)
819 /* Changing local IntrAllocated to hold so-far allocated handles for freeing. */
820 IntrAllocated = i;
828 LogRel((DEVICE_NAME ":failed to assign IRQs allocated=%d\n", IntrAllocated));
829 for (int x = 0; x < IntrAllocated; x++)

Completed in 34 milliseconds