From: Helge Deller <deller@gmx.de>
To: linux-parisc@vger.kernel.org,
James Bottomley <James.Bottomley@HansenPartnership.com>,
John David Anglin <dave.anglin@bell.net>
Subject: [PATCH] parisc: Improve cache flushing under qemu
Date: Tue, 13 Feb 2018 23:10:10 +0100 [thread overview]
Message-ID: <20180213221010.GA27272@ls3530.fritz.box> (raw)
In QEMU we emulate a machine without any data or instruction caches.
Avoid calling the assembly cache flush functions when we have no caches
improves speed with qemu a lot.
Signed-off-by: Helge Deller <deller@gmx.de>
diff --git a/arch/parisc/kernel/cache.c b/arch/parisc/kernel/cache.c
index d5381b3e8f95..b4b6f6631d3b 100644
--- a/arch/parisc/kernel/cache.c
+++ b/arch/parisc/kernel/cache.c
@@ -55,11 +55,17 @@ static struct pdc_btlb_info btlb_info __read_mostly;
void
flush_data_cache(void)
{
+ if (unlikely(!cache_info.dc_size))
+ return;
+
on_each_cpu(flush_data_cache_local, NULL, 1);
}
void
flush_instruction_cache(void)
{
+ if (unlikely(!cache_info.ic_size))
+ return;
+
on_each_cpu(flush_instruction_cache_local, NULL, 1);
}
#endif
@@ -67,8 +73,10 @@ flush_instruction_cache(void)
void
flush_cache_all_local(void)
{
- flush_instruction_cache_local(NULL);
- flush_data_cache_local(NULL);
+ if (likely(cache_info.ic_size))
+ flush_instruction_cache_local(NULL);
+ if (likely(cache_info.dc_size))
+ flush_data_cache_local(NULL);
}
EXPORT_SYMBOL(flush_cache_all_local);
@@ -506,7 +515,8 @@ static void cacheflush_h_tmp_function(void *dummy)
void flush_cache_all(void)
{
- on_each_cpu(cacheflush_h_tmp_function, NULL, 1);
+ if (likely(cache_info.dc_size || cache_info.ic_size))
+ on_each_cpu(cacheflush_h_tmp_function, NULL, 1);
}
static inline unsigned long mm_total_size(struct mm_struct *mm)
reply other threads:[~2018-02-13 22: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=20180213221010.GA27272@ls3530.fritz.box \
--to=deller@gmx.de \
--cc=James.Bottomley@HansenPartnership.com \
--cc=dave.anglin@bell.net \
--cc=linux-parisc@vger.kernel.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;
as well as URLs for NNTP newsgroup(s).