All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andrew Morton <akpm@linux-foundation.org>
To: mm-commits@vger.kernel.org, willy@infradead.org,
	michal.simek@amd.com, arnd@arndb.de, akpm@linux-foundation.org
Subject: [folded-merged] microblaze-implement-the-new-page-table-range-api-fix.patch removed from -mm tree
Date: Thu, 24 Aug 2023 16:10:15 -0700	[thread overview]
Message-ID: <20230824231016.88C3BC433C8@smtp.kernel.org> (raw)


The quilt patch titled
     Subject: microblaze: mark flush_dcache_folio() inline
has been removed from the -mm tree.  Its filename was
     microblaze-implement-the-new-page-table-range-api-fix.patch

This patch was dropped because it was folded into microblaze-implement-the-new-page-table-range-api.patch

------------------------------------------------------
From: Arnd Bergmann <arnd@arndb.de>
Subject: microblaze: mark flush_dcache_folio() inline
Date: Thu, 10 Aug 2023 16:19:26 +0200

The newly added flush_dcache_folio() causes a harmless warning that turns
into a build failure with CONFIG_WERROR:

arch/microblaze/include/asm/cacheflush.h:77:13: error: 'flush_dcache_folio' defined but not used [-Werror=unused-function]

Mark it as inline to avoid this.

Link: https://lkml.kernel.org/r/20230810141947.1236730-9-arnd@kernel.org
Fixes: 1330c94f53996 ("microblaze: implement the new page table range API")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Michal Simek <michal.simek@amd.com>
Cc: Matthew Wilcox <willy@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 arch/microblaze/include/asm/cacheflush.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/arch/microblaze/include/asm/cacheflush.h~microblaze-implement-the-new-page-table-range-api-fix
+++ a/arch/microblaze/include/asm/cacheflush.h
@@ -74,7 +74,7 @@ do { \
 	flush_dcache_range((unsigned) (addr), (unsigned) (addr) + PAGE_SIZE); \
 } while (0);
 
-static void flush_dcache_folio(struct folio *folio)
+static inline void flush_dcache_folio(struct folio *folio)
 {
 	unsigned long addr = folio_pfn(folio) << PAGE_SHIFT;
 
_

Patches currently in -mm which might be from arnd@arndb.de are

microblaze-implement-the-new-page-table-range-api.patch


                 reply	other threads:[~2023-08-24 23:10 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=20230824231016.88C3BC433C8@smtp.kernel.org \
    --to=akpm@linux-foundation.org \
    --cc=arnd@arndb.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=michal.simek@amd.com \
    --cc=mm-commits@vger.kernel.org \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.