diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2009-04-11 17:13:34 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2009-04-11 17:13:34 +0000 |
commit | 08fa0b17d91348290772c5b75bc60e38f8d42bad (patch) | |
tree | 360afea18afde97fe9e2a50a6fcee1db7d0581d7 /sys/arch/amd64/include | |
parent | eccb04705ac1a9a387c0e27658f1ddf8f9c131ea (diff) |
Create extents for resource accounting on the root PCI bus and populate them
based on the BIOS memory map.
Diffstat (limited to 'sys/arch/amd64/include')
-rw-r--r-- | sys/arch/amd64/include/pci_machdep.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/amd64/include/pci_machdep.h b/sys/arch/amd64/include/pci_machdep.h index de5e88d3146..f9e754a32df 100644 --- a/sys/arch/amd64/include/pci_machdep.h +++ b/sys/arch/amd64/include/pci_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_machdep.h,v 1.9 2009/04/04 16:03:17 kettenis Exp $ */ +/* $OpenBSD: pci_machdep.h,v 1.10 2009/04/11 17:13:33 kettenis Exp $ */ /* $NetBSD: pci_machdep.h,v 1.1 2003/02/26 21:26:11 fvdl Exp $ */ /* @@ -78,6 +78,10 @@ extern int pci_mode; int pci_mode_detect(void); struct pci_attach_args; +extern struct extent *pciio_ex; +extern struct extent *pcimem_ex; +void pci_init_extents(void); + /* * Functions provided to machine-independent PCI code. */ |