[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20100426145636.7652.36480.stgit@warthog.procyon.org.uk>
Date: Mon, 26 Apr 2010 15:56:36 +0100
From: David Howells <dhowells@...hat.com>
To: torvalds@...l.org, akpm@...ux-foundation.org
Cc: viro@...iv.linux.org.uk, d.hatayama@...fujitsu.com,
roland@...hat.com, vapier@...too.org,
linux-fsdevel@...r.kernel.org, linux-kernel@...r.kernel.org,
vamos@...informatik.uni-erlangen.de,
Christoph Egger <siccegge@...d.informatik.uni-erlangen.de>,
David Howells <dhowells@...hat.com>
Subject: [PATCH] Remove redundant check for CONFIG_MMU
From: Christoph Egger <siccegge@...fau.de>
The checks for CONFIG_MMU at this location are duplicated as all the code is
located inside a #ifndef CONFIG_MMU block. So the first conditional block will
always be included while the second never will.
Signed-off-by: Christoph Egger <siccegge@...d.informatik.uni-erlangen.de>
Signed-off-by: David Howells <dhowells@...hat.com>
---
fs/binfmt_elf_fdpic.c | 7 -------
1 files changed, 0 insertions(+), 7 deletions(-)
diff --git a/fs/binfmt_elf_fdpic.c b/fs/binfmt_elf_fdpic.c
index 7ab23e0..2c5f9a0 100644
--- a/fs/binfmt_elf_fdpic.c
+++ b/fs/binfmt_elf_fdpic.c
@@ -1005,15 +1005,8 @@ static int elf_fdpic_map_file_constdisp_on_uclinux(
}
} else if (!mm->start_data) {
mm->start_data = seg->addr;
-#ifndef CONFIG_MMU
mm->end_data = seg->addr + phdr->p_memsz;
-#endif
}
-
-#ifdef CONFIG_MMU
- if (seg->addr + phdr->p_memsz > mm->end_data)
- mm->end_data = seg->addr + phdr->p_memsz;
-#endif
}
seg++;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists