#ifndef __BUS_NUMA_H1#define __BUS_NUMA_H2/*3* sub bus (transparent) will use entres from 3 to store extra from4* root, so need to make sure we have enough slot there.5*/6#define RES_NUM 167struct pci_root_info {8char name[12];9unsigned int res_num;10struct resource res[RES_NUM];11int bus_min;12int bus_max;13int node;14int link;15};1617/* 4 at this time, it may become to 32 */18#define PCI_ROOT_NR 419extern int pci_root_num;20extern struct pci_root_info pci_root_info[PCI_ROOT_NR];2122extern void update_res(struct pci_root_info *info, resource_size_t start,23resource_size_t end, unsigned long flags, int merge);24#endif252627