From: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Jaya Kumar <jayakumar.lkml@gmail.com>,
Simona Vetter <simona@ffwll.ch>, Helge Deller <deller@gmx.de>,
linux-fbdev@vger.kernel.org, dri-devel@lists.freedesktop.org,
linux-kernel@vger.kernel.org, linux-mm@kvack.org,
Matthew Wilcox <willy@infradead.org>,
David Hildenbrand <david@redhat.com>
Subject: Re: [RFC PATCH v2 3/3] fb_defio: do not use deprecated page->mapping, index fields
Date: Sat, 1 Feb 2025 17:03:11 +0000 [thread overview]
Message-ID: <0f34f3db-17ba-4c4c-9f63-834f20f24847@lucifer.local> (raw)
In-Reply-To: <eb700763-eeee-4319-b6ac-904b8633b2b3@lucifer.local>
Andrew - Ugh sorry - please disregard the below, I sent it to the wrong
thread. It's Saturday and I'm tired and brain not working :>)
Let me resend this against the correct non-RFC thread!
On Sat, Feb 01, 2025 at 05:01:15PM +0000, Lorenzo Stoakes wrote:
> On Mon, Jan 13, 2025 at 11:15:48PM +0000, Lorenzo Stoakes wrote:
> > With the introduction of mapping_wrprotect_page() there is no need to use
> > folio_mkclean() in order to write-protect mappings of frame buffer pages,
> > and therefore no need to inappropriately set kernel-allocated page->index,
> > mapping fields to permit this operation.
> >
> > Instead, store the pointer to the page cache object for the mapped driver
> > in the fb_deferred_io object, and use the already stored page offset from
> > the pageref object to look up mappings in order to write-protect them.
> >
> > This is justified, as for the page objects to store a mapping pointer at
> > the point of assignment of pages, they must all reference the same
> > underlying address_space object. Since the life time of the pagerefs is
> > also the lifetime of the fb_deferred_io object, storing the pointer here
> > makes snese.
> >
> > This eliminates the need for all of the logic around setting and
> > maintaining page->index,mapping which we remove.
> >
> > This eliminates the use of folio_mkclean() entirely but otherwise should
> > have no functional change.
> >
> > Signed-off-by: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
>
> Andrew -
>
> Sorry to be a pain but could you please apply the attached fix-patch to
> avoid build bot failures when randconfig generates invalid
> configurations. The defio mechanism entirely relies upon the page faulting
> mechanism, and thus an MMU to function.
>
> This was previously masked, because folio_mkclean() happens to have a
> !CONFIG_MMU stub. It really doesn't make sense to apply such a stub for
> mapping_wrprotect_page() for architectures without an MMU.
>
> Instead, correctly express the actual dependency in Kconfig, which should
> prevent randconfig from doing the wrong thing and also helps document this
> fact about defio.
>
> Thanks!
>
> ----8<----
> From 32abcfbb8dea92d9a8a99e6a86f45a1823a75c59 Mon Sep 17 00:00:00 2001
> From: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
> Date: Sat, 1 Feb 2025 16:56:02 +0000
> Subject: [PATCH] fbdev: have CONFIG_FB_DEFERRED_IO depend on CONFIG_MMU
>
> Frame buffer deferred I/O is entirely reliant on the page faulting
> mechanism (and thus, an MMU) to function.
>
> Express this dependency in the Kconfig, as otherwise randconfig could
> generate invalid configurations resulting in build errors.
>
> Signed-off-by: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
> Reported-by: kernel test robot <lkp@intel.com>
> Closes: https://lore.kernel.org/oe-kbuild-all/202502020030.MnEJ847Z-lkp@intel.com/
> ---
> drivers/video/fbdev/core/Kconfig | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/video/fbdev/core/Kconfig b/drivers/video/fbdev/core/Kconfig
> index d554d8c543d4..154804914680 100644
> --- a/drivers/video/fbdev/core/Kconfig
> +++ b/drivers/video/fbdev/core/Kconfig
> @@ -135,6 +135,7 @@ config FB_SYSMEM_FOPS
> config FB_DEFERRED_IO
> bool
> depends on FB_CORE
> + depends on MMU
>
> config FB_DMAMEM_HELPERS
> bool
> --
> 2.48.1
next prev parent reply other threads:[~2025-02-01 17:03 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-13 23:15 [RFC PATCH v2 0/3] expose mapping wrprotect, fix fb_defio use Lorenzo Stoakes
2025-01-13 23:15 ` [RFC PATCH v2 1/3] mm: refactor rmap_walk_file() to separate out traversal logic Lorenzo Stoakes
2025-01-13 23:15 ` [RFC PATCH v2 2/3] mm: provide mapping_wrprotect_page() function Lorenzo Stoakes
2025-01-13 23:15 ` [RFC PATCH v2 3/3] fb_defio: do not use deprecated page->mapping, index fields Lorenzo Stoakes
2025-02-01 17:01 ` Lorenzo Stoakes
2025-02-01 17:03 ` Lorenzo Stoakes [this message]
2025-01-27 18:45 ` [RFC PATCH v2 0/3] expose mapping wrprotect, fix fb_defio use Lorenzo Stoakes
2025-01-31 17:03 ` Lorenzo Stoakes
2025-01-31 18:01 ` Kajtár Zsolt
2025-02-03 10:24 ` Thomas Zimmermann
2025-02-03 10:54 ` Lorenzo Stoakes
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=0f34f3db-17ba-4c4c-9f63-834f20f24847@lucifer.local \
--to=lorenzo.stoakes@oracle.com \
--cc=akpm@linux-foundation.org \
--cc=david@redhat.com \
--cc=deller@gmx.de \
--cc=dri-devel@lists.freedesktop.org \
--cc=jayakumar.lkml@gmail.com \
--cc=linux-fbdev@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=simona@ffwll.ch \
--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