The patch titled x86-64: pci-gart iommu sg chaining zeroes wrong sg has been removed from the -mm tree. Its filename was x86-64-pci-gart-iommu-sg-chaining-zeroes-wrong-sg.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: x86-64: pci-gart iommu sg chaining zeroes wrong sg From: FUJITA Tomonori <tomof@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/x86_64/kernel/pci-gart.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff -puN arch/x86_64/kernel/pci-gart.c~x86-64-pci-gart-iommu-sg-chaining-zeroes-wrong-sg arch/x86_64/kernel/pci-gart.c --- a/arch/x86_64/kernel/pci-gart.c~x86-64-pci-gart-iommu-sg-chaining-zeroes-wrong-sg +++ a/arch/x86_64/kernel/pci-gart.c @@ -426,8 +426,10 @@ int gart_map_sg(struct device *dev, stru goto error; out++; flush_gart(); - if (out < nents) - ps->dma_length = 0; + if (out < nents) { + sgmap = sg_next(sgmap); + sgmap->dma_length = 0; + } return out; error: _ Patches currently in -mm which might be from tomof@xxxxxxx are git-scsi-misc.patch git-block.patch git-block-intel-iommu-sg-chaining-support.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