From: dmukhin@xen.org
To: xen-devel@lists.xenproject.org
Cc: andrew.cooper3@citrix.com, anthony.perard@vates.tech,
jbeulich@suse.com, julien@xen.org, michal.orzel@amd.com,
roger.pau@citrix.com, sstabellini@kernel.org, dmukhin@ford.com
Subject: [PATCH v5 4/6] xen/console: use memcpy() in console_init_ring()
Date: Wed, 4 Feb 2026 17:36:04 -0800 [thread overview]
Message-ID: <20260205013606.3384798-5-dmukhin@ford.com> (raw)
In-Reply-To: <20260205013606.3384798-1-dmukhin@ford.com>
From: Denis Mukhin <dmukhin@ford.com>
Make console_init_ring() more efficient by using memcpy()'s, rather than
copying the ring a byte at a time.
Suggested-by: Andrew Cooper <andrew.cooper3@citrix.com>
Signed-off-by: Denis Mukhin <dmukhin@ford.com>
---
Changes since v4:
- new patch
---
xen/drivers/char/console.c | 18 +++++++++++++++---
1 file changed, 15 insertions(+), 3 deletions(-)
diff --git a/xen/drivers/char/console.c b/xen/drivers/char/console.c
index ef9131439bba..3ad86fd436e2 100644
--- a/xen/drivers/char/console.c
+++ b/xen/drivers/char/console.c
@@ -463,7 +463,7 @@ static void cf_check conring_dump_keyhandler(unsigned char key)
void __init console_init_ring(void)
{
char *ring;
- unsigned int i, order, memflags;
+ unsigned int start, size, chunk, order, memflags;
unsigned long flags;
if ( !opt_conring_size )
@@ -479,11 +479,23 @@ void __init console_init_ring(void)
opt_conring_size = PAGE_SIZE << order;
nrspin_lock_irqsave(&console_lock, flags);
- for ( i = conringc ; i != conringp; i++ )
- ring[i & (opt_conring_size - 1)] = conring[i & (conring_size - 1)];
+
+ start = conringc & (conring_size - 1);
+ size = min(conringp - conringc, conring_size);
+ chunk = min(size, conring_size - start);
+
+ memcpy(&ring[0], &conring[start], chunk);
+ if ( size > chunk )
+ memcpy(&ring[chunk], &conring[0], size - chunk);
+
+ /* Data is moved to [0..size), re-position conring pointers. */
+ conringc = 0;
+ conringp = size;
+
conring = ring;
smp_wmb(); /* Allow users of console_force_unlock() to see larger buffer. */
conring_size = opt_conring_size;
+
nrspin_unlock_irqrestore(&console_lock, flags);
printk("Allocated console ring of %u KiB.\n", opt_conring_size >> 10);
--
2.52.0
next prev parent reply other threads:[~2026-02-05 1:36 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-05 1:36 [PATCH v5 0/6] xen/console: configurable conring size dmukhin
2026-02-05 1:36 ` [PATCH v5 1/6] xen/console: group conring code together dmukhin
2026-02-09 16:38 ` Jan Beulich
2026-02-11 19:47 ` dmukhin
2026-02-05 1:36 ` [PATCH v5 2/6] xen/console: make console buffer size configurable dmukhin
2026-02-05 8:43 ` Jan Beulich
2026-02-06 1:52 ` dmukhin
2026-02-05 1:36 ` [PATCH v5 3/6] xen/console: promote conring{,_size} to __ro_after_init dmukhin
2026-02-09 16:40 ` Jan Beulich
2026-02-11 19:47 ` dmukhin
2026-02-05 1:36 ` dmukhin [this message]
2026-02-09 16:56 ` [PATCH v5 4/6] xen/console: use memcpy() in console_init_ring() Jan Beulich
2026-02-05 1:36 ` [PATCH v5 5/6] xen/console: update conring memory allocation dmukhin
2026-02-09 17:02 ` Jan Beulich
2026-05-08 21:45 ` dmukhin
2026-02-10 15:08 ` Jan Beulich
2026-02-05 1:36 ` [PATCH v5 6/6] xen/console: add conring buffer size alignment setting dmukhin
2026-02-10 15:10 ` Jan Beulich
2026-05-08 21:46 ` dmukhin
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=20260205013606.3384798-5-dmukhin@ford.com \
--to=dmukhin@xen.org \
--cc=andrew.cooper3@citrix.com \
--cc=anthony.perard@vates.tech \
--cc=dmukhin@ford.com \
--cc=jbeulich@suse.com \
--cc=julien@xen.org \
--cc=michal.orzel@amd.com \
--cc=roger.pau@citrix.com \
--cc=sstabellini@kernel.org \
--cc=xen-devel@lists.xenproject.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.