The patch titled Subject: fs/dax.c: release PMD lock even when there is no PMD support in DAX has been removed from the -mm tree. Its filename was dax-release-pmd-lock-even-when-there-is-no-pmd-support-in-dax.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Jan H. Schönherr <jschoenh@xxxxxxxxx> Subject: fs/dax.c: release PMD lock even when there is no PMD support in DAX follow_pte_pmd() can theoretically return after having acquired a PMD lock, even when DAX was not compiled with CONFIG_FS_DAX_PMD. Release the PMD lock unconditionally. Link: http://lkml.kernel.org/r/20180118133839.20587-1-jschoenh@xxxxxxxxx Fixes: f729c8c9b24f ("dax: wrprotect pmd_t in dax_mapping_entry_mkclean") Signed-off-by: Jan H. Schönherr <jschoenh@xxxxxxxxx> Reviewed-by: Ross Zwisler <ross.zwisler@xxxxxxxxxxxxxxx> Reviewed-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Cc: Matthew Wilcox <mawilcox@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/dax.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/dax.c~dax-release-pmd-lock-even-when-there-is-no-pmd-support-in-dax fs/dax.c --- a/fs/dax.c~dax-release-pmd-lock-even-when-there-is-no-pmd-support-in-dax +++ a/fs/dax.c @@ -636,8 +636,8 @@ static void dax_mapping_entry_mkclean(st pmd = pmd_mkclean(pmd); set_pmd_at(vma->vm_mm, address, pmdp, pmd); unlock_pmd: - spin_unlock(ptl); #endif + spin_unlock(ptl); } else { if (pfn != pte_pfn(*ptep)) goto unlock_pte; _ Patches currently in -mm which might be from jschoenh@xxxxxxxxx are -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html