From: Jim Paris <jim@jtan.com>
To: Geoff Levand <geoffrey.levand@am.sony.com>
Cc: Jens Axboe <jens.axboe@oracle.com>,
Cell Broadband Engine OSS Development <cbe-oss-dev@ozlabs.org>,
Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] block/ps3: Fix slow VRAM IO
Date: Mon, 19 Oct 2009 16:03:20 -0400 [thread overview]
Message-ID: <20091019200320.GA30464@psychosis.jim.sh> (raw)
In-Reply-To: <4ADCC4E3.8060104@am.sony.com>
Geoff Levand wrote:
>
> From: Hideyuki Sasaki <Hideyuki_Sasaki@hq.scei.sony.co.jp>
>
> The current PS3 VRAM driver uses msleep() to wait for completion
> of RSX DMA transfers between system memory and VRAM. Depending
> on the system timing, the processing delay and overhead of this
> msleep() call can significantly impact VRAM driver IO.
>
> To avoid the condition, add a short duration (200 usec max)
> udelay() polling loop before entering the msleep() polling
> loop.
>
> Signed-off-by: Hideyuki Sasaki <xhide@rd.scei.sony.co.jp>
> Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com>
Acked-by: Jim Paris <jim@jtan.com>
Thanks for tracking this down.
-jim
> ---
>
> drivers/block/ps3vram.c | 10 +++++++++-
> 1 file changed, 9 insertions(+), 1 deletion(-)
>
> --- a/drivers/block/ps3vram.c
> +++ b/drivers/block/ps3vram.c
> @@ -123,7 +123,15 @@ static int ps3vram_notifier_wait(struct
> {
> struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev);
> u32 *notify = ps3vram_get_notifier(priv->reports, NOTIFIER);
> - unsigned long timeout = jiffies + msecs_to_jiffies(timeout_ms);
> + unsigned long timeout;
> +
> + for (timeout = 20; timeout; timeout--) {
> + if (!notify[3])
> + return 0;
> + udelay(10);
> + }
> +
> + timeout = jiffies + msecs_to_jiffies(timeout_ms);
>
> do {
> if (!notify[3])
next prev parent reply other threads:[~2009-10-19 20:09 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-10-19 19:58 [PATCH] block/ps3: Fix slow VRAM IO Geoff Levand
2009-10-19 20:03 ` Jim Paris [this message]
2009-11-03 8:23 ` Andrew Morton
2009-11-09 6:40 ` [Cbe-oss-dev] " Akira Tsukamoto
2009-11-13 2:03 ` Akira Tsukamoto
2009-11-13 7:20 ` Jens Axboe
2009-11-28 22:50 ` [Cbe-oss-dev] " Siarhei Siamashka
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=20091019200320.GA30464@psychosis.jim.sh \
--to=jim@jtan.com \
--cc=Geert.Uytterhoeven@sonycom.com \
--cc=cbe-oss-dev@ozlabs.org \
--cc=geoffrey.levand@am.sony.com \
--cc=jens.axboe@oracle.com \
--cc=linux-kernel@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