selftests/mm: fix spelling mistake "mrmeap" -> "mremap"

There are spelling mistakes in perror messages.  Fix these.

Link: https://lkml.kernel.org/r/20250813081333.1978096-1-colin.i.king@gmail.com
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Reviewed-by: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
Colin Ian King 2025-08-13 09:13:33 +01:00 committed by Andrew Morton
parent adf085ff0d
commit 53c225ffa7

View File

@ -846,7 +846,7 @@ static void mremap_move_multi_invalid_vmas(FILE *maps_fp,
}
if (err != EFAULT) {
errno = err;
perror("mrmeap() unexpected error");
perror("mremap() unexpected error");
success = false;
goto out_unmap;
}
@ -899,7 +899,7 @@ static void mremap_move_multi_invalid_vmas(FILE *maps_fp,
}
if (err != EFAULT) {
errno = err;
perror("mrmeap() unexpected error");
perror("mremap() unexpected error");
success = false;
goto out_unmap;
}
@ -948,7 +948,7 @@ static void mremap_move_multi_invalid_vmas(FILE *maps_fp,
}
if (err != EFAULT) {
errno = err;
perror("mrmeap() unexpected error");
perror("mremap() unexpected error");
success = false;
goto out_unmap;
}