|
@@ -1000,6 +1000,13 @@ pgprot_t pgprot_writecombine(pgprot_t prot)
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(pgprot_writecombine);
|
|
|
|
|
|
+pgprot_t pgprot_writethrough(pgprot_t prot)
|
|
|
+{
|
|
|
+ return __pgprot(pgprot_val(prot) |
|
|
|
+ cachemode2protval(_PAGE_CACHE_MODE_WT));
|
|
|
+}
|
|
|
+EXPORT_SYMBOL_GPL(pgprot_writethrough);
|
|
|
+
|
|
|
#if defined(CONFIG_DEBUG_FS) && defined(CONFIG_X86_PAT)
|
|
|
|
|
|
static struct memtype *memtype_get_idx(loff_t pos)
|