The patch titled sparc32: add offset in pci_map_sg() has been added to the -mm tree. Its filename is sparc32-add-offset-in-pci_map_sg.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: sparc32: add offset in pci_map_sg() From: Jan Andersson jan.andersson@xxxxxxxx Add sg->offset to sg->dvma_address in pci_map_sg() on sparc32. Without the offset, transfers to buffers that do not begin on a page boundary will not work as expected. Signed-off-by: Jan Andersson <jan.andersson@xxxxxxxx> Cc: "David S. Miller" <davem@xxxxxxxxxxxxx> Cc: William Lee Irwin III <wli@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/sparc/kernel/ioport.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) diff -puN arch/sparc/kernel/ioport.c~sparc32-add-offset-in-pci_map_sg arch/sparc/kernel/ioport.c --- a/arch/sparc/kernel/ioport.c~sparc32-add-offset-in-pci_map_sg +++ a/arch/sparc/kernel/ioport.c @@ -726,7 +726,8 @@ int pci_map_sg(struct pci_dev *hwdev, st /* IIep is write-through, not flushing. */ for (n = 0; n < nents; n++) { BUG_ON(page_address(sg->page) == NULL); - sg->dvma_address = virt_to_phys(page_address(sg->page)); + sg->dvma_address = + virt_to_phys(page_address(sg->page)) + sg->offset; sg->dvma_length = sg->length; sg++; } _ Patches currently in -mm which might be from jan.andersson@xxxxxxxx are sparc32-add-offset-in-pci_map_sg.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html