[Nouveau] [PATCH 7/7] mm: comment on VM_FAULT_RETRY semantics in handle_mm_fault

Christoph Hellwig hch at lst.de
Wed Jul 24 06:52:58 UTC 2019


From: Jason Gunthorpe <jgg at mellanox.com>

The magic dropping of mmap_sem when handle_mm_fault returns
VM_FAULT_RETRY is rather subtile.  Add a comment explaining it.

Signed-off-by: Jason Gunthorpe <jgg at mellanox.com>
[hch: wrote a changelog]
Signed-off-by: Christoph Hellwig <hch at lst.de>
---
 mm/hmm.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/mm/hmm.c b/mm/hmm.c
index 16b6731a34db..54b3a4162ae9 100644
--- a/mm/hmm.c
+++ b/mm/hmm.c
@@ -301,8 +301,10 @@ static int hmm_vma_do_fault(struct mm_walk *walk, unsigned long addr,
 	flags |= hmm_vma_walk->block ? 0 : FAULT_FLAG_ALLOW_RETRY;
 	flags |= write_fault ? FAULT_FLAG_WRITE : 0;
 	ret = handle_mm_fault(vma, addr, flags);
-	if (ret & VM_FAULT_RETRY)
+	if (ret & VM_FAULT_RETRY) {
+		/* Note, handle_mm_fault did up_read(&mm->mmap_sem)) */
 		return -EAGAIN;
+	}
 	if (ret & VM_FAULT_ERROR) {
 		*pfn = range->values[HMM_PFN_ERROR];
 		return -EFAULT;
-- 
2.20.1



More information about the Nouveau mailing list