The patch titled Subject: proc: fixup proc-pid-vm test has been added to the -mm tree. Its filename is proc-fixup-proc-pid-vm-test.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/proc-fixup-proc-pid-vm-test.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/proc-fixup-proc-pid-vm-test.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Alexey Dobriyan <adobriyan@xxxxxxxxx> Subject: proc: fixup proc-pid-vm test Silly sizeof(pointer) vs sizeof(uint8_t[]) bug. Link: http://lkml.kernel.org/r/20190414123009.GA12971@avx2 Fixes: e483b0208784 ("proc: test /proc/*/maps, smaps, smaps_rollup, statm") Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- tools/testing/selftests/proc/proc-pid-vm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/tools/testing/selftests/proc/proc-pid-vm.c~proc-fixup-proc-pid-vm-test +++ a/tools/testing/selftests/proc/proc-pid-vm.c @@ -187,8 +187,8 @@ static int make_exe(const uint8_t *paylo ph.p_offset = 0; ph.p_vaddr = VADDR; ph.p_paddr = 0; - ph.p_filesz = sizeof(struct elf64_hdr) + sizeof(struct elf64_phdr) + sizeof(payload); - ph.p_memsz = sizeof(struct elf64_hdr) + sizeof(struct elf64_phdr) + sizeof(payload); + ph.p_filesz = sizeof(struct elf64_hdr) + sizeof(struct elf64_phdr) + len; + ph.p_memsz = sizeof(struct elf64_hdr) + sizeof(struct elf64_phdr) + len; ph.p_align = 4096; fd = openat(AT_FDCWD, "/tmp", O_WRONLY|O_EXCL|O_TMPFILE, 0700); _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are proc-fix-map_files-test-on-f29.patch proc-fixup-proc-pid-vm-test.patch ramfs-support-o_tmpfile.patch elf-make-scope-of-pos-variable-smaller.patch elf-free-pt_interp-filename-asap.patch elf-delete-trailing-return-in-functions-returning-void.patch