Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

authored by

Colin Ian King and committed by
Andrew Morton
53c225ff adf085ff

+3 -3
+3 -3
tools/testing/selftests/mm/mremap_test.c
··· 846 846 } 847 847 if (err != EFAULT) { 848 848 errno = err; 849 - perror("mrmeap() unexpected error"); 849 + perror("mremap() unexpected error"); 850 850 success = false; 851 851 goto out_unmap; 852 852 } ··· 899 899 } 900 900 if (err != EFAULT) { 901 901 errno = err; 902 - perror("mrmeap() unexpected error"); 902 + perror("mremap() unexpected error"); 903 903 success = false; 904 904 goto out_unmap; 905 905 } ··· 948 948 } 949 949 if (err != EFAULT) { 950 950 errno = err; 951 - perror("mrmeap() unexpected error"); 951 + perror("mremap() unexpected error"); 952 952 success = false; 953 953 goto out_unmap; 954 954 }