From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jiang Liu Subject: Re: [Patch Part3 V5 5/8] iommu/vt-d: Enhance intel_irq_remapping driver to support DMAR unit hotplug Date: Tue, 16 Sep 2014 15:00:29 +0800 Message-ID: <5417E00D.5000108@linux.intel.com> References: <1410487848-6027-1-git-send-email-jiang.liu@linux.intel.com> <1410487848-6027-6-git-send-email-jiang.liu@linux.intel.com> <54164D01.4060003@huawei.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <54164D01.4060003-hv44wF8Li93QT0dZR+AlfA@public.gmane.org> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: iommu-bounces-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org Errors-To: iommu-bounces-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org To: Yijing Wang , Joerg Roedel , David Woodhouse , Yinghai Lu , Bjorn Helgaas , Dan Williams , Vinod Koul , "Rafael J . Wysocki" Cc: Tony Luck , linux-pci-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-hotplug-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org, dmaengine-u79uwXL29TY76Z2rM5mHXA@public.gmane.org List-Id: iommu@lists.linux-foundation.org On 2014/9/15 10:20, Yijing Wang wrote: >> +static void ir_remove_ioapic_hpet_scope(struct intel_iommu *iommu) >> +{ >> + int i; >> >> - ir_parse_one_hpet_scope(scope, iommu); >> - } >> - start += scope->length; >> - } >> + for (i = 0; i < MAX_HPET_TBS; i++) >> + if (ir_hpet[i].iommu == iommu) >> + ir_hpet[i].iommu = NULL; > > Hi Gerry, why not reset whole ir_hpe and ir_ioapic data struct? Hi Yijing, Thanks for review. Zero is legal for id, bus and devfn in struct ioapic_scope and struct hpet_scope. So we use domain field as a flag to mark entry valid or invalid and only reset iommu field. Regards! Gerry > > > >> >> - return 0; >> + for (i = 0; i < MAX_IO_APICS; i++) >> + if (ir_ioapic[i].iommu == iommu) >> + ir_ioapic[i].iommu = NULL; >> } >> > > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ >