diff options
author | David Woodhouse <dwmw2@shinybook.infradead.org> | 2005-08-09 11:51:35 -0400 |
---|---|---|
committer | David Woodhouse <dwmw2@shinybook.infradead.org> | 2005-08-09 11:51:35 -0400 |
commit | c973b112c76c9d8fd042991128f218a738cc8d0a (patch) | |
tree | e813b0da5d0a0e19e06de6462d145a29ad683026 /arch/parisc | |
parent | c5fbc3966f48279dbebfde10248c977014aa9988 (diff) | |
parent | 00dd1e433967872f3997a45d5adf35056fdf2f56 (diff) |
Merge with /shiny/git/linux-2.6/.git
Diffstat (limited to 'arch/parisc')
-rw-r--r-- | arch/parisc/kernel/pci.c | 18 | ||||
-rw-r--r-- | arch/parisc/mm/fault.c | 12 |
2 files changed, 24 insertions, 6 deletions
diff --git a/arch/parisc/kernel/pci.c b/arch/parisc/kernel/pci.c index 3cb08a4a513a..e6a891a0cad0 100644 --- a/arch/parisc/kernel/pci.c +++ b/arch/parisc/kernel/pci.c | |||
@@ -255,8 +255,26 @@ void __devinit pcibios_resource_to_bus(struct pci_dev *dev, | |||
255 | pcibios_link_hba_resources(&hba->lmmio_space, bus->resource[1]); | 255 | pcibios_link_hba_resources(&hba->lmmio_space, bus->resource[1]); |
256 | } | 256 | } |
257 | 257 | ||
258 | void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res, | ||
259 | struct pci_bus_region *region) | ||
260 | { | ||
261 | struct pci_bus *bus = dev->bus; | ||
262 | struct pci_hba_data *hba = HBA_DATA(bus->bridge->platform_data); | ||
263 | |||
264 | if (res->flags & IORESOURCE_MEM) { | ||
265 | res->start = PCI_HOST_ADDR(hba, region->start); | ||
266 | res->end = PCI_HOST_ADDR(hba, region->end); | ||
267 | } | ||
268 | |||
269 | if (res->flags & IORESOURCE_IO) { | ||
270 | res->start = region->start; | ||
271 | res->end = region->end; | ||
272 | } | ||
273 | } | ||
274 | |||
258 | #ifdef CONFIG_HOTPLUG | 275 | #ifdef CONFIG_HOTPLUG |
259 | EXPORT_SYMBOL(pcibios_resource_to_bus); | 276 | EXPORT_SYMBOL(pcibios_resource_to_bus); |
277 | EXPORT_SYMBOL(pcibios_bus_to_resource); | ||
260 | #endif | 278 | #endif |
261 | 279 | ||
262 | /* | 280 | /* |
diff --git a/arch/parisc/mm/fault.c b/arch/parisc/mm/fault.c index eaa701479f5f..0ad945d4c0a4 100644 --- a/arch/parisc/mm/fault.c +++ b/arch/parisc/mm/fault.c | |||
@@ -178,17 +178,17 @@ good_area: | |||
178 | */ | 178 | */ |
179 | 179 | ||
180 | switch (handle_mm_fault(mm, vma, address, (acc_type & VM_WRITE) != 0)) { | 180 | switch (handle_mm_fault(mm, vma, address, (acc_type & VM_WRITE) != 0)) { |
181 | case 1: | 181 | case VM_FAULT_MINOR: |
182 | ++current->min_flt; | 182 | ++current->min_flt; |
183 | break; | 183 | break; |
184 | case 2: | 184 | case VM_FAULT_MAJOR: |
185 | ++current->maj_flt; | 185 | ++current->maj_flt; |
186 | break; | 186 | break; |
187 | case 0: | 187 | case VM_FAULT_SIGBUS: |
188 | /* | 188 | /* |
189 | * We ran out of memory, or some other thing happened | 189 | * We hit a hared mapping outside of the file, or some |
190 | * to us that made us unable to handle the page fault | 190 | * other thing happened to us that made us unable to |
191 | * gracefully. | 191 | * handle the page fault gracefully. |
192 | */ | 192 | */ |
193 | goto bad_area; | 193 | goto bad_area; |
194 | default: | 194 | default: |