summaryrefslogtreecommitdiff
path: root/dist/disable-pat-check.patch
blob: f3d3877a131b430e295c70a9d0442ad5bb05bb52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
--- a/arch/x86/mm/pat/memtype_interval.c
+++ b/arch/x86/mm/pat/memtype_interval.c
@@ -33,6 +33,16 @@
  * memtype_lock protects the rbtree.
  */
 
+int skip_pat_enable = 0;
+
+static int __init skip_pat_check(char *str)
+{
+	skip_pat_enable = 1;
+	pr_info("Disabled PAT check type (experimental)\n");
+	return 0;
+}
+early_param("skippatcheck", skip_pat_check);
+
 static inline u64 interval_start(struct memtype *entry)
 {
 	return entry->start;
@@ -86,19 +96,22 @@
 	if (entry_match == NULL)
 		goto success;
 
-	if (entry_match->type != found_type && newtype == NULL)
-		goto failure;
-
-	dprintk("Overlap at 0x%Lx-0x%Lx\n", entry_match->start, entry_match->end);
-	found_type = entry_match->type;
-
-	entry_match = interval_iter_next(entry_match, start, end-1);
-	while (entry_match) {
-		if (entry_match->type != found_type)
+	if (!skip_pat_enable) {
+		if (entry_match->type != found_type && newtype == NULL)
 			goto failure;
 
+		dprintk("Overlap at 0x%Lx-0x%Lx\n", entry_match->start, entry_match->end);
+		found_type = entry_match->type;
+
 		entry_match = interval_iter_next(entry_match, start, end-1);
+		while (entry_match) {
+			if (entry_match->type != found_type)
+				goto failure;
+
+			entry_match = interval_iter_next(entry_match, start, end-1);
+		}
 	}
+
 success:
 	if (newtype)
 		*newtype = found_type;