]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
x86, platform: Change is_untracked_pat_range() to bool; cleanup init
authorH. Peter Anvin <hpa@zytor.com>
Mon, 23 Nov 2009 22:46:07 +0000 (14:46 -0800)
committerH. Peter Anvin <hpa@zytor.com>
Tue, 24 Nov 2009 01:09:59 +0000 (17:09 -0800)
- Change is_untracked_pat_range() to return bool.
- Clean up the initialization of is_untracked_pat_range() -- by default,
  we simply point it at is_ISA_range() directly.
- Move is_untracked_pat_range to the end of struct x86_platform, since
  it is the newest field.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Jack Steiner <steiner@sgi.com>
LKML-Reference: <20091119202341.GA4420@sgi.com>

arch/x86/include/asm/pat.h
arch/x86/include/asm/x86_init.h
arch/x86/kernel/apic/x2apic_uv_x.c
arch/x86/kernel/x86_init.c
arch/x86/mm/pat.c

index 4c35dd016b54addce65300bb1c41d138af7ba772..e2c1668dde7ae099e4232e89ccef2be2e69223f0 100644 (file)
@@ -24,6 +24,4 @@ int io_reserve_memtype(resource_size_t start, resource_size_t end,
 
 void io_free_memtype(resource_size_t start, resource_size_t end);
 
-int default_is_untracked_pat_range(u64 start, u64 end);
-
 #endif /* _ASM_X86_PAT_H */
index 8112ed786287e75850d575e8ed8543e2de3d7496..024cf3c1fd82eb74f4925ef83d7bfa6355293409 100644 (file)
@@ -113,16 +113,16 @@ 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
+ * @is_untracked_pat_range     exclude from PAT logic
  */
 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);
+       bool (*is_untracked_pat_range)(u64 start, u64 end);
 };
 
 extern struct x86_init_ops x86_init;
index 2477c9f88093701d852cab8317d7b0b803ee34cc..597a47b1cec6b1ad6d90a1247e56b0c3fa5297e6 100644 (file)
@@ -37,12 +37,12 @@ DEFINE_PER_CPU(int, x2apic_extra_bits);
 static enum uv_system_type uv_system_type;
 static u64 gru_start_paddr, gru_end_paddr;
 
-static int is_GRU_range(u64 start, u64 end)
+static inline bool is_GRU_range(u64 start, u64 end)
 {
        return start >= gru_start_paddr && end < gru_end_paddr;
 }
 
-static int uv_is_untracked_pat_range(u64 start, u64 end)
+static bool uv_is_untracked_pat_range(u64 start, u64 end)
 {
        return is_ISA_range(start, end) || is_GRU_range(start, end);
 }
index bcc749ef62dc7e7a55fe6448931bf449a7d5a384..861b8b54e17281ae343c6341365cc837e1e56cab 100644 (file)
@@ -70,8 +70,8 @@ struct x86_cpuinit_ops x86_cpuinit __cpuinitdata = {
 };
 
 struct x86_platform_ops x86_platform = {
-       .is_untracked_pat_range         = default_is_untracked_pat_range,
        .calibrate_tsc                  = native_calibrate_tsc,
        .get_wallclock                  = mach_get_cmos_time,
        .set_wallclock                  = mach_set_rtc_mmss,
+       .is_untracked_pat_range         = is_ISA_range,
 };
index b5bc08cfcea658b210008a5e57c5fdff30d2ba6c..ef712518b5b449b5f28a7a16d70b78c6ee7e46e5 100644 (file)
@@ -349,11 +349,6 @@ static int free_ram_pages_type(u64 start, u64 end)
        return 0;
 }
 
-int default_is_untracked_pat_range(u64 start, u64 end)
-{
-       return is_ISA_range(start, end);
-}
-
 /*
  * req_type typically has one of the:
  * - _PAGE_CACHE_WB