diff options
author | Jack Steiner <steiner@sgi.com> | 2009-11-19 23:23:41 +0300 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-11-23 21:47:42 +0300 |
commit | fd12a0d69aee6d90fa9b9890db24368a897f8423 (patch) | |
tree | 2e77b6badae3966af54beb40f727dea143dbb075 /arch/x86/include/asm/x86_init.h | |
parent | e38e2af1c57c3eb5211331a5b4fcaae0c4a2a918 (diff) | |
download | linux-fd12a0d69aee6d90fa9b9890db24368a897f8423.tar.xz |
x86: UV SGI: Don't track GRU space in PAT
GRU space is always mapped as WB in the page table. There is
no need to track the mappings in the PAT. This also eliminates
the "freeing invalid memtype" messages when the GRU space is
unmapped.
Signed-off-by: Jack Steiner <steiner@sgi.com>
LKML-Reference: <20091119202341.GA4420@sgi.com>
[ v2: fix build failure ]
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/include/asm/x86_init.h')
-rw-r--r-- | arch/x86/include/asm/x86_init.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/include/asm/x86_init.h b/arch/x86/include/asm/x86_init.h index 2c756fd4ab0e..8112ed786287 100644 --- a/arch/x86/include/asm/x86_init.h +++ b/arch/x86/include/asm/x86_init.h @@ -113,11 +113,13 @@ struct x86_cpuinit_ops { /** * struct x86_platform_ops - platform specific runtime functions + * @is_untracked_pat_range exclude from PAT logic * @calibrate_tsc: calibrate TSC * @get_wallclock: get time from HW clock like RTC etc. * @set_wallclock: set time back to HW clock */ struct x86_platform_ops { + int (*is_untracked_pat_range)(u64 start, u64 end); unsigned long (*calibrate_tsc)(void); unsigned long (*get_wallclock)(void); int (*set_wallclock)(unsigned long nowtime); |