From: Aurelien Jarno <aurelien@aurel32.net>
To: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] Improve DMA transfers by increasing the buffer size.
Date: Fri, 28 Mar 2008 00:53:40 +0100 [thread overview]
Message-ID: <20080327235340.GA7964@volta.aurel32.net> (raw)
In-Reply-To: <18410.31540.160387.110544@mariner.uk.xensource.com>
On Wed, Mar 26, 2008 at 04:35:00PM +0000, Ian Jackson wrote:
Content-Description: message body text
> In this patch we increase the DMA buffers in the ide emulation from 8k
> to 132k, and make it configurable separately from the MAX_MULT_SECTORS
> for maximum multi-mode transfers. This can improve the performance in
> some conditions.
>
> The patch is cross-ported from xen-unstable hg changeset
> f4a92f0db20fda98a633c149e3396c005a759a77
>
> Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
> Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
>
Content-Description: increase ide DMA buffers
> From 4eaa19458262cce92f0b891c51433ccee0a19b79 Mon Sep 17 00:00:00 2001
> From: Ian Jackson <iwj@mariner.uk.xensource.com>
> Date: Wed, 26 Mar 2008 16:09:35 +0000
> Subject: [PATCH] Improve DMA transfers by increasing the size of DMA buffers.
>
> This involves a new constant IDE_DMA_BUF_SIZE which is separate from
> MAX_MULT_SECTORS.
>
> Cross-ported from xen-unstable
> 17267:f4a92f0db20fda98a633c149e3396c005a759a77
>
> Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
> Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
> ---
> hw/ide.c | 20 +++++++++++++-------
> 1 files changed, 13 insertions(+), 7 deletions(-)
>
> diff --git a/hw/ide.c b/hw/ide.c
> index 56a1cda..b73dba2 100644
> --- a/hw/ide.c
> +++ b/hw/ide.c
> @@ -202,6 +202,12 @@
> /* set to 1 set disable mult support */
> #define MAX_MULT_SECTORS 16
>
> +#define IDE_DMA_BUF_SIZE 131072
Wouldn't it be better to define this value in number of sectors? This
would avoid a few divisions in the code, and anyway the code handling
DMA transfers is working with a number of sectors, not a number of
bytes.
> +#if (IDE_DMA_BUF_SIZE < MAX_MULT_SECTORS * 512)
> +#error "IDE_DMA_BUF_SIZE must be bigger or equal to MAX_MULT_SECTORS * 512"
> +#endif
> +
> /* ATAPI defines */
>
> #define ATAPI_PACKET_SIZE 12
> @@ -920,8 +926,8 @@ static void ide_read_dma_cb(void *opaque, int ret)
>
> /* launch next transfer */
> n = s->nsector;
> - if (n > MAX_MULT_SECTORS)
> - n = MAX_MULT_SECTORS;
> + if (n > IDE_DMA_BUF_SIZE / 512)
> + n = IDE_DMA_BUF_SIZE / 512;
> s->io_buffer_index = 0;
> s->io_buffer_size = n * 512;
> #ifdef DEBUG_AIO
> @@ -1028,8 +1034,8 @@ static void ide_write_dma_cb(void *opaque, int ret)
>
> /* launch next transfer */
> n = s->nsector;
> - if (n > MAX_MULT_SECTORS)
> - n = MAX_MULT_SECTORS;
> + if (n > IDE_DMA_BUF_SIZE / 512)
> + n = IDE_DMA_BUF_SIZE / 512;
> s->io_buffer_index = 0;
> s->io_buffer_size = n * 512;
>
> @@ -1323,8 +1329,8 @@ static void ide_atapi_cmd_read_dma_cb(void *opaque, int ret)
> data_offset = 16;
> } else {
> n = s->packet_transfer_size >> 11;
> - if (n > (MAX_MULT_SECTORS / 4))
> - n = (MAX_MULT_SECTORS / 4);
> + if (n > (IDE_DMA_BUF_SIZE / 2048))
> + n = (IDE_DMA_BUF_SIZE / 2048);
> s->io_buffer_size = n * 2048;
> data_offset = 0;
> }
> @@ -2557,7 +2563,7 @@ static void ide_init2(IDEState *ide_state,
>
> for(i = 0; i < 2; i++) {
> s = ide_state + i;
> - s->io_buffer = qemu_memalign(512, MAX_MULT_SECTORS*512 + 4);
> + s->io_buffer = qemu_memalign(512, IDE_DMA_BUF_SIZE + 4);
> if (i == 0)
> s->bs = hd0;
> else
> --
> 1.4.4.4
>
--
.''`. Aurelien Jarno | GPG: 1024D/F1BCDB73
: :' : Debian developer | Electrical Engineer
`. `' aurel32@debian.org | aurelien@aurel32.net
`- people.debian.org/~aurel32 | www.aurel32.net
next prev parent reply other threads:[~2008-03-27 23:53 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-03-26 16:35 [Qemu-devel] [PATCH] Improve DMA transfers by increasing the buffer size Ian Jackson
2008-03-27 23:53 ` Aurelien Jarno [this message]
2008-03-28 10:05 ` Samuel Thibault
2008-03-28 11:35 ` Ian Jackson
2008-03-28 16:22 ` Aurelien Jarno
2008-03-29 12:16 ` Aurelien Jarno
2008-03-31 15:25 ` Ian Jackson
2008-03-30 10:42 ` Avi Kivity
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=20080327235340.GA7964@volta.aurel32.net \
--to=aurelien@aurel32.net \
--cc=qemu-devel@nongnu.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).