mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 09:02:00 +00:00
[S390] time: move local_tick_enable()/disable() to timex.h
Move the two functions to timex.h where they make more sense than in hardirq.h. No functional change. Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
parent
860dba45e8
commit
17eb7a5cfa
@ -21,20 +21,4 @@
|
|||||||
|
|
||||||
#define HARDIRQ_BITS 8
|
#define HARDIRQ_BITS 8
|
||||||
|
|
||||||
void clock_comparator_work(void);
|
|
||||||
|
|
||||||
static inline unsigned long long local_tick_disable(void)
|
|
||||||
{
|
|
||||||
unsigned long long old;
|
|
||||||
|
|
||||||
old = S390_lowcore.clock_comparator;
|
|
||||||
S390_lowcore.clock_comparator = -1ULL;
|
|
||||||
return old;
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline void local_tick_enable(unsigned long long comp)
|
|
||||||
{
|
|
||||||
S390_lowcore.clock_comparator = comp;
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif /* __ASM_HARDIRQ_H */
|
#endif /* __ASM_HARDIRQ_H */
|
||||||
|
@ -11,6 +11,8 @@
|
|||||||
#ifndef _ASM_S390_TIMEX_H
|
#ifndef _ASM_S390_TIMEX_H
|
||||||
#define _ASM_S390_TIMEX_H
|
#define _ASM_S390_TIMEX_H
|
||||||
|
|
||||||
|
#include <asm/lowcore.h>
|
||||||
|
|
||||||
/* The value of the TOD clock for 1.1.1970. */
|
/* The value of the TOD clock for 1.1.1970. */
|
||||||
#define TOD_UNIX_EPOCH 0x7d91048bca000000ULL
|
#define TOD_UNIX_EPOCH 0x7d91048bca000000ULL
|
||||||
|
|
||||||
@ -49,6 +51,22 @@ static inline void store_clock_comparator(__u64 *time)
|
|||||||
asm volatile("stckc %0" : "=Q" (*time));
|
asm volatile("stckc %0" : "=Q" (*time));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void clock_comparator_work(void);
|
||||||
|
|
||||||
|
static inline unsigned long long local_tick_disable(void)
|
||||||
|
{
|
||||||
|
unsigned long long old;
|
||||||
|
|
||||||
|
old = S390_lowcore.clock_comparator;
|
||||||
|
S390_lowcore.clock_comparator = -1ULL;
|
||||||
|
return old;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void local_tick_enable(unsigned long long comp)
|
||||||
|
{
|
||||||
|
S390_lowcore.clock_comparator = comp;
|
||||||
|
}
|
||||||
|
|
||||||
#define CLOCK_TICK_RATE 1193180 /* Underlying HZ */
|
#define CLOCK_TICK_RATE 1193180 /* Underlying HZ */
|
||||||
|
|
||||||
typedef unsigned long long cycles_t;
|
typedef unsigned long long cycles_t;
|
||||||
|
Loading…
Reference in New Issue
Block a user