Hi Andrew, Today's linux-next merge of the akpm-current tree got a conflict in: fs/binfmt_elf.c between commit: 42bc47b35320 ("treewide: Use array_size() in vmalloc()") from Linus' tree and commit: 1d5239111f52 ("coredump: fix spam with zero VMA process") from the akpm-current tree. I fixed it up (see below) and can carry the fix as necessary. This is now fixed as far as linux-next is concerned, but any non trivial conflicts should be mentioned to your upstream maintainer when your tree is submitted for merging. You may also want to consider cooperating with the maintainer of the conflicting tree to minimise any particularly complex conflicts. -- Cheers, Stephen Rothwell diff --cc fs/binfmt_elf.c index 070b6184642d,8676bb01b5a9..000000000000 --- a/fs/binfmt_elf.c +++ b/fs/binfmt_elf.c @@@ -2294,8 -2294,8 +2294,8 @@@ static int elf_core_dump(struct coredum if (segs - 1 > ULONG_MAX / sizeof(*vma_filesz)) goto end_coredump; - vma_filesz = vmalloc(array_size(sizeof(*vma_filesz), (segs - 1))); - if (!vma_filesz) - vma_filesz = kvmalloc((segs - 1) * sizeof(*vma_filesz), GFP_KERNEL); ++ vma_filesz = kvmalloc(array_size(sizeof(*vma_filesz), (segs - 1)), GFP_KERNEL); + if (ZERO_OR_NULL_PTR(vma_filesz)) goto end_coredump; for (i = 0, vma = first_vma(current, gate_vma); vma != NULL;