From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 8D341566C62 for ; Tue, 22 Sep 2026 16:38:14 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=217.140.110.172 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1790095101; cv=none; b=sW68PXehmjOAnawFu/ehz1RE3fST3Se7rCiVt7aNxqqBCmAkdnGdAgltYewljCMOzwVAm2xt//0U4c900pcKSTe+YZ7zIK/GGxJvTM3V9LEuFE/n5WF5/vYxwl4nwcv1808Hr3tgmVtkkekmMti8uIgzV7y2S2y5ZZTxUGpuR3s= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1790095101; c=relaxed/simple; bh=fEo6qnAyn5f+Ayh0CWgFVBjDPIXFFi+YOB8rKVgK/40=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=JoTuDgumkBIPXg589dTfiaHDmfR/WyYXfxLj98C2VjU1phy30VK/v06hrmjbWHCN3ve5mW6YTcq3KlVafkBUTJ7IhBZz3JmR+iUE5whI3pBvUBP1Kyoj12L9eGrmhoxTUpgpDd7gB8ggX2pb+AygJthnq2Q3d36KT3J8JhI651I= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com; spf=pass smtp.mailfrom=arm.com; dkim=pass (1024-bit key) header.d=arm.com header.i=@arm.com header.b=nuL71XT2; arc=none smtp.client-ip=217.140.110.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=arm.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=arm.com header.i=@arm.com header.b="nuL71XT2" Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 0D64B1576 for ; Tue, 22 Sep 2026 09:38:06 -0700 (PDT) Received: from [10.2.11.34] (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 5C4483F632 for ; Tue, 22 Sep 2026 09:38:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=arm.com; s=foss; t=1790095089; bh=fEo6qnAyn5f+Ayh0CWgFVBjDPIXFFi+YOB8rKVgK/40=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=nuL71XT2pmfRQtmMx2lzsiDrECSwmf+/QGl1gps0pwjLPiTF14rwyigfDRysfTXpH 4VRvGRBFM5xnFYWUkFszZPu4zRTFb8yqoACbOhOUE3Hf//Vz4wJ2SLZLb2o/j5Q7XW /6KLUABInnZ0gGabjUSOi3jNBmIgjcXJL9A1I8gU= Date: Tue, 22 Sep 2026 17:37:58 +0100 From: Liviu Dudau To: Boris Brezillon Cc: Steven Price , =?utf-8?Q?Adri=C3=A1n?= Larumbe , Akash Goel , Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , David Airlie , Simona Vetter , dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/4] drm/panthor: Avoid false positives in iova_mapped_as_huge_page() Message-ID: References: <20260917-panthor-fix-partial-unmap-v1-0-c7008f15fea3@collabora.com> <20260917-panthor-fix-partial-unmap-v1-1-c7008f15fea3@collabora.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20260917-panthor-fix-partial-unmap-v1-1-c7008f15fea3@collabora.com> On Thu, Sep 17, 2026 at 02:33:43PM +0200, Boris Brezillon wrote: > The check on the folio size is actually moot if the BO offset matching > the VA we're checking huge-mapping for is not 2M aligned as well. > This means that we are sometimes returning true when we shouldn't, which > forces an extra unmap+map to deal with block-mapping splits. It's not > a functional bug per-se, because the unmap+map sequence will restore > things in the state we expect them to be, but it's better to properly > optimize those cases. > > Note that we now align the VA on 2M address below it otherwise we can't > check the bo_offset alignment (both physical and virtual address need > to be aligned, in addition to the physically contiguous size being 2M, > which the folio size check ensures). > > These changes force us to pass the drm_gpuva that's being unmapped > instead of the new mappings that will be created to cover the left/right > sections we remap. This changes makes the logic a lot easier to reason > about, because it doesn't make sense to how things were mapped by > passing the new mappings that are not yet in place. > > Fixes: 8e7460eac786 ("drm/panthor: Support partial unmaps of huge pages") > Signed-off-by: Boris Brezillon Reviewed-by: Liviu Dudau Best regards, Liviu > --- > drivers/gpu/drm/panthor/panthor_mmu.c | 24 +++++++++++++++++++----- > 1 file changed, 19 insertions(+), 5 deletions(-) > > diff --git a/drivers/gpu/drm/panthor/panthor_mmu.c b/drivers/gpu/drm/panthor/panthor_mmu.c > index 9f63a048df61..b0a7033480e6 100644 > --- a/drivers/gpu/drm/panthor/panthor_mmu.c > +++ b/drivers/gpu/drm/panthor/panthor_mmu.c > @@ -2295,15 +2295,29 @@ static int panthor_gpuva_sm_step_map(struct drm_gpuva_op *op, void *priv) > } > > static bool > -iova_mapped_as_huge_page(struct drm_gpuva_op_map *op, u64 addr) > +iova_mapped_as_huge_page(struct drm_gpuva *mapping, u64 va) > { > - struct panthor_gem_object *bo = to_panthor_bo(op->gem.obj); > + struct panthor_gem_object *bo = to_panthor_bo(mapping->gem.obj); > + u64 aligned_va = ALIGN_DOWN(va, SZ_2M); > const struct page *pg; > pgoff_t bo_offset; > > - bo_offset = addr - op->va.addr + op->gem.offset; > + /* If the 2M-aligned VA is outside the mapping being tested, we know > + * it's not a huge map. > + */ > + if (aligned_va < mapping->va.addr) > + return false; > + > + bo_offset = aligned_va - mapping->va.addr + mapping->gem.offset; > pg = bo->backing.pages[bo_offset >> PAGE_SHIFT]; > > + /* In case of shmem backing, we know we can only have a huge mapping > + * if the bo_offset is 2M aligned, meaning we can skip the folio size > + * check if it's not the case. > + */ > + if (!IS_ALIGNED(bo_offset, SZ_2M)) > + return false; > + > return folio_size(page_folio(pg)) >= SZ_2M; > } > > @@ -2328,7 +2342,7 @@ unmap_hugepage_align(const struct drm_gpuva_op_remap *op, > */ > if (op->prev && aligned_unmap_start < *unmap_start && > op->prev->va.addr <= aligned_unmap_start && > - (is_sparse || iova_mapped_as_huge_page(op->prev, *unmap_start))) { > + (is_sparse || iova_mapped_as_huge_page(op->unmap->va, *unmap_start))) { > *unmap_range += *unmap_start - aligned_unmap_start; > *unmap_start = aligned_unmap_start; > } > @@ -2338,7 +2352,7 @@ unmap_hugepage_align(const struct drm_gpuva_op_remap *op, > */ > if (op->next && aligned_unmap_end > unmap_end && > op->next->va.addr + op->next->va.range >= aligned_unmap_end && > - (is_sparse || iova_mapped_as_huge_page(op->next, unmap_end - 1))) { > + (is_sparse || iova_mapped_as_huge_page(op->unmap->va, unmap_end - 1))) { > *unmap_range += aligned_unmap_end - unmap_end; > } > } > > -- > 2.55.0 > -- ==================== | I would like to | | fix the world, | | but they're not | | giving me the | \ source code! / --------------- ¯\_(ツ)_/¯