From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?ISO-8859-1?Q?G=E1bor_P=C9K?= Subject: Deferred/Asynchronous queued invalidation Date: Wed, 20 Feb 2013 18:17:45 +0100 Message-ID: <51250539.2040705@crysys.hu> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xen.org List-Id: xen-devel@lists.xenproject.org Hi all, I am wondering if Xen implements deferred/asynchronous queued invalidation in order to flush the stale entries from IOTLB. I know that the synchronous version is implemented in xen\drivers\passthrough\vtd\qinval.c , int invalidate_sync(struct iommu *iommu) { int ret = -1; struct qi_ctrl *qi_ctrl = iommu_qi_ctrl(iommu); if ( qi_ctrl->qinval_maddr != 0 ) { ret = queue_invalidate_wait(iommu, 0, 1, 1); return ret; } return 0; } but I could not find anything in the source code about the deferred/asynchronous version. Thank you! -gabor