The patch titled
     vdso print fatal signals: fix compiling error bug in nommu arch
has been removed from the -mm tree.  Its filename was
     vdso-print-fatal-signals-fix-compiling-error-bug-in.patch

This patch was dropped because it is obsolete

------------------------------------------------------
Subject: vdso print fatal signals: fix compiling error bug in nommu arch
From: "Wu, Bryan" <[EMAIL PROTECTED]>

As struct mm_struct vm_mm is hidden in struct vm_area_struct in NOMMU
arch, this is a fixing method when compiling failure on blackfin arch.

Signed-off-by: Bryan Wu <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 kernel/signal.c |    4 ++++
 1 file changed, 4 insertions(+)

diff -puN kernel/signal.c~vdso-print-fatal-signals-fix-compiling-error-bug-in 
kernel/signal.c
--- a/kernel/signal.c~vdso-print-fatal-signals-fix-compiling-error-bug-in
+++ a/kernel/signal.c
@@ -708,7 +708,11 @@ static void pad_len_spaces(int len)
 
 static int print_vma(struct vm_area_struct *vma)
 {
+#ifdef CONFIG_MMU
        struct mm_struct *mm = vma->vm_mm;
+#else
+       struct mm_struct *mm = 0;
+#endif
        struct file *file = vma->vm_file;
        int flags = vma->vm_flags;
        unsigned long ino = 0;
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

blackfin-on-chip-ethernet-mac-controller-driver.patch
vdso-print-fatal-signals-fix-compiling-error-bug-in.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to