Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 114570
b: refs/heads/master
c: 8fae035
h: refs/heads/master
v: v3
  • Loading branch information
Becky Bruce authored and Kumar Gala committed Sep 24, 2008
1 parent 022f42d commit d23cd77
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 17 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8dd0e95206f7c33bed2aed33ac668335174684e8
refs/heads/master: 8fae0353247530d2124b2419052fa6120462fa99
3 changes: 0 additions & 3 deletions trunk/arch/powerpc/include/asm/device.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ struct dev_archdata {
/* DMA operations on that device */
struct dma_mapping_ops *dma_ops;
void *dma_data;

/* NUMA node if applicable */
int numa_node;
};

#endif /* _ASM_POWERPC_DEVICE_H */
2 changes: 1 addition & 1 deletion trunk/arch/powerpc/kernel/dma-iommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ static void *dma_iommu_alloc_coherent(struct device *dev, size_t size,
{
return iommu_alloc_coherent(dev, dev->archdata.dma_data, size,
dma_handle, device_to_mask(dev), flag,
dev->archdata.numa_node);
dev_to_node(dev));
}

static void dma_iommu_free_coherent(struct device *dev, size_t size,
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/powerpc/kernel/dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ static void *dma_direct_alloc_coherent(struct device *dev, size_t size,
{
struct page *page;
void *ret;
int node = dev->archdata.numa_node;
int node = dev_to_node(dev);

page = alloc_pages_node(node, flag, get_order(size));
if (page == NULL)
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/powerpc/kernel/of_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ struct of_device *of_device_alloc(struct device_node *np,
dev->dev.parent = parent;
dev->dev.release = of_release_dev;
dev->dev.archdata.of_node = np;
dev->dev.archdata.numa_node = of_node_to_nid(np);
set_dev_node(&dev->dev, of_node_to_nid(np));

if (bus_id)
strlcpy(dev->dev.bus_id, bus_id, BUS_ID_SIZE);
Expand Down
7 changes: 2 additions & 5 deletions trunk/arch/powerpc/kernel/pci_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -558,11 +558,8 @@ void __devinit pcibios_setup_new_device(struct pci_dev *dev)
sd->of_node ? sd->of_node->full_name : "<none>");

sd->dma_ops = pci_dma_ops;
#ifdef CONFIG_NUMA
sd->numa_node = pcibus_to_node(dev->bus);
#else
sd->numa_node = -1;
#endif
set_dev_node(&dev->dev, pcibus_to_node(dev->bus));

if (ppc_md.pci_dma_dev_setup)
ppc_md.pci_dma_dev_setup(dev);
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/powerpc/kernel/vio.c
Original file line number Diff line number Diff line change
Expand Up @@ -1232,7 +1232,7 @@ struct vio_dev *vio_register_device_node(struct device_node *of_node)
else
viodev->dev.archdata.dma_ops = &dma_iommu_ops;
viodev->dev.archdata.dma_data = vio_build_iommu_table(viodev);
viodev->dev.archdata.numa_node = of_node_to_nid(of_node);
set_dev_node(&viodev->dev, of_node_to_nid(of_node));

/* init generic 'struct device' fields: */
viodev->dev.parent = &vio_bus_device.dev;
Expand Down
6 changes: 3 additions & 3 deletions trunk/arch/powerpc/platforms/cell/iommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -556,11 +556,11 @@ static struct iommu_table *cell_get_iommu_table(struct device *dev)
* node's iommu. We -might- do something smarter later though it may
* never be necessary
*/
iommu = cell_iommu_for_node(archdata->numa_node);
iommu = cell_iommu_for_node(dev_to_node(dev));
if (iommu == NULL || list_empty(&iommu->windows)) {
printk(KERN_ERR "iommu: missing iommu for %s (node %d)\n",
archdata->of_node ? archdata->of_node->full_name : "?",
archdata->numa_node);
dev_to_node(dev));
return NULL;
}
window = list_entry(iommu->windows.next, struct iommu_window, list);
Expand All @@ -577,7 +577,7 @@ static void *dma_fixed_alloc_coherent(struct device *dev, size_t size,
return iommu_alloc_coherent(dev, cell_get_iommu_table(dev),
size, dma_handle,
device_to_mask(dev), flag,
dev->archdata.numa_node);
dev_to_node(dev));
else
return dma_direct_ops.alloc_coherent(dev, size, dma_handle,
flag);
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/powerpc/platforms/ps3/system-bus.c
Original file line number Diff line number Diff line change
Expand Up @@ -762,7 +762,7 @@ int ps3_system_bus_device_register(struct ps3_system_bus_device *dev)
};

dev->core.archdata.of_node = NULL;
dev->core.archdata.numa_node = 0;
set_dev_node(&dev->core, 0);

pr_debug("%s:%d add %s\n", __func__, __LINE__, dev->core.bus_id);

Expand Down

0 comments on commit d23cd77

Please sign in to comment.