[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <5e17af59-e544-4c5e-a718-2cd77b8a07a4@intel.com>
Date: Fri, 12 Apr 2024 17:34:42 +0800
From: Yi Liu <yi.l.liu@...el.com>
To: Baolu Lu <baolu.lu@...ux.intel.com>, <iommu@...ts.linux.dev>
CC: Kevin Tian <kevin.tian@...el.com>, Jacob Pan
<jacob.jun.pan@...ux.intel.com>, Joerg Roedel <joro@...tes.org>, Will Deacon
<will@...nel.org>, Robin Murphy <robin.murphy@....com>,
<linux-kernel@...r.kernel.org>
Subject: Re: [PATCH v2 1/1] iommu/vt-d: Remove caching mode check before
device TLB flush
On 2024/4/10 18:38, Baolu Lu wrote:
> On 2024/4/10 17:14, Yi Liu wrote:
>>
>>
>> On 2024/4/10 16:02, Baolu Lu wrote:
>>> On 2024/4/10 14:30, Yi Liu wrote:
>>>> On 2024/4/10 13:58, Lu Baolu wrote:
>>>>> The Caching Mode (CM) of the Intel IOMMU indicates if the hardware
>>>>> implementation caches not-present or erroneous translation-structure
>>>>> entries except the first-stage translation. The caching mode is
>>>>> irrelevant to the device TLB , therefore there is no need to check
>>>>> it before a device TLB invalidation operation.
>>>>>
>>>>> iommu_flush_iotlb_psi() is called in map and unmap paths. The caching
>>>>> mode check before device TLB invalidation will cause device TLB
>>>>> invalidation always issued if IOMMU is not running in caching mode.
>>>>> This is wrong and causes unnecessary performance overhead.
>>>>
>>>> I don't think the original code is wrong. As I replied before, if CM==0,
>>>> the iommu_flush_iotlb_psi() is only called in unmap path, in which the
>>>> @map is false. [1] The reason to make the change is to make the logic
>>>> simpler. 🙂
>>>
>>> Oh, I see. There is a magic
>>>
>>> Â Â Â Â Â Â Â Â if (cap_caching_mode(iommu->cap) && !domain->use_first_level)
>>> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â iommu_flush_iotlb_psi(iommu, domain, pfn, pages, 0, 1);
>>>
>>> in __mapping_notify_one().
>>>
>>> So if it's caching mode, then
>>>
>>> Â Â - iommu_flush_iotlb_psi() will be called with @map=1 from
>>> Â Â Â __mapping_notify_one(), "!cap_caching_mode(iommu->cap) || !map" is
>>> Â Â Â not true, and device TLB is not invalidated.
>>> Â Â - iommu_flush_iotlb_psi() will also be called with @map=0 from
>>> Â Â Â intel_iommu_tlb_sync(), device TLB is issued there.
>>>
>>> That's the expected behavior for caching mode.
>>>
>>> If it's not the caching mode, then
>>>
>>> Â Â - iommu_flush_iotlb_psi() will be called with @map=0 from
>>> Â Â Â intel_iommu_tlb_sync(), device TLB is issued there.
>>>
>>> That's also the expected behavior.
>>>
>>> So the existing code is correct but obscure and difficult to understand,
>>> right? If so, we should make this patch as a cleanup rather than a fix.
>>
>> aha, yes. As the below table, iommu_flush_iotlb_psi() does flush device TLB
>> as expected. But there is a NA case. When CM==0, it should not be possible
>> to call iommu_flush_iotlb_psi() with @map==1 as cache invalidation is not
>> required when CM==0. So the existing code logic is really confusing,
>> checking @map is enough and clearer. Since the old code works, so perhaps
>> no fix tag is needed. :)
>>
>> +----+------+-----------+------------+
>> |Â \Â Â Â Â Â Â |Â Â Â Â Â Â Â Â Â Â Â |Â Â Â Â Â Â Â Â Â Â Â |
>> |Â Â \ @map |Â Â Â Â Â Â Â Â Â Â Â |Â Â Â Â Â Â Â Â Â Â Â |
>> | CM \Â Â Â Â |Â Â Â Â Â 0Â Â Â Â |Â Â Â Â 1Â Â Â Â Â |
>> |Â Â Â Â \Â Â Â |Â Â Â Â Â Â Â Â Â Â Â |Â Â Â Â Â Â Â Â Â Â Â |
>> +------+---+------------+------------+
>> |Â Â Â Â Â Â Â Â Â |Â Â Â Â Â Â Â Â Â Â Â |Â Â Â Â Â Â Â Â Â Â Â |
>> |Â Â Â Â 0Â Â Â |Â Â Â Â Â YÂ Â Â Â |Â Â Â Â NAÂ Â Â Â |
>> +----------+------------+------------+
>> |Â Â Â Â Â Â Â Â Â |Â Â Â Â Â Â Â Â Â Â Â |Â Â Â Â Â Â Â Â Â Â Â |
>> |Â Â Â Â 1Â Â Â |Â Â Â Â Â YÂ Â Â Â |Â Â Â Â NÂ Â Â Â Â |
>> +----------+------------+------------+
>>
>> Y means flush dev-TLB please
>> N means no need to flush dev-TLB
>> NA means not applied
>
> Yes. We have the same understanding now. :-)
yeah, would be helpful to refine the commit message w.r.t. this change.
>>
>> BTW. I think it is better to have the below change in a separate patch.
>> The below change does fix a improper dev-TLB flushing behavior. Also
>> how about Kevin's concern in the end of [1]. I didn't see your respond
>> about it.
>
> I had an offline discussion with him and I included the conclusion in
> the commit message of this patch.
ok. So the key reason is that intel_flush_iotlb_all() is not called at
all if CM==1 after that commit. So there is nothing fixed by this change.
right? This just makes the logic cleaner. Perhaps no need for a fix tag.
Reviewed-by: Yi Liu <yi.l.liu@...el.com>
--
Regards,
Yi Liu
Powered by blists - more mailing lists