Message ID | 20210513093931.15234-1-liu.xiang@zlingsmart.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | mm/memory.c: fix comment of finish_mkwrite_fault() | expand |
diff --git a/mm/memory.c b/mm/memory.c index 730daa009..b844afded 100644 --- a/mm/memory.c +++ b/mm/memory.c @@ -3035,7 +3035,7 @@ static vm_fault_t wp_page_copy(struct vm_fault *vmf) * The function expects the page to be locked or other protection against * concurrent faults / writeback (such as DAX radix tree locks). * - * Return: %VM_FAULT_WRITE on success, %0 when PTE got changed before + * Return: %0 on success, %VM_FAULT_NOPAGE when PTE got changed before * we acquired PTE lock. */ vm_fault_t finish_mkwrite_fault(struct vm_fault *vmf)
Fix the return value in comment of finish_mkwrite_fault(). Signed-off-by: Liu Xiang <liu.xiang@zlingsmart.com> --- mm/memory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)