]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
x86/pci: Add cap_resource()
authorYinghai Lu <yinghai@kernel.org>
Wed, 10 Feb 2010 09:20:11 +0000 (01:20 -0800)
committerH. Peter Anvin <hpa@zytor.com>
Thu, 11 Feb 2010 01:47:17 +0000 (17:47 -0800)
Prepare for 32bit pci root bus

-v2: hpa said we should compare with (resource_size_t)~0
-v3: according to Linus to use MAX_RESOURCE instead.
     also need need to put related patches together
-v4: according to Andrew, use min in cap_resource()

Signed-off-by: Yinghai Lu <yinghai@kernel.org>
LKML-Reference: <1265793639-15071-8-git-send-email-yinghai@kernel.org>
Acked-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
arch/x86/pci/amd_bus.c
arch/x86/pci/bus_numa.c
include/linux/range.h

index f06bb1b4a80a05306085ce3c9ea3e7afd909083f..f7e13b63154e6055696f8b4723af27c63e16bf2f 100644 (file)
@@ -201,7 +201,7 @@ static int __init early_fill_mp_bus_info(void)
 
        memset(range, 0, sizeof(range));
        /* 0xfd00000000-0xffffffffff for HT */
-       range[0].end = (0xfdULL<<32) - 1;
+       range[0].end = cap_resource((0xfdULL<<32) - 1);
 
        /* need to take out [0, TOM) for RAM*/
        address = MSR_K8_TOP_MEM1;
@@ -286,7 +286,8 @@ static int __init early_fill_mp_bus_info(void)
                        }
                }
 
-               update_res(info, start, end, IORESOURCE_MEM, 1);
+               update_res(info, cap_resource(start), cap_resource(end),
+                                IORESOURCE_MEM, 1);
                subtract_range(range, RANGE_NUM, start, end);
                printk(KERN_CONT "\n");
        }
@@ -321,7 +322,8 @@ static int __init early_fill_mp_bus_info(void)
                        if (!range[i].end)
                                continue;
 
-                       update_res(info, range[i].start, range[i].end,
+                       update_res(info, cap_resource(range[i].start),
+                                  cap_resource(range[i].end),
                                   IORESOURCE_MEM, 1);
                }
        }
index 3411687b676e88eacd635e10c7f7c2fd5ee31265..3510778aa8bb373a5149709a3357082b112c74d4 100644 (file)
@@ -1,5 +1,6 @@
 #include <linux/init.h>
 #include <linux/pci.h>
+#include <linux/range.h>
 
 #include "bus_numa.h"
 
@@ -55,6 +56,9 @@ void __devinit update_res(struct pci_root_info *info, resource_size_t start,
        if (start > end)
                return;
 
+       if (start == MAX_RESOURCE)
+               return;
+
        if (!merge)
                goto addit;
 
index 0789f1412e1f2840d5cd22f9d1404d837465f038..bd184a5db791bd81bf4c1917072746ab197c401d 100644 (file)
@@ -19,4 +19,12 @@ int clean_sort_range(struct range *range, int az);
 
 void sort_range(struct range *range, int nr_range);
 
+#define MAX_RESOURCE ((resource_size_t)~0)
+static inline resource_size_t cap_resource(u64 val)
+{
+       if (val > MAX_RESOURCE)
+               return MAX_RESOURCE;
+
+       return val;
+}
 #endif