Lines Matching refs:sentry
614 struct mtrr_sentry sentry = {
649 sentry.type = MTRR_TYPE_WRBACK;
651 sentry.type = MTRR_TYPE_WRCOMB;
654 if (pci_sys->mtrr_fd != -1 && sentry.type != MTRR_TYPE_UNCACHABLE) {
655 if (ioctl(pci_sys->mtrr_fd, MTRRIOC_ADD_ENTRY, &sentry) < 0) {
660 (pciaddr_t)sentry.base, sentry.size, sentry.type,
711 struct mtrr_sentry sentry = {
724 sentry.type = MTRR_TYPE_WRBACK;
726 sentry.type = MTRR_TYPE_WRCOMB;
729 if (pci_sys->mtrr_fd != -1 && sentry.type != MTRR_TYPE_UNCACHABLE) {
730 if (ioctl(pci_sys->mtrr_fd, MTRRIOC_DEL_ENTRY, &sentry) < 0) {
735 (pciaddr_t)sentry.base, sentry.size, sentry.type,