linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] FRV: remove excess argument passed to expand_stack()
@ 2005-01-05 14:29 David Howells
  0 siblings, 0 replies; only message in thread
From: David Howells @ 2005-01-05 14:29 UTC (permalink / raw)
  To: torvalds, akpm; +Cc: linux-kernel


The attached patch removes the excess argument being passed to expand_stack()
as it isn't needed in -bk8.

Signed-Off-By: David Howells <dhowells@redhat.com>
---
warthog>diffstat frv-expstack-2610bk8.diff 
 fault.c |    9 ++-------
 1 files changed, 2 insertions(+), 7 deletions(-)

diff -uNrp /warthog/kernels/linux-2.6.10-bk8/arch/frv/mm/fault.c linux-2.6.10-bk8-frv/arch/frv/mm/fault.c
--- /warthog/kernels/linux-2.6.10-bk8/arch/frv/mm/fault.c	2005-01-05 13:21:26.000000000 +0000
+++ linux-2.6.10-bk8-frv/arch/frv/mm/fault.c	2005-01-05 13:30:50.667294388 +0000
@@ -32,7 +32,7 @@
  */
 asmlinkage void do_page_fault(int datammu, unsigned long esr0, unsigned long ear0)
 {
-	struct vm_area_struct *vma, *prev_vma;
+	struct vm_area_struct *vma;
 	struct mm_struct *mm;
 	unsigned long _pme, lrai, lrad, fixup;
 	siginfo_t info;
@@ -120,12 +120,7 @@ asmlinkage void do_page_fault(int datamm
 		}
 	}
 
-	/* find_vma_prev is just a bit slower, because it cannot use
-	 * the mmap_cache, so we run it only in the growsdown slow
-	 * path and we leave find_vma in the fast path.
-	 */
-	find_vma_prev(current->mm, ear0, &prev_vma);
-	if (expand_stack(vma, ear0, prev_vma))
+	if (expand_stack(vma, ear0))
 		goto bad_area;
 
 /*

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-01-05 14:30 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-01-05 14:29 [PATCH] FRV: remove excess argument passed to expand_stack() David Howells

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).