summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorRam Pai <linuxram@us.ibm.com>2011-07-25 13:08:39 -0700
committerJesse Barnes <jbarnes@virtuousgeek.org>2011-08-01 11:50:15 -0700
commit2bbc6942273b5b3097bd265d82227bdd84b351b2 (patch)
tree34d846f34a94dbe7b0c4800cb8efc3cf2e07ad74 /include
parentbe768912a49b10b68e96fbd8fa3cab0adfbd3091 (diff)
downloadlinux-0-day-2bbc6942273b5b3097bd265d82227bdd84b351b2.tar.gz
linux-0-day-2bbc6942273b5b3097bd265d82227bdd84b351b2.tar.xz
PCI : ability to relocate assigned pci-resources
Currently pci-bridges are allocated enough resources to satisfy their immediate requirements. Any additional resource-requests fail if additional free space, contiguous to the one already allocated, is not available. This behavior is not reasonable since sufficient contiguous resources, that can satisfy the request, are available at a different location. This patch provides the ability to expand and relocate a allocated resource. v2: Changelog: Fixed size calculation in pci_reassign_resource() v3: Changelog : Split this patch. The resource.c changes are already upstream. All the pci driver changes are in here. Signed-off-by: Ram Pai <linuxram@us.ibm.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/pci.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h
index 1ff9bbafd9326..8c230cbcbb486 100644
--- a/include/linux/pci.h
+++ b/include/linux/pci.h
@@ -813,6 +813,7 @@ int __pci_reset_function(struct pci_dev *dev);
int pci_reset_function(struct pci_dev *dev);
void pci_update_resource(struct pci_dev *dev, int resno);
int __must_check pci_assign_resource(struct pci_dev *dev, int i);
+int __must_check pci_reassign_resource(struct pci_dev *dev, int i, resource_size_t add_size, resource_size_t align);
int pci_select_bars(struct pci_dev *dev, unsigned long flags);
/* ROM control related routines */