aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/kernel/time.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2005-07-13 07:48:45 -0400
committerRalf Baechle <ralf@linux-mips.org>2005-10-29 14:31:46 -0400
commitec74e361f1e71a2498e48b62abdc4bd8d2423354 (patch)
treef442c9b3cf759743d97393288a31b9e481ad1df4 /arch/mips/kernel/time.c
parentcc61c1fede7d02cb8133ab0952ca3f3ba1f7fbb1 (diff)
Mark a few variables __read_mostly.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel/time.c')
-rw-r--r--arch/mips/kernel/time.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/arch/mips/kernel/time.c b/arch/mips/kernel/time.c
index 0dd0df7a3b04..fbc153c8f833 100644
--- a/arch/mips/kernel/time.c
+++ b/arch/mips/kernel/time.c
@@ -25,6 +25,7 @@
25#include <linux/module.h> 25#include <linux/module.h>
26 26
27#include <asm/bootinfo.h> 27#include <asm/bootinfo.h>
28#include <asm/cache.h>
28#include <asm/compiler.h> 29#include <asm/compiler.h>
29#include <asm/cpu.h> 30#include <asm/cpu.h>
30#include <asm/cpu-features.h> 31#include <asm/cpu-features.h>
@@ -76,7 +77,7 @@ int (*rtc_set_mmss)(unsigned long);
76static unsigned int sll32_usecs_per_cycle; 77static unsigned int sll32_usecs_per_cycle;
77 78
78/* how many counter cycles in a jiffy */ 79/* how many counter cycles in a jiffy */
79static unsigned long cycles_per_jiffy; 80static unsigned long cycles_per_jiffy __read_mostly;
80 81
81/* Cycle counter value at the previous timer interrupt.. */ 82/* Cycle counter value at the previous timer interrupt.. */
82static unsigned int timerhi, timerlo; 83static unsigned int timerhi, timerlo;
@@ -98,7 +99,10 @@ static unsigned int null_hpt_read(void)
98 return 0; 99 return 0;
99} 100}
100 101
101static void null_hpt_init(unsigned int count) { /* nothing */ } 102static void null_hpt_init(unsigned int count)
103{
104 /* nothing */
105}
102 106
103 107
104/* 108/*
@@ -224,7 +228,6 @@ int do_settimeofday(struct timespec *tv)
224 set_normalized_timespec(&wall_to_monotonic, wtm_sec, wtm_nsec); 228 set_normalized_timespec(&wall_to_monotonic, wtm_sec, wtm_nsec);
225 229
226 ntp_clear(); 230 ntp_clear();
227
228 write_sequnlock_irq(&xtime_lock); 231 write_sequnlock_irq(&xtime_lock);
229 clock_was_set(); 232 clock_was_set();
230 return 0; 233 return 0;