aboutsummaryrefslogtreecommitdiffstats
path: root/mm/mmap.c
diff options
context:
space:
mode:
authorIan Cowan <ian@linux.cowan.aero>2022-11-13 19:33:49 -0500
committerAndrew Morton <akpm@linux-foundation.org>2022-11-22 18:50:42 -0800
commit4a42344081ff7fbb890c0741e11d22cd7f658894 (patch)
tree52ef687e0bd4d0ae36e0e93573440e059acddd69 /mm/mmap.c
parent8468b486612c808c9e337708d66a435498f1735c (diff)
downloadlinux-4a42344081ff7fbb890c0741e11d22cd7f658894.tar.gz
mm: mmap: fix documentation for vma_mas_szero
When the struct_mm input, mm, was changed to a struct ma_state, mas, the documentation for the function was never updated. This updates that documentation reference. Link: https://lkml.kernel.org/r/20221114003349.41235-1-ian@linux.cowan.aero Signed-off-by: Ian Cowan <ian@linux.cowan.aero> Acked-by: David Hildenbrand <david@redhat.com> Cc: Liam Howlett <liam.howlett@oracle.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'mm/mmap.c')
-rw-r--r--mm/mmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/mmap.c b/mm/mmap.c
index c3c5c1d6103d1c..74a84eb33b9046 100644
--- a/mm/mmap.c
+++ b/mm/mmap.c
@@ -456,7 +456,7 @@ void vma_mas_remove(struct vm_area_struct *vma, struct ma_state *mas)
* vma_mas_szero() - Set a given range to zero. Used when modifying a
* vm_area_struct start or end.
*
- * @mm: The struct_mm
+ * @mas: The maple tree ma_state
* @start: The start address to zero
* @end: The end address to zero.
*/