Searched refs:msicap (Results 1 - 3 of 3) sorted by relevance

/freebsd-11.0-release/usr.sbin/bhyve/
H A Dpci_emul.h155 struct msicap { struct
163 static_assert(sizeof(struct msicap) == 14, "compile-time assertion failed");
235 void pci_populate_msicap(struct msicap *cap, int msgs, int nextptr);
H A Dpci_emul.c759 pci_populate_msicap(struct msicap *msicap, int msgnum, int nextptr) argument
767 bzero(msicap, sizeof(struct msicap));
768 msicap->capid = PCIY_MSI;
769 msicap->nextptr = nextptr;
770 msicap->msgctrl = PCIM_MSICTRL_64BIT | (mmc << 1);
776 struct msicap msicap; local
778 pci_populate_msicap(&msicap, msgnu
[all...]
H A Dpci_passthru.c147 struct msicap msicap; local
150 pci_populate_msicap(&msicap, msgnum, nextptr);
158 capoff = 256 - roundup(sizeof(msicap), 4);
159 capdata = (u_char *)&msicap;
160 for (i = 0; i < sizeof(msicap); i++)

Completed in 95 milliseconds