Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934620AbZLGDx2 (ORCPT ); Sun, 6 Dec 2009 22:53:28 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S934611AbZLGDx0 (ORCPT ); Sun, 6 Dec 2009 22:53:26 -0500 Received: from zeniv.linux.org.uk ([195.92.253.2]:51482 "EHLO ZenIV.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934607AbZLGDxY (ORCPT ); Sun, 6 Dec 2009 22:53:24 -0500 Date: Mon, 07 Dec 2009 03:53:30 +0000 To: linux-arch@vger.kernel.org Subject: [PATCH 10/19] Kill ancient crap in s390 compat mmap Cc: torvalds@linux-foundation.org, linux-kernel@vger.kernel.org User-Agent: Heirloom mailx 12.4 7/29/08 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: From: Al Viro Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1286 Lines: 39 We've had TASK_SIZE set to 1<<31 for 31bit tasks since May 2004. Before that old32_mmap() had to deal with do_mmap_pgoff() giving it an address out of range. It had tried to do that by checking return value and doing do_munmap() (at wrong address, BTW). IOW, that code had been dead for 5.5 years (and bogus - for 8). Kill. Signed-off-by: Al Viro --- arch/s390/kernel/compat_linux.c | 5 ----- 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/arch/s390/kernel/compat_linux.c b/arch/s390/kernel/compat_linux.c index 0debcec..c5a9fba 100644 --- a/arch/s390/kernel/compat_linux.c +++ b/arch/s390/kernel/compat_linux.c @@ -701,11 +701,6 @@ static inline long do_mmap2( down_write(¤t->mm->mmap_sem); error = do_mmap_pgoff(file, addr, len, prot, flags, pgoff); - if (!IS_ERR((void *) error) && error + len >= 0x80000000ULL) { - /* Result is out of bounds. */ - do_munmap(current->mm, addr, len); - error = -ENOMEM; - } up_write(¤t->mm->mmap_sem); if (file) -- 1.5.6.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/