1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-20 11:11:24 +00:00

MFi386 r1.94: If XEN, make pmap_kextract = pmap_kextract_ma. This is a

no-op currently, since FreeBSD/amd64 doesn't have (paravirtualized) Xen
support, but if/when that support is ever added we'll want this, and
until then it's harmless.
This commit is contained in:
Colin Percival 2010-12-08 19:52:04 +00:00
parent 81261a5a6d
commit ec195da48a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=216306

View File

@ -141,6 +141,11 @@ int run_filter(bus_dma_tag_t dmat, bus_addr_t paddr);
int _bus_dmamap_count_pages(bus_dma_tag_t dmat, bus_dmamap_t map, pmap_t pmap,
void *buf, bus_size_t buflen, int flags);
#ifdef XEN
#undef pmap_kextract
#define pmap_kextract pmap_kextract_ma
#endif
/*
* Return true if a match is made.
*