diff options
author | Valentin Rothberg <valentinrothberg@gmail.com> | 2015-09-08 14:59:09 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-09-08 15:35:28 -0700 |
commit | dd8a2b6c29a3221c19ab475c8408fc2b914ccfab (patch) | |
tree | 2cb3b1a649541761f9c5c9e138adc192032c6171 /fs/dax.c | |
parent | acd76e74d80f961553861d9cf49a62cbcf496d28 (diff) | |
download | linux-dd8a2b6c29a3221c19ab475c8408fc2b914ccfab.tar.gz linux-dd8a2b6c29a3221c19ab475c8408fc2b914ccfab.tar.bz2 linux-dd8a2b6c29a3221c19ab475c8408fc2b914ccfab.zip |
fs/dax.c: fix typo in #endif comment
Fix typo s/CONFIG_TRANSPARENT_HUGEPAGES/CONFIG_TRANSPARENT_HUGEPAGE/ in
#endif comment introduced by commit 2b26a9206d6a ("dax: add huge page
fault support").
Signed-off-by: Valentin Rothberg <valentinrothberg@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/dax.c')
-rw-r--r-- | fs/dax.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -644,7 +644,7 @@ int dax_pmd_fault(struct vm_area_struct *vma, unsigned long address, return result; } EXPORT_SYMBOL_GPL(dax_pmd_fault); -#endif /* CONFIG_TRANSPARENT_HUGEPAGES */ +#endif /* CONFIG_TRANSPARENT_HUGEPAGE */ /** * dax_pfn_mkwrite - handle first write to DAX page |