diff options
author | 2024-11-20 18:50:41 +0800 | |
---|---|---|
committer | 2025-01-13 22:40:35 -0800 | |
commit | 773fc6ab7102c39da78b3f1fb2ad6f1a59850030 (patch) | |
tree | 2482116a09b52c1d5ba7cd95931a1fad868a1946 | |
parent | mm: change type of cma_area_count to unsigned int (diff) | |
download | wireguard-linux-773fc6ab7102c39da78b3f1fb2ad6f1a59850030.tar.xz wireguard-linux-773fc6ab7102c39da78b3f1fb2ad6f1a59850030.zip |
mm/memory: fix a comment typo in lock_mm_and_find_vma()
s/equivalend/equivalent/
Link: https://lkml.kernel.org/r/20241120105041.2394283-1-yikming2222@gmail.com
Signed-off-by: Chin Yik Ming <yikming2222@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
-rw-r--r-- | mm/memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/memory.c b/mm/memory.c index 78b6741ae593..f49eb4d4be75 100644 --- a/mm/memory.c +++ b/mm/memory.c @@ -6185,7 +6185,7 @@ static inline bool upgrade_mmap_lock_carefully(struct mm_struct *mm, struct pt_r /* * Helper for page fault handling. * - * This is kind of equivalend to "mmap_read_lock()" followed + * This is kind of equivalent to "mmap_read_lock()" followed * by "find_extend_vma()", except it's a lot more careful about * the locking (and will drop the lock on failure). * |