From: jszhang@marvell.com (Jisheng Zhang)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/7] clocksource: add missing notrace attribute
Date: Tue, 27 Oct 2015 10:16:48 +0800 [thread overview]
Message-ID: <20151027101648.535ffdc7@xhacker> (raw)
In-Reply-To: <562E67D2.3020401@linaro.org>
Dear Daniel,
On Mon, 26 Oct 2015 18:50:10 +0100
Daniel Lezcano <daniel.lezcano@linaro.org> wrote:
> On 10/20/2015 10:02 AM, Jisheng Zhang wrote:
> > Some clocksource drivers sched_clock implementation either miss notrace
> > attribute or call wasn't notrace function. This series try to fix them.
> >
> > Jisheng Zhang (7):
> > clocksource: arm_global_timer: fix ftrace
> > clocksource: samsung_pwm_timer: fix ftrace
> > clocksource: pistachio: fix ftrace
> > clocksource: prima2: fix ftrace
> > clocksource: vf_pit_timer: don't trace pit_read_sched_clock()
> > clocksource: digicolor: don't trace digicolor_timer_sched_read()
> > clocksource: fsl_ftm_timer: don't trace ftm_read_sched_clock
> >
> > drivers/clocksource/arm_global_timer.c | 9 +++++++--
> > drivers/clocksource/fsl_ftm_timer.c | 2 +-
> > drivers/clocksource/samsung_pwm_timer.c | 2 +-
> > drivers/clocksource/time-pistachio.c | 3 ++-
> > drivers/clocksource/timer-digicolor.c | 2 +-
> > drivers/clocksource/timer-prima2.c | 2 +-
> > drivers/clocksource/vf_pit_timer.c | 2 +-
> > 7 files changed, 14 insertions(+), 8 deletions(-)
>
> Hi Jisheng,
>
> I will apply this series as 4.3 fixes.
>
> In the future, could you fix the subject by:
>
> clocksource/drivers/<driver>: [first letter uppercase]...;
Got it. Will take care in the future.
Thanks a lot for kind reminding,
Jisheng
WARNING: multiple messages have this Message-ID (diff)
From: Jisheng Zhang <jszhang@marvell.com>
To: Daniel Lezcano <daniel.lezcano@linaro.org>
Cc: <tglx@linutronix.de>, <baruch@tkos.co.il>, <baohua@kernel.org>,
<srinivas.kandagatla@gmail.com>, <maxime.coquelin@st.com>,
<patrice.chotard@st.com>, <linux-arm-kernel@lists.infradead.org>,
<linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 0/7] clocksource: add missing notrace attribute
Date: Tue, 27 Oct 2015 10:16:48 +0800 [thread overview]
Message-ID: <20151027101648.535ffdc7@xhacker> (raw)
In-Reply-To: <562E67D2.3020401@linaro.org>
Dear Daniel,
On Mon, 26 Oct 2015 18:50:10 +0100
Daniel Lezcano <daniel.lezcano@linaro.org> wrote:
> On 10/20/2015 10:02 AM, Jisheng Zhang wrote:
> > Some clocksource drivers sched_clock implementation either miss notrace
> > attribute or call wasn't notrace function. This series try to fix them.
> >
> > Jisheng Zhang (7):
> > clocksource: arm_global_timer: fix ftrace
> > clocksource: samsung_pwm_timer: fix ftrace
> > clocksource: pistachio: fix ftrace
> > clocksource: prima2: fix ftrace
> > clocksource: vf_pit_timer: don't trace pit_read_sched_clock()
> > clocksource: digicolor: don't trace digicolor_timer_sched_read()
> > clocksource: fsl_ftm_timer: don't trace ftm_read_sched_clock
> >
> > drivers/clocksource/arm_global_timer.c | 9 +++++++--
> > drivers/clocksource/fsl_ftm_timer.c | 2 +-
> > drivers/clocksource/samsung_pwm_timer.c | 2 +-
> > drivers/clocksource/time-pistachio.c | 3 ++-
> > drivers/clocksource/timer-digicolor.c | 2 +-
> > drivers/clocksource/timer-prima2.c | 2 +-
> > drivers/clocksource/vf_pit_timer.c | 2 +-
> > 7 files changed, 14 insertions(+), 8 deletions(-)
>
> Hi Jisheng,
>
> I will apply this series as 4.3 fixes.
>
> In the future, could you fix the subject by:
>
> clocksource/drivers/<driver>: [first letter uppercase]...;
Got it. Will take care in the future.
Thanks a lot for kind reminding,
Jisheng
next prev parent reply other threads:[~2015-10-27 2:16 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-20 8:02 [PATCH 0/7] clocksource: add missing notrace attribute Jisheng Zhang
2015-10-20 8:02 ` Jisheng Zhang
2015-10-20 8:02 ` [PATCH 1/7] clocksource: arm_global_timer: fix ftrace Jisheng Zhang
2015-10-20 8:02 ` Jisheng Zhang
2015-10-20 8:02 ` [PATCH 2/7] clocksource: samsung_pwm_timer: " Jisheng Zhang
2015-10-20 8:02 ` Jisheng Zhang
2015-10-20 8:02 ` [PATCH 3/7] clocksource: pistachio: " Jisheng Zhang
2015-10-20 8:02 ` Jisheng Zhang
2015-10-20 8:02 ` [PATCH 4/7] clocksource: prima2: " Jisheng Zhang
2015-10-20 8:02 ` Jisheng Zhang
2015-10-20 8:02 ` [PATCH 5/7] clocksource: vf_pit_timer: don't trace pit_read_sched_clock() Jisheng Zhang
2015-10-20 8:02 ` Jisheng Zhang
2015-10-20 8:02 ` [PATCH 6/7] clocksource: digicolor: don't trace digicolor_timer_sched_read() Jisheng Zhang
2015-10-20 8:02 ` Jisheng Zhang
2015-10-20 11:14 ` Baruch Siach
2015-10-20 11:14 ` Baruch Siach
2015-10-20 8:02 ` [PATCH 7/7] clocksource: fsl_ftm_timer: don't trace ftm_read_sched_clock Jisheng Zhang
2015-10-20 8:02 ` Jisheng Zhang
2015-10-26 17:50 ` [PATCH 0/7] clocksource: add missing notrace attribute Daniel Lezcano
2015-10-26 17:50 ` Daniel Lezcano
2015-10-27 2:16 ` Jisheng Zhang [this message]
2015-10-27 2:16 ` Jisheng Zhang
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=20151027101648.535ffdc7@xhacker \
--to=jszhang@marvell.com \
--cc=linux-arm-kernel@lists.infradead.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.