MCPcopy Create free account
hub / github.com/F-Stack/f-stack / dmar_dev_parse_rmrr

Function dmar_dev_parse_rmrr

freebsd/x86/iommu/intel_drv.c:935–949  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

933}
934
935void
936dmar_dev_parse_rmrr(struct dmar_domain *domain, int dev_domain, int dev_busno,
937 const void *dev_path, int dev_path_len,
938 struct iommu_map_entries_tailq *rmrr_entries)
939{
940 struct rmrr_iter_args ria;
941
942 ria.domain = domain;
943 ria.dev_domain = dev_domain;
944 ria.dev_busno = dev_busno;
945 ria.dev_path = (const ACPI_DMAR_PCI_PATH *)dev_path;
946 ria.dev_path_len = dev_path_len;
947 ria.rmrr_entries = rmrr_entries;
948 dmar_iterate_tbl(dmar_rmrr_iter, &ria);
949}
950
951struct inst_rmrr_iter_args {
952 struct dmar_unit *dmar;

Callers 1

domain_init_rmrrFunction · 0.85

Calls 1

dmar_iterate_tblFunction · 0.85

Tested by

no test coverage detected