Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1436864 > unrolled thread
| Started by | Jisheng Zhang <jszhang@marvell.com> |
|---|---|
| First post | 2016-07-05 11:10 +0200 |
| Last post | 2016-07-05 17:40 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] tick: broadcast-hrtimer: set name of the ce_broadcast_hrtimer Jisheng Zhang <jszhang@marvell.com> - 2016-07-05 11:10 +0200
[tip:timers/core] tick/broadcast-hrtimer: Set name of the ce_broadcast_hrtimer tip-bot for Jisheng Zhang <tipbot@zytor.com> - 2016-07-05 17:40 +0200
| From | Jisheng Zhang <jszhang@marvell.com> |
|---|---|
| Date | 2016-07-05 11:10 +0200 |
| Subject | [PATCH] tick: broadcast-hrtimer: set name of the ce_broadcast_hrtimer |
| Message-ID | <rRuwG-MJ-39@gated-at.bofh.it> |
This is to avoid the "null" name when we either
~ # cat /sys/devices/system/clockevents/broadcast/current_device
(null)
or
~ # cat /proc/timer_list
...
Tick Device: mode: 1
Broadcast device
Clock Event Device: (null)
...
Signed-off-by: Jisheng Zhang <jszhang@marvell.com>
---
kernel/time/tick-broadcast-hrtimer.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/kernel/time/tick-broadcast-hrtimer.c b/kernel/time/tick-broadcast-hrtimer.c
index 53d7184..690b797 100644
--- a/kernel/time/tick-broadcast-hrtimer.c
+++ b/kernel/time/tick-broadcast-hrtimer.c
@@ -75,6 +75,7 @@ static int bc_set_next(ktime_t expires, struct clock_event_device *bc)
}
static struct clock_event_device ce_broadcast_hrtimer = {
+ .name = "bc_hrtimer",
.set_state_shutdown = bc_shutdown,
.set_next_ktime = bc_set_next,
.features = CLOCK_EVT_FEAT_ONESHOT |
--
2.8.1
[toc] | [next] | [standalone]
| From | tip-bot for Jisheng Zhang <tipbot@zytor.com> |
|---|---|
| Date | 2016-07-05 17:40 +0200 |
| Subject | [tip:timers/core] tick/broadcast-hrtimer: Set name of the ce_broadcast_hrtimer |
| Message-ID | <rRAC6-4FE-27@gated-at.bofh.it> |
| In reply to | #1436864 |
Commit-ID: 5130213721d01b6632c255d4295a8102cbb58379
Gitweb: http://git.kernel.org/tip/5130213721d01b6632c255d4295a8102cbb58379
Author: Jisheng Zhang <jszhang@marvell.com>
AuthorDate: Tue, 5 Jul 2016 16:57:51 +0800
Committer: Thomas Gleixner <tglx@linutronix.de>
CommitDate: Tue, 5 Jul 2016 17:02:19 +0200
tick/broadcast-hrtimer: Set name of the ce_broadcast_hrtimer
This is to avoid the "null" name when we either
~ # cat /sys/devices/system/clockevents/broadcast/current_device
(null)
or
~ # cat /proc/timer_list
...
Tick Device: mode: 1
Broadcast device
Clock Event Device: (null)
...
Signed-off-by: Jisheng Zhang <jszhang@marvell.com>
Cc: linux-arm-kernel@lists.infradead.org
Link: http://lkml.kernel.org/r/1467709071-3667-1-git-send-email-jszhang@marvell.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
kernel/time/tick-broadcast-hrtimer.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/kernel/time/tick-broadcast-hrtimer.c b/kernel/time/tick-broadcast-hrtimer.c
index 53d7184..690b797 100644
--- a/kernel/time/tick-broadcast-hrtimer.c
+++ b/kernel/time/tick-broadcast-hrtimer.c
@@ -75,6 +75,7 @@ static int bc_set_next(ktime_t expires, struct clock_event_device *bc)
}
static struct clock_event_device ce_broadcast_hrtimer = {
+ .name = "bc_hrtimer",
.set_state_shutdown = bc_shutdown,
.set_next_ktime = bc_set_next,
.features = CLOCK_EVT_FEAT_ONESHOT |
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web