From: Evgeny Voevodin <e.voevodin@samsung.com>
To: Jean-Christophe DUBOIS <jcd@tribudubois.net>
Cc: Kyungmin Park <kyungmin.park@samsung.com>,
m.kozlov@samsung.com, Igor Mitsyanko <i.mitsyanko@samsung.com>,
qemu-devel@nongnu.org, d.solodkiy@samsung.com
Subject: Re: [Qemu-devel] [PATCH] exynos4210/mct: Avoid infinite loop on non incremental timers
Date: Mon, 03 Dec 2012 12:44:10 +0400 [thread overview]
Message-ID: <50BC665A.20000@samsung.com> (raw)
In-Reply-To: <50BA39A9.8030402@tribudubois.net>
On 12/01/2012 09:08 PM, Jean-Christophe DUBOIS wrote:
> Check for a 0 "distance" value to avoid infinite loop when the
> expired FCR timer was not programed with auto-increment.
>
> With this change the behavior is coherent with the same type
> of code in the exynos4210_gfrc_restart() function in the same
> file.
>
> Linux seems to mostly use this timer with auto-increment
> which explain why it is not a problem most of the time.
>
> However other OS might have a problem with this if they
> don't use the auto-increment feature.
>
> Signed-off-by: Jean-Christophe DUBOIS <jcd@tribudubois.net>
> ---
> hw/exynos4210_mct.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/hw/exynos4210_mct.c b/hw/exynos4210_mct.c
> index e79cd6a..31a41d5 100644
> --- a/hw/exynos4210_mct.c
> +++ b/hw/exynos4210_mct.c
> @@ -568,7 +568,7 @@ static void exynos4210_gfrc_event(void *opaque)
> /* Reload FRC to reach nearest comparator */
> s->g_timer.curr_comp = exynos4210_gcomp_find(s);
> distance = exynos4210_gcomp_get_distance(s, s->g_timer.curr_comp);
> - if (distance > MCT_GT_COUNTER_STEP) {
> + if ((distance > MCT_GT_COUNTER_STEP) || !distance) {
You don't need additional braces here.
> distance = MCT_GT_COUNTER_STEP;
> }
> exynos4210_gfrc_set_count(&s->g_timer, distance);
> --
>
> 1.7.9.5
>
>
>
Doesn't apply to current master, please, rebase:
Applying: exynos4210/mct: Avoid infinite loop on non incremental timers
error: patch failed: hw/exynos4210_mct.c:568
error: hw/exynos4210_mct.c: patch does not apply
--
Kind regards,
Evgeny Voevodin,
Technical Leader,
Mobile Group,
Samsung Moscow Research Centre,
e-mail: e.voevodin@samsung.com
prev parent reply other threads:[~2012-12-03 8:44 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-01 17:08 [Qemu-devel] [PATCH] exynos4210/mct: Avoid infinite loop on non incremental timers Jean-Christophe DUBOIS
2012-12-03 8:44 ` Evgeny Voevodin [this message]
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=50BC665A.20000@samsung.com \
--to=e.voevodin@samsung.com \
--cc=d.solodkiy@samsung.com \
--cc=i.mitsyanko@samsung.com \
--cc=jcd@tribudubois.net \
--cc=kyungmin.park@samsung.com \
--cc=m.kozlov@samsung.com \
--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 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.