Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1764221AbZCaWz6 (ORCPT ); Tue, 31 Mar 2009 18:55:58 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1763773AbZCaWwY (ORCPT ); Tue, 31 Mar 2009 18:52:24 -0400 Received: from gw.goop.org ([64.81.55.164]:53483 "EHLO abulafia.goop.org" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1762396AbZCaWwU (ORCPT ); Tue, 31 Mar 2009 18:52:20 -0400 From: Jeremy Fitzhardinge To: FUJITA Tomonori Cc: the arch/x86 maintainers , Ingo Molnar , Linux Kernel Mailing List , Jeremy Fitzhardinge Subject: [PATCH 8/9] xen/swiotlb: add sync functions Date: Tue, 31 Mar 2009 15:52:14 -0700 Message-Id: <1238539935-4295-9-git-send-email-jeremy@goop.org> X-Mailer: git-send-email 1.6.0.6 In-Reply-To: <1238539935-4295-1-git-send-email-jeremy@goop.org> References: <1238539935-4295-1-git-send-email-jeremy@goop.org> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1262 Lines: 38 From: Jeremy Fitzhardinge Impact: bugfix Add all the missing sync functions. This fixes iwlagn. (Need to think about what to do with non-swiotlb mode.) Signed-off-by: Jeremy Fitzhardinge --- drivers/pci/xen-iommu.c | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/drivers/pci/xen-iommu.c b/drivers/pci/xen-iommu.c index 080aec1..e85c1cf 100644 --- a/drivers/pci/xen-iommu.c +++ b/drivers/pci/xen-iommu.c @@ -311,6 +311,13 @@ static struct dma_mapping_ops xen_swiotlb_dma_ops = { .mapping_error = swiotlb_dma_mapping_error, + .sync_single_for_cpu = swiotlb_sync_single_for_cpu, + .sync_single_for_device = swiotlb_sync_single_for_device, + .sync_single_range_for_cpu = swiotlb_sync_single_range_for_cpu, + .sync_single_range_for_device = swiotlb_sync_single_range_for_device, + .sync_sg_for_cpu = swiotlb_sync_sg_for_cpu, + .sync_sg_for_device = swiotlb_sync_sg_for_device, + .is_phys = 0, }; -- 1.6.0.6 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/