aboutsummaryrefslogtreecommitdiffstats
path: root/fs/Kconfig
diff options
context:
space:
mode:
authorDan Williams <dan.j.williams@intel.com>2016-01-15 19:57:01 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2016-01-15 20:56:32 -0500
commitc046c321cb4a0bdac9fb922db3859893ca556d27 (patch)
tree0765c98adba09720480e9639ec4c51eab442c95d /fs/Kconfig
parentcbb38e41a931aaae5b2fef3b1c74d0d6f866b698 (diff)
dax: re-enable dax pmd mappings
Now that the get_user_pages() path knows how to handle dax-pmd mappings, remove the protections that disabled dax-pmd support. Tests available from github.com/pmem/ndctl: make TESTS="lib/test-dax.sh lib/test-mmap.sh" check Signed-off-by: Dan Williams <dan.j.williams@intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/Kconfig')
-rw-r--r--fs/Kconfig3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/Kconfig b/fs/Kconfig
index 2bb1ef86c411..9adee0d7536e 100644
--- a/fs/Kconfig
+++ b/fs/Kconfig
@@ -50,7 +50,8 @@ config FS_DAX_PMD
50 bool 50 bool
51 default FS_DAX 51 default FS_DAX
52 depends on FS_DAX 52 depends on FS_DAX
53 depends on BROKEN 53 depends on ZONE_DEVICE
54 depends on TRANSPARENT_HUGEPAGE
54 55
55endif # BLOCK 56endif # BLOCK
56 57