From: Alexey Klimov <alexey.klimov@arm.com>
To: Jassi Brar <jassisinghbrar@gmail.com>
Cc: Sudeep Holla <sudeep.holla@arm.com>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
Jassi Brar <jaswinder.singh@linaro.org>
Subject: Re: [PATCH RFC] mailbox: move controller timer to per-channel timers
Date: Tue, 11 Apr 2017 13:34:42 +0100 [thread overview]
Message-ID: <20170411123441.GA4973@arm.com> (raw)
In-Reply-To: <CABb+yY0CpPgTunr7WsKsUgAu4rGgF9mU=o4SX3scwbd4CB-7vg@mail.gmail.com>
On Fri, Apr 07, 2017 at 08:39:35PM +0530, Jassi Brar wrote:
> On Thu, Apr 6, 2017 at 11:01 PM, Alexey Klimov <alexey.klimov@arm.com> wrote:
> > When mailbox controller provides two or more channels and
> > they are actively used by mailbox client(s) it's very easy
> > to trigger the warning in hrtimer_forward():
> >
> > [ 247.853060] WARNING: CPU: 6 PID: 0 at kernel/time/hrtimer.c:805 hrtimer_forward+0x88/0xd8
> > [ 247.853549] Modules linked in:
> > [ 247.853907] CPU: 6 PID: 0 Comm: swapper/6 Tainted: G W 4.11.0-rc2-00362-g93afaa4513bb-dirty #13
> > [ 247.854472] Hardware name: linux,dummy-virt (DT)
> > [ 247.854699] task: ffff80001d89d780 task.stack: ffff80001d8c4000
> > [ 247.854999] PC is at hrtimer_forward+0x88/0xd8
> > [ 247.855280] LR is at txdone_hrtimer+0xd4/0xf8
> > [ 247.855551] pc : [<ffff0000081039f0>] lr : [<ffff00000881b874>] pstate: 200001c5
> > [ 247.855857] sp : ffff80001efbdeb0
> > [ 247.856072] x29: ffff80001efbdeb0 x28: ffff80001efc3140
> > [ 247.856358] x27: ffff00000881b7a0 x26: 00000039ac93e8b6
> > [ 247.856604] x25: ffff000008e756be x24: ffff80001c4a1348
> > [ 247.856882] x23: 0000000000000001 x22: 00000000000000f8
> > [ 247.857189] x21: ffff80001c4a1318 x20: ffff80001d327110
> > [ 247.857509] x19: 00000000000f4240 x18: 0000000000000030
> > [ 247.857808] x17: 0000ffffaecdf370 x16: ffff0000081ccc80
> > [ 247.858000] x15: 0000000000000010 x14: 00000000fffffff0
> > [ 247.858186] x13: ffff000008f488e0 x12: 000000000002e3eb
> > [ 247.858381] x11: ffff000008979690 x10: 0000000000000000
> > [ 247.858573] x9 : 0000000000000001 x8 : ffff80001efc66e0
> > [ 247.858758] x7 : ffff80001efc6708 x6 : 00000005be7732f2
> > [ 247.858943] x5 : 0000000000000001 x4 : ffff80001c4a1348
> > [ 247.859130] x3 : 00000039ac94952a x2 : 00000000000f4240
> > [ 247.859315] x1 : 00000039ac98243c x0 : 0000000000038f12
> > [ 247.859582] ---[ end trace d61812426ec3c30b ]---
> >
> > To fix this current patch migrates hr timers to be per-channel
> > instead of using only one timer per-controller.
> >
> I think we can do by just checking if hrtimer_active() returns false
> before we do hrtimer_start() in msg_submit() ?
It looks like it can be easily broken:
1) let's say first thread executes timer callback and already checked last_tx_done
on channel 0;
2) second thread submits a message to the controller, say, on channel 0 and with
help of hrtimer_active() observes that the timer is active (because timer callback
is running) and decides not to (re-)start timer;
After this first thread decides not to restart the timer and finishes callback.
The thing that first thread executes tx_tick isn't helpful: for example first
thread may have no messages to submit on any channel and therefore is not going
to deal with timer.
Finally, mailbox state machine is stalled. Second thread thinks that timer is
active while it's not.
One of the main questions is that there is only one timer per few channels
in current code.
Thanks,
Alexey.
next prev parent reply other threads:[~2017-04-11 12:35 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-06 17:31 [PATCH RFC] mailbox: move controller timer to per-channel timers Alexey Klimov
2017-04-07 15:09 ` Jassi Brar
2017-04-11 12:34 ` Alexey Klimov [this message]
2017-04-11 13:00 ` Jassi Brar
2017-05-25 17:43 ` Alexey Klimov
2017-05-30 16:29 ` Alexey Klimov
2017-05-31 8:38 ` Jassi Brar
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=20170411123441.GA4973@arm.com \
--to=alexey.klimov@arm.com \
--cc=jassisinghbrar@gmail.com \
--cc=jaswinder.singh@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=sudeep.holla@arm.com \
/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.