Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 80153
b: refs/heads/master
c: cdc7957
h: refs/heads/master
i:
  80151: c14d98f
v: v3
  • Loading branch information
Ingo Molnar committed Jan 30, 2008
1 parent 2aedbbc commit 68d6e72
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fde1b3fa947c2512e3715962ebb1d3a6a9b9bb7d
refs/heads/master: cdc7957d1954908a39a6964e9c6f643916e76c4b
10 changes: 10 additions & 0 deletions trunk/arch/x86/kernel/rtc.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include <linux/mc146818rtc.h>

#include <asm/time.h>
#include <asm/vsyscall.h>

#ifdef CONFIG_X86_32
# define CMOS_YEARS_OFFS 1900
Expand Down Expand Up @@ -194,3 +195,12 @@ int update_persistent_clock(struct timespec now)
{
return set_rtc_mmss(now.tv_sec);
}

unsigned long long __vsyscall_fn native_read_tsc(void)
{
DECLARE_ARGS(val, low, high);

asm volatile("rdtsc" : EAX_EDX_RET(val, low, high));
return EAX_EDX_VAL(val, low, high);
}
EXPORT_SYMBOL_GPL(native_read_tsc);
8 changes: 1 addition & 7 deletions trunk/include/asm-x86/msr.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,7 @@ static inline int native_write_msr_safe(unsigned int msr,
return err;
}

static inline unsigned long long native_read_tsc(void)
{
DECLARE_ARGS(val, low, high);

asm volatile("rdtsc" : EAX_EDX_RET(val, low, high));
return EAX_EDX_VAL(val, low, high);
}
extern unsigned long long native_read_tsc(void);

static inline unsigned long long native_read_pmc(int counter)
{
Expand Down

0 comments on commit 68d6e72

Please sign in to comment.