From: Igor Torrente <igor.torrente@collabora.com>
To: Thomas Zimmermann <tzimmermann@suse.de>,
boris.brezillon@collabora.com, loic.molinari@collabora.com,
willy@infradead.org, frank.binns@imgtec.com,
matt.coster@imgtec.com, maarten.lankhorst@linux.intel.com,
mripard@kernel.org, airlied@gmail.com, simona@ffwll.ch
Cc: dri-devel@lists.freedesktop.org, linux-mm@kvack.org
Subject: Re: [PATCH v3 5/6] drm/gem-shmem: Track folio accessed/dirty status in mmap
Date: Tue, 26 May 2026 11:56:40 -0300 [thread overview]
Message-ID: <831c0943-c75f-4d42-aa5f-90ce34cf8530@collabora.com> (raw)
In-Reply-To: <850e8355-7884-405c-a70a-986ce032c019@suse.de>
Hi Thomas,
On 5/26/26 11:44, Thomas Zimmermann wrote:
> Hi
>
> Am 20.05.26 um 15:11 schrieb Igor Torrente:
> [...]
>>
>> I'm not familiar with the drm_gem, code so I don't any more
>> insightful information
>> to share. But hopefully we can find a better fix for this.
>
> Do you have huge pages enabled ?
No, I didn't even compile my kernel with huge pages. I've already been
burned by that before
BR,
Igor Torrente
>
> Best regards
> Thomas
>
>>
>> BR,
>> Igor Torrente
>>
>>> ---
>>> drivers/gpu/drm/drm_gem_shmem_helper.c | 20 ++++++++++++++++++++
>>> 1 file changed, 20 insertions(+)
>>>
>>> diff --git a/drivers/gpu/drm/drm_gem_shmem_helper.c
>>> b/drivers/gpu/drm/drm_gem_shmem_helper.c
>>> index c3a054899ba3..0c86ad40a049 100644
>>> --- a/drivers/gpu/drm/drm_gem_shmem_helper.c
>>> +++ b/drivers/gpu/drm/drm_gem_shmem_helper.c
>>> @@ -598,6 +598,9 @@ static vm_fault_t drm_gem_shmem_fault(struct
>>> vm_fault *vmf)
>>> if (ret != VM_FAULT_NOPAGE)
>>> ret = vmf_insert_pfn(vma, vmf->address, pfn);
>>> + if (likely(!(ret & VM_FAULT_ERROR)))
>>> + folio_mark_accessed(folio);
>>> +
>>> out:
>>> dma_resv_unlock(obj->resv);
>>> @@ -638,10 +641,27 @@ static void drm_gem_shmem_vm_close(struct
>>> vm_area_struct *vma)
>>> drm_gem_vm_close(vma);
>>> }
>>> +static vm_fault_t drm_gem_shmem_pfn_mkwrite(struct vm_fault *vmf)
>>> +{
>>> + struct vm_area_struct *vma = vmf->vma;
>>> + struct drm_gem_object *obj = vma->vm_private_data;
>>> + struct drm_gem_shmem_object *shmem = to_drm_gem_shmem_obj(obj);
>>> + pgoff_t page_offset = vmf->pgoff - vma->vm_pgoff; /* page
>>> offset within VMA */
>>> + struct page *page = shmem->pages[page_offset];
>>> + struct folio *folio = page_folio(page);
>>> +
>>> + file_update_time(vma->vm_file);
>>> +
>>> + folio_mark_dirty(folio);
>>> +
>>> + return 0;
>>> +}
>>> +
>>> const struct vm_operations_struct drm_gem_shmem_vm_ops = {
>>> .fault = drm_gem_shmem_fault,
>>> .open = drm_gem_shmem_vm_open,
>>> .close = drm_gem_shmem_vm_close,
>>> + .pfn_mkwrite = drm_gem_shmem_pfn_mkwrite,
>>> };
>>> EXPORT_SYMBOL_GPL(drm_gem_shmem_vm_ops);
>
next prev parent reply other threads:[~2026-05-26 14:57 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-09 13:27 [PATCH v3 0/6] drm/gem-shmem: Track page accessed/dirty status Thomas Zimmermann
2026-02-09 13:27 ` [PATCH v3 1/6] drm/gem-shmem: Use obj directly where appropriate in fault handler Thomas Zimmermann
2026-02-09 14:10 ` Boris Brezillon
2026-02-09 13:27 ` [PATCH v3 2/6] drm/gem-shmem: Test for existence of page in mmap " Thomas Zimmermann
2026-02-09 14:10 ` Boris Brezillon
2026-02-09 13:27 ` [PATCH v3 3/6] drm/gem-shmem: Return vm_fault_t from drm_gem_shmem_try_map_pmd() Thomas Zimmermann
2026-02-09 13:27 ` [PATCH v3 4/6] drm/gem-shmem: Refactor drm_gem_shmem_try_map_pmd() Thomas Zimmermann
2026-02-09 14:25 ` Boris Brezillon
2026-02-09 13:27 ` [PATCH v3 5/6] drm/gem-shmem: Track folio accessed/dirty status in mmap Thomas Zimmermann
2026-02-09 14:23 ` Boris Brezillon
2026-02-09 14:46 ` Thomas Zimmermann
2026-02-09 15:01 ` Boris Brezillon
2026-02-25 11:35 ` Thomas Zimmermann
2026-05-20 13:11 ` Igor Torrente
2026-05-20 14:44 ` Boris Brezillon
2026-05-22 8:31 ` Thomas Zimmermann
2026-05-26 14:44 ` Thomas Zimmermann
2026-05-26 14:56 ` Igor Torrente [this message]
2026-05-27 6:56 ` Thomas Zimmermann
2026-05-27 10:18 ` Boris Brezillon
2026-05-27 10:32 ` Thomas Zimmermann
2026-05-27 15:02 ` Igor Torrente
2026-05-27 15:19 ` Thomas Zimmermann
2026-05-28 7:20 ` Thomas Zimmermann
2026-05-28 9:11 ` Boris Brezillon
2026-05-28 9:22 ` Thomas Zimmermann
2026-05-28 9:38 ` Boris Brezillon
2026-02-09 13:27 ` [PATCH v3 6/6] drm/gem-shmem: Track folio accessed/dirty status in vmap Thomas Zimmermann
2026-02-25 10:57 ` Frank Binns
2026-02-25 11:34 ` Thomas Zimmermann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=831c0943-c75f-4d42-aa5f-90ce34cf8530@collabora.com \
--to=igor.torrente@collabora.com \
--cc=airlied@gmail.com \
--cc=boris.brezillon@collabora.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=frank.binns@imgtec.com \
--cc=linux-mm@kvack.org \
--cc=loic.molinari@collabora.com \
--cc=maarten.lankhorst@linux.intel.com \
--cc=matt.coster@imgtec.com \
--cc=mripard@kernel.org \
--cc=simona@ffwll.ch \
--cc=tzimmermann@suse.de \
--cc=willy@infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox